Class: Aws::CloudFormation::Types::GetGeneratedTemplateOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::GetGeneratedTemplateOutput
- Defined in:
- gems/aws-sdk-cloudformation/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
Language
parameter.
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.
4293 4294 4295 4296 4297 4298 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4293 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.
4293 4294 4295 4296 4297 4298 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4293 class GetGeneratedTemplateOutput < Struct.new( :status, :template_body) SENSITIVE = [] include Aws::Structure end |