Class: Aws::CloudFormation::Types::GetGeneratedTemplateOutput

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#statusString

The status of the template generation. Supported values are:

  • ‘CreatePending` - the creation of the template is pending.

  • ‘CreateInProgress` - the creation of the template is in progress.

  • ‘DeletePending` - the deletion of the template is pending.

  • ‘DeleteInProgress` - the deletion of the template is in progress.

  • ‘UpdatePending` - the update of the template is pending.

  • ‘UpdateInProgress` - the update of the template is in progress.

  • ‘Failed` - the template operation failed.

  • ‘Complete` - the template operation is complete.

Returns:

  • (String)


4213
4214
4215
4216
4217
4218
# File 'lib/aws-sdk-cloudformation/types.rb', line 4213

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

#template_bodyString

The template body of the generated template, in the language specified by the ‘Language` parameter.

Returns:

  • (String)


4213
4214
4215
4216
4217
4218
# File 'lib/aws-sdk-cloudformation/types.rb', line 4213

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