StackSummary

public struct StackSummary : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The time the stack was created.

    Declaration

    Swift

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

    Declaration

    Swift

    public let deletionTime: TimeStamp?
  • Summarizes 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: StackDriftInformationSummary?
  • 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?
  • 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?
  • 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 stack identifier.

    Declaration

    Swift

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

    Declaration

    Swift

    public let stackName: String
  • The 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?
  • The template description of the template used to create the stack.

    Declaration

    Swift

    public let templateDescription: String?
  • Undocumented

    Declaration

    Swift

    public init(creationTime: TimeStamp, deletionTime: TimeStamp? = nil, driftInformation: StackDriftInformationSummary? = nil, lastUpdatedTime: TimeStamp? = nil, parentId: String? = nil, rootId: String? = nil, stackId: String? = nil, stackName: String, stackStatus: StackStatus, stackStatusReason: String? = nil, templateDescription: String? = nil)