Class: Aws::CloudFormation::Types::GetTemplateOutput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb

Overview

The output for GetTemplate action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#stages_availableArray<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.

Returns:

  • (Array<String>)


4395
4396
4397
4398
4399
4400
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4395

class GetTemplateOutput < Struct.new(
  :template_body,
  :stages_available)
  SENSITIVE = []
  include Aws::Structure
end

#template_bodyString

Structure containing the template body.

CloudFormation returns the same template that was used when the stack was created.

Returns:

  • (String)


4395
4396
4397
4398
4399
4400
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4395

class GetTemplateOutput < Struct.new(
  :template_body,
  :stages_available)
  SENSITIVE = []
  include Aws::Structure
end