List Stack Set Operations
cloudformation_list_stack_set_operations | R Documentation |
Returns summary information about operations performed on a stack set¶
Description¶
Returns summary information about operations performed on a stack set.
Usage¶
Arguments¶
StackSetName
[required] The name or unique ID of the stack set that you want to get operation summaries for.
NextToken
If the previous paginated request didn't return all of the remaining results, the response object's
NextToken
parameter value is set to a token. To retrieve the next set of results, calllist_stack_set_operations
again and assign that token to the request object'sNextToken
parameter. If there are no remaining results, the previous response object'sNextToken
parameter is set tonull
.MaxResults
The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a
NextToken
value that you can assign to theNextToken
request parameter to get the next set of results.CallAs
[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account.
By default,
SELF
is specified. UseSELF
for stack sets with self-managed permissions.If you are signed in to the management account, specify
SELF
.If you are signed in to a delegated administrator account, specify
DELEGATED_ADMIN
.Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see Register a delegated administrator in the CloudFormation User Guide.
Value¶
A list with the following syntax:
list(
Summaries = list(
list(
OperationId = "string",
Action = "CREATE"|"UPDATE"|"DELETE"|"DETECT_DRIFT",
Status = "RUNNING"|"SUCCEEDED"|"FAILED"|"STOPPING"|"STOPPED"|"QUEUED",
CreationTimestamp = as.POSIXct(
"2015-01-01"
),
EndTimestamp = as.POSIXct(
"2015-01-01"
),
StatusReason = "string",
StatusDetails = list(
FailedStackInstancesCount = 123
),
OperationPreferences = list(
RegionConcurrencyType = "SEQUENTIAL"|"PARALLEL",
RegionOrder = list(
"string"
),
FailureToleranceCount = 123,
FailureTolerancePercentage = 123,
MaxConcurrentCount = 123,
MaxConcurrentPercentage = 123,
ConcurrencyMode = "STRICT_FAILURE_TOLERANCE"|"SOFT_FAILURE_TOLERANCE"
)
)
),
NextToken = "string"
)