Skip to main content

incident_findings

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

Overview

Nameincident_findings
TypeResource
Idaws.ssm_incidents.incident_findings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
errorsarrayA list of errors encountered during the operation.
findingsarrayInformation about the requested findings.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_incident_findingsselectregionRetrieves details about all specified findings for an incident, including descriptive details about each finding. A finding represents a recent application environment change made by an CodeDeploy deployment or an CloudFormation stack creation or update that can be investigated as a potential cause of the incident.
list_incident_findingsselectregionRetrieves a list of the IDs of findings, plus their last modified times, that have been identified for a specified incident. A finding represents a recent application environment change made by an CloudFormation stack creation or update or an CodeDeploy deployment that can be investigated as a potential cause of the incident.

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
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves details about all specified findings for an incident, including descriptive details about each finding. A finding represents a recent application environment change made by an CodeDeploy deployment or an CloudFormation stack creation or update that can be investigated as a potential cause of the incident.

SELECT
errors,
findings
FROM aws.ssm_incidents.incident_findings
WHERE region = '{{ region }}' -- required
;