Class: Aws::CloudFormation::Types::EstimateTemplateCostInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::EstimateTemplateCostInput
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
When making an API call, you may pass EstimateTemplateCostInput data as a hash:
{
template_body: "TemplateBody",
template_url: "TemplateURL",
parameters: [
{
parameter_key: "ParameterKey",
parameter_value: "ParameterValue",
use_previous_value: false,
resolved_value: "ParameterValue",
},
],
}
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.
3052 3053 3054 3055 3056 3057 3058 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 3052 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 AWS CloudFormation User Guide.)
Conditional: You must pass TemplateBody
or TemplateURL
. If both
are passed, only TemplateBody
is used.
3052 3053 3054 3055 3056 3057 3058 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 3052 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 is located in an Amazon S3 bucket. For more information, go to Template Anatomy in the AWS CloudFormation User Guide.
Conditional: You must pass TemplateURL
or TemplateBody
. If both
are passed, only TemplateBody
is used.
3052 3053 3054 3055 3056 3057 3058 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 3052 class EstimateTemplateCostInput < Struct.new( :template_body, :template_url, :parameters) SENSITIVE = [] include Aws::Structure end |