List Incident Findings
| ssmincidents_list_incident_findings | R Documentation |
Retrieves a list of the IDs of findings, plus their last modified times, that have been identified for a specified incident¶
Description¶
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.
Usage¶
Arguments¶
incidentRecordArn[required] The Amazon Resource Name (ARN) of the incident for which you want to view associated findings.
maxResultsThe maximum number of findings to retrieve per call.
nextTokenThe pagination token for the next set of items to return. (You received this token from a previous call.)
Value¶
A list with the following syntax:
list(
findings = list(
list(
id = "string",
lastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)