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¶
cloudformation_list_stack_set_operations(StackSetName, NextToken,
  MaxResults, CallAs)
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  | 
| 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  | 
| 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,  
 | 
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"
)
Request syntax¶
svc$list_stack_set_operations(
  StackSetName = "string",
  NextToken = "string",
  MaxResults = 123,
  CallAs = "SELF"|"DELEGATED_ADMIN"
)