Class: Aws::CloudFormation::Types::GetGeneratedTemplateInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::GetGeneratedTemplateInput
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#format ⇒ String
The language to use to retrieve for the generated template.
-
#generated_template_name ⇒ String
The name or Amazon Resource Name (ARN) of the generated template.
Instance Attribute Details
#format ⇒ String
The language to use to retrieve for the generated template. Supported values are:
JSON
YAML
4136 4137 4138 4139 4140 4141 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4136 class GetGeneratedTemplateInput < Struct.new( :format, :generated_template_name) SENSITIVE = [] include Aws::Structure end |
#generated_template_name ⇒ String
The name or Amazon Resource Name (ARN) of the generated template.
The format is
arn:${Partition}:cloudformation:${Region}:${Account}:generatedtemplate/${Id}
.
For example,
arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/2e8465c1-9a80-43ea-a3a3-4f2d692fe6dc
.
4136 4137 4138 4139 4140 4141 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4136 class GetGeneratedTemplateInput < Struct.new( :format, :generated_template_name) SENSITIVE = [] include Aws::Structure end |