DescribeChangeSetOutput

public struct DescribeChangeSetOutput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • If you execute the change set, the list of capabilities that were explicitly acknowledged when the change set was created.

    Declaration

    Swift

    public let capabilities: [Capability]?
  • A list of Change structures that describes the resources AWS CloudFormation changes if you execute the change set.

    Declaration

    Swift

    public let changes: [Change]?
  • The ARN of the change set.

    Declaration

    Swift

    public let changeSetId: String?
  • The name of the change set.

    Declaration

    Swift

    public let changeSetName: String?
  • The start time when the change set was created, in UTC.

    Declaration

    Swift

    public let creationTime: TimeStamp?
  • Information about the change set.

    Declaration

    Swift

    public let description: String?
  • If the change set execution status is AVAILABLE, you can execute the change set. If you can’t execute the change set, the status indicates why. For example, a change set might be in an UNAVAILABLE state because AWS CloudFormation is still creating it or in an OBSOLETE state because the stack was already updated.

    Declaration

    Swift

    public let executionStatus: ExecutionStatus?
  • If the output exceeds 1 MB, a string that identifies the next page of changes. If there is no additional page, this value is null.

    Declaration

    Swift

    public let nextToken: String?
  • The ARNs of the Amazon Simple Notification Service (Amazon SNS) topics that will be associated with the stack if you execute the change set.

    Declaration

    Swift

    public let notificationARNs: [String]?
  • A list of Parameter structures that describes the input parameters and their values used to create the change set. For more information, see the Parameter data type.

    Declaration

    Swift

    public let parameters: [Parameter]?
  • The rollback triggers for AWS CloudFormation to monitor during stack creation and updating operations, and for the specified monitoring period afterwards.

    Declaration

    Swift

    public let rollbackConfiguration: RollbackConfiguration?
  • The ARN of the stack that is associated with the change set.

    Declaration

    Swift

    public let stackId: String?
  • The name of the stack that is associated with the change set.

    Declaration

    Swift

    public let stackName: String?
  • The current status of the change set, such as CREATE_IN_PROGRESS, CREATE_COMPLETE, or FAILED.

    Declaration

    Swift

    public let status: ChangeSetStatus?
  • A description of the change set’s status. For example, if your attempt to create a change set failed, AWS CloudFormation shows the error message.

    Declaration

    Swift

    public let statusReason: String?
  • If you execute the change set, the tags that will be associated with the stack.

    Declaration

    Swift

    public let tags: [Tag]?
  • Undocumented

    Declaration

    Swift

    public init(capabilities: [Capability]? = nil, changes: [Change]? = nil, changeSetId: String? = nil, changeSetName: String? = nil, creationTime: TimeStamp? = nil, description: String? = nil, executionStatus: ExecutionStatus? = nil, nextToken: String? = nil, notificationARNs: [String]? = nil, parameters: [Parameter]? = nil, rollbackConfiguration: RollbackConfiguration? = nil, stackId: String? = nil, stackName: String? = nil, status: ChangeSetStatus? = nil, statusReason: String? = nil, tags: [Tag]? = nil)