Batch Get Incident Findings
ssmincidents_batch_get_incident_findings | R Documentation |
Retrieves details about all specified findings for an incident, including descriptive details about each finding¶
Description¶
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.
Usage¶
Arguments¶
findingIds
[required] A list of IDs of findings for which you want to view details.
incidentRecordArn
[required] The Amazon Resource Name (ARN) of the incident for which you want to view finding details.
Value¶
A list with the following syntax:
list(
errors = list(
list(
code = "string",
findingId = "string",
message = "string"
)
),
findings = list(
list(
creationTime = as.POSIXct(
"2015-01-01"
),
details = list(
cloudFormationStackUpdate = list(
endTime = as.POSIXct(
"2015-01-01"
),
stackArn = "string",
startTime = as.POSIXct(
"2015-01-01"
)
),
codeDeployDeployment = list(
deploymentGroupArn = "string",
deploymentId = "string",
endTime = as.POSIXct(
"2015-01-01"
),
startTime = as.POSIXct(
"2015-01-01"
)
)
),
id = "string",
lastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
)
)