Stack

public struct Stack : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The capabilities allowed in the stack.

    Declaration

    Swift

    public let capabilities: [Capability]?
  • The unique ID of the change set.

    Declaration

    Swift

    public let changeSetId: String?
  • The time at which the stack was created.

    Declaration

    Swift

    public let creationTime: TimeStamp
  • The time the stack was deleted.

    Declaration

    Swift

    public let deletionTime: TimeStamp?
  • A user-defined description associated with the stack.

    Declaration

    Swift

    public let description: String?
  • Boolean to enable or disable rollback on stack creation failures: true: disable rollback false: enable rollback

    Declaration

    Swift

    public let disableRollback: Bool?
  • Information on whether a stack’s actual configuration differs, or has drifted, from it’s expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

    Declaration

    Swift

    public let driftInformation: StackDriftInformation?
  • Whether termination protection is enabled for the stack. For nested stacks, termination protection is set on the root stack and cannot be changed directly on the nested stack. For more information, see Protecting a Stack From Being Deleted in the AWS CloudFormation User Guide.

    Declaration

    Swift

    public let enableTerminationProtection: Bool?
  • The time the stack was last updated. This field will only be returned if the stack has been updated at least once.

    Declaration

    Swift

    public let lastUpdatedTime: TimeStamp?
  • SNS topic ARNs to which stack related events are published.

    Declaration

    Swift

    public let notificationARNs: [String]?
  • A list of output structures.

    Declaration

    Swift

    public let outputs: [Output]?
  • A list of Parameter structures.

    Declaration

    Swift

    public let parameters: [Parameter]?
  • For nested stacks–stacks created as resources for another stack–the stack ID of the direct parent of this stack. For the first level of nested stacks, the root stack is also the parent stack. For more information, see Working with Nested Stacks in the AWS CloudFormation User Guide.

    Declaration

    Swift

    public let parentId: String?
  • The Amazon Resource Name (ARN) of an AWS Identity and Access Management (IAM) role that is associated with the stack. During a stack operation, AWS CloudFormation uses this role’s credentials to make calls on your behalf.

    Declaration

    Swift

    public let roleARN: String?
  • 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?
  • For nested stacks–stacks created as resources for another stack–the stack ID of the top-level stack to which the nested stack ultimately belongs. For more information, see Working with Nested Stacks in the AWS CloudFormation User Guide.

    Declaration

    Swift

    public let rootId: String?
  • Unique identifier of the stack.

    Declaration

    Swift

    public let stackId: String?
  • The name associated with the stack.

    Declaration

    Swift

    public let stackName: String
  • Current status of the stack.

    Declaration

    Swift

    public let stackStatus: StackStatus
  • Success/failure message associated with the stack status.

    Declaration

    Swift

    public let stackStatusReason: String?
  • A list of Tags that specify information about the stack.

    Declaration

    Swift

    public let tags: [Tag]?
  • The amount of time within which stack creation should complete.

    Declaration

    Swift

    public let timeoutInMinutes: Int?
  • Undocumented

    Declaration

    Swift

    public init(capabilities: [Capability]? = nil, changeSetId: String? = nil, creationTime: TimeStamp, deletionTime: TimeStamp? = nil, description: String? = nil, disableRollback: Bool? = nil, driftInformation: StackDriftInformation? = nil, enableTerminationProtection: Bool? = nil, lastUpdatedTime: TimeStamp? = nil, notificationARNs: [String]? = nil, outputs: [Output]? = nil, parameters: [Parameter]? = nil, parentId: String? = nil, roleARN: String? = nil, rollbackConfiguration: RollbackConfiguration? = nil, rootId: String? = nil, stackId: String? = nil, stackName: String, stackStatus: StackStatus, stackStatusReason: String? = nil, tags: [Tag]? = nil, timeoutInMinutes: Int? = nil)