Skip to content

List Stack Set Operations

cloudformation_list_stack_set_operations R Documentation

Returns summary information about operations performed on a StackSet

Description

Returns summary information about operations performed on a StackSet.

This API provides eventually consistent reads meaning it may take some time but will eventually return the most up-to-date data.

Usage

cloudformation_list_stack_set_operations(StackSetName, NextToken,
  MaxResults, CallAs)

Arguments

StackSetName

[required] The name or unique ID of the StackSet that you want to get operation summaries for.

NextToken

The token for the next set of items to return. (You received this token from a previous call.)

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 the NextToken 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. Use SELF for StackSets 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"
)

Request syntax

svc$list_stack_set_operations(
  StackSetName = "string",
  NextToken = "string",
  MaxResults = 123,
  CallAs = "SELF"|"DELEGATED_ADMIN"
)