Get Resource Request Status
cloudcontrolapi_get_resource_request_status | R Documentation |
Returns the current status of a resource operation request¶
Description¶
Returns the current status of a resource operation request. For more information, see Tracking the progress of resource operation requests in the Amazon Web Services Cloud Control API User Guide.
Usage¶
Arguments¶
RequestToken
[required] A unique token used to track the progress of the resource operation request.
Request tokens are included in the
ProgressEvent
type returned by a resource operation request.
Value¶
A list with the following syntax:
list(
ProgressEvent = list(
TypeName = "string",
Identifier = "string",
RequestToken = "string",
Operation = "CREATE"|"DELETE"|"UPDATE",
OperationStatus = "PENDING"|"IN_PROGRESS"|"SUCCESS"|"FAILED"|"CANCEL_IN_PROGRESS"|"CANCEL_COMPLETE",
EventTime = as.POSIXct(
"2015-01-01"
),
ResourceModel = "string",
StatusMessage = "string",
ErrorCode = "NotUpdatable"|"InvalidRequest"|"AccessDenied"|"InvalidCredentials"|"AlreadyExists"|"NotFound"|"ResourceConflict"|"Throttling"|"ServiceLimitExceeded"|"NotStabilized"|"GeneralServiceException"|"ServiceInternalError"|"ServiceTimeout"|"NetworkFailure"|"InternalFailure",
RetryAfter = as.POSIXct(
"2015-01-01"
)
)
)