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 ‘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.
4170 4171 4172 4173 4174 4175 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 4170 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.
4170 4171 4172 4173 4174 4175 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 4170 class GetGeneratedTemplateOutput < Struct.new( :status, :template_body) SENSITIVE = [] include Aws::Structure end |