Get Incident Record
ssmincidents_get_incident_record | R Documentation |
Returns the details for the specified incident record¶
Description¶
Returns the details for the specified incident record.
Usage¶
Arguments¶
arn
[required] The Amazon Resource Name (ARN) of the incident record.
Value¶
A list with the following syntax:
list(
incidentRecord = list(
arn = "string",
automationExecutions = list(
list(
ssmExecutionArn = "string"
)
),
chatChannel = list(
chatbotSns = list(
"string"
),
empty = list()
),
creationTime = as.POSIXct(
"2015-01-01"
),
dedupeString = "string",
impact = 123,
incidentRecordSource = list(
createdBy = "string",
invokedBy = "string",
resourceArn = "string",
source = "string"
),
lastModifiedBy = "string",
lastModifiedTime = as.POSIXct(
"2015-01-01"
),
notificationTargets = list(
list(
snsTopicArn = "string"
)
),
resolvedTime = as.POSIXct(
"2015-01-01"
),
status = "OPEN"|"RESOLVED",
summary = "string",
title = "string"
)
)