Class: Aws::CloudFormation::Types::EstimateTemplateCostInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::EstimateTemplateCostInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The input for an EstimateTemplateCost action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parameters ⇒ Array<Types::Parameter>
A list of `Parameter` structures that specify input parameters.
-
#template_body ⇒ String
Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes.
-
#template_url ⇒ String
Location of file containing the template body.
Instance Attribute Details
#parameters ⇒ Array<Types::Parameter>
A list of `Parameter` structures that specify input parameters.
3536 3537 3538 3539 3540 3541 3542 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3536 class EstimateTemplateCostInput < Struct.new( :template_body, :template_url, :parameters) SENSITIVE = [] include Aws::Structure end |
#template_body ⇒ String
Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. (For more information, go to [Template Anatomy] in the CloudFormation User Guide.)
Conditional: You must pass `TemplateBody` or `TemplateURL`. If both are passed, only `TemplateBody` is used.
[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
3536 3537 3538 3539 3540 3541 3542 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3536 class EstimateTemplateCostInput < Struct.new( :template_body, :template_url, :parameters) SENSITIVE = [] include Aws::Structure end |
#template_url ⇒ String
Location of file containing the template body. The URL must point to a template that's located in an Amazon S3 bucket or a Systems Manager document. For more information, go to [Template Anatomy] in the CloudFormation User Guide.
Conditional: You must pass `TemplateURL` or `TemplateBody`. If both are passed, only `TemplateBody` is used.
[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
3536 3537 3538 3539 3540 3541 3542 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3536 class EstimateTemplateCostInput < Struct.new( :template_body, :template_url, :parameters) SENSITIVE = [] include Aws::Structure end |