GetTemplateOutput

public struct GetTemplateOutput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The stage of the template that you can retrieve. For stacks, the Original and Processed templates are always available. For change sets, the Original template is always available. After AWS CloudFormation finishes creating the change set, the Processed template becomes available.

    Declaration

    Swift

    public let stagesAvailable: [TemplateStage]?
  • Structure containing the template body. (For more information, go to Template Anatomy in the AWS CloudFormation User Guide.) AWS CloudFormation returns the same template that was used when the stack was created.

    Declaration

    Swift

    public let templateBody: String?
  • Undocumented

    Declaration

    Swift

    public init(stagesAvailable: [TemplateStage]? = nil, templateBody: String? = nil)