audit_findings
Creates, updates, deletes, gets or lists an audit_findings resource.
Overview
| Name | audit_findings |
| Type | Resource |
| Id | aws.application_signals.audit_findings |
Fields
The following fields are returned by SELECT queries:
- list_audit_findings
| Name | Datatype | Description |
|---|---|---|
audit_findings | array | An array of structures, where each structure contains information about one audit finding, including the auditor results, severity, and associated metric and dependency graphs. |
end_time | string (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_token | string | Include this value in your next use of this API to get the next set of audit findings. |
start_time | string (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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_audit_findings | select | StartTime, EndTime, region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
EndTime | string (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 |
StartTime | string (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 |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_audit_findings
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
;