incident_findings
Creates, updates, deletes, gets or lists an incident_findings resource.
Overview
| Name | incident_findings |
| Type | Resource |
| Id | aws.ssm_incidents.incident_findings |
Fields
The following fields are returned by SELECT queries:
- batch_get_incident_findings
- list_incident_findings
| Name | Datatype | Description |
|---|---|---|
errors | array | A list of errors encountered during the operation. |
findings | array | Information about the requested findings. |
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the finding. |
last_modified_time | string (date-time) | The timestamp for when the finding was last updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
batch_get_incident_findings | select | region | 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. | |
list_incident_findings | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- batch_get_incident_findings
- list_incident_findings
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
;
Retrieves 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.
SELECT
id,
last_modified_time
FROM aws.ssm_incidents.incident_findings
WHERE region = '{{ region }}' -- required
;