Skip to content

List Change Sets

cloudformation_list_change_sets R Documentation

Returns the ID and status of each active change set for a stack

Description

Returns the ID and status of each active change set for a stack. For example, CloudFormation lists change sets that are in the CREATE_IN_PROGRESS or CREATE_PENDING state.

Usage

cloudformation_list_change_sets(StackName, NextToken)

Arguments

StackName

[required] The name or the Amazon Resource Name (ARN) of the stack for which you want to list change sets.

NextToken

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

Value

A list with the following syntax:

list(
  Summaries = list(
    list(
      StackId = "string",
      StackName = "string",
      ChangeSetId = "string",
      ChangeSetName = "string",
      ExecutionStatus = "UNAVAILABLE"|"AVAILABLE"|"EXECUTE_IN_PROGRESS"|"EXECUTE_COMPLETE"|"EXECUTE_FAILED"|"OBSOLETE",
      Status = "CREATE_PENDING"|"CREATE_IN_PROGRESS"|"CREATE_COMPLETE"|"DELETE_PENDING"|"DELETE_IN_PROGRESS"|"DELETE_COMPLETE"|"DELETE_FAILED"|"FAILED",
      StatusReason = "string",
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      Description = "string",
      IncludeNestedStacks = TRUE|FALSE,
      ParentChangeSetId = "string",
      RootChangeSetId = "string",
      ImportExistingResources = TRUE|FALSE
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_change_sets(
  StackName = "string",
  NextToken = "string"
)