Class: Aws::CloudFormation::Types::GetTemplateOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::GetTemplateOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The output for GetTemplate action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#stages_available ⇒ Array<String>
The stage of the template that you can retrieve.
-
#template_body ⇒ String
Structure containing the template body.
Instance Attribute Details
#stages_available ⇒ Array<String>
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 CloudFormation finishes creating the change set, the `Processed` template becomes available.
3734 3735 3736 3737 3738 3739 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3734 class GetTemplateOutput < Struct.new( :template_body, :stages_available) SENSITIVE = [] include Aws::Structure end |
#template_body ⇒ String
Structure containing the template body. (For more information, go to
- Template Anatomy][1
-
in the CloudFormation User Guide.)
CloudFormation returns the same template that was used when the stack was created.
[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
3734 3735 3736 3737 3738 3739 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3734 class GetTemplateOutput < Struct.new( :template_body, :stages_available) SENSITIVE = [] include Aws::Structure end |