Get Operation
ssmsap_get_operation | R Documentation |
Gets the details of an operation by specifying the operation ID¶
Description¶
Gets the details of an operation by specifying the operation ID.
Usage¶
Arguments¶
OperationId
[required] The ID of the operation.
Value¶
A list with the following syntax:
list(
Operation = list(
Id = "string",
Type = "string",
Status = "INPROGRESS"|"SUCCESS"|"ERROR",
StatusMessage = "string",
Properties = list(
"string"
),
ResourceType = "string",
ResourceId = "string",
ResourceArn = "string",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
LastUpdatedTime = as.POSIXct(
"2015-01-01"
)
)
)