Class: Aws::CloudFormation::Types::GetGeneratedTemplateOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::GetGeneratedTemplateOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The status of the template generation.
-
#template_body ⇒ String
The template body of the generated template, in the language specified by the
Languageparameter.
Instance Attribute Details
#status ⇒ String
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.
4528 4529 4530 4531 4532 4533 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 4528 class GetGeneratedTemplateOutput < Struct.new( :status, :template_body) SENSITIVE = [] include Aws::Structure end |
#template_body ⇒ String
The template body of the generated template, in the language specified by the Language parameter.
4528 4529 4530 4531 4532 4533 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 4528 class GetGeneratedTemplateOutput < Struct.new( :status, :template_body) SENSITIVE = [] include Aws::Structure end |