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¶
Arguments¶
StackName
[required] The name or the Amazon Resource Name (ARN) of the stack for which you want to list change sets.
NextToken
A string (provided by the
list_change_sets
response output) that identifies the next page of change sets that you want to retrieve.
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"
)