Skip to main content

audit_findings

Creates, updates, deletes, gets or lists an audit_findings resource.

Overview

Nameaudit_findings
TypeResource
Idaws.application_signals.audit_findings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
audit_findingsarrayAn array of structures, where each structure contains information about one audit finding, including the auditor results, severity, and associated metric and dependency graphs.
end_timestring (date-time)The end of the time period that the returned audit findings apply to. When used in a raw HTTP Query API, it is formatted as epoch time in seconds. For example, 1698778057
next_tokenstringInclude this value in your next use of this API to get the next set of audit findings.
start_timestring (date-time)The start of the time period that the returned audit findings apply to. When used in a raw HTTP Query API, it is formatted as epoch time in seconds. For example, 1698778057

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_audit_findingsselectStartTime, EndTime, regionReturns a list of audit findings that provide automated analysis of service behavior and root cause analysis. These findings help identify the most significant observations about your services, including performance issues, anomalies, and potential problems. The findings are generated using heuristic algorithms based on established troubleshooting patterns.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
EndTimestring (date-time)The end of the time period to retrieve audit findings for. When used in a raw HTTP Query API, it is formatted as epoch time in seconds. For example, 1698778057
StartTimestring (date-time)The start of the time period to retrieve audit findings for. When used in a raw HTTP Query API, it is formatted as epoch time in seconds. For example, 1698778057
regionstringAWS region (default: us-east-1)

SELECT examples

Returns a list of audit findings that provide automated analysis of service behavior and root cause analysis. These findings help identify the most significant observations about your services, including performance issues, anomalies, and potential problems. The findings are generated using heuristic algorithms based on established troubleshooting patterns.

SELECT
audit_findings,
end_time,
next_token,
start_time
FROM aws.application_signals.audit_findings
WHERE StartTime = '{{ StartTime }}' -- required
AND EndTime = '{{ EndTime }}' -- required
AND region = '{{ region }}' -- required
;