Class: Aws::CloudFormation::Types::EstimateTemplateCostInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb

Overview

The input for an EstimateTemplateCost action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#parametersArray<Types::Parameter>

A list of Parameter structures that specify input parameters.

Returns:



4023
4024
4025
4026
4027
4028
4029
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4023

class EstimateTemplateCostInput < Struct.new(
  :template_body,
  :template_url,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#template_bodyString

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.

Returns:

  • (String)


4023
4024
4025
4026
4027
4028
4029
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4023

class EstimateTemplateCostInput < Struct.new(
  :template_body,
  :template_url,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#template_urlString

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. The location for an Amazon S3 bucket must start with https://.

Conditional: You must pass TemplateURL or TemplateBody. If both are passed, only TemplateBody is used.

Returns:

  • (String)


4023
4024
4025
4026
4027
4028
4029
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4023

class EstimateTemplateCostInput < Struct.new(
  :template_body,
  :template_url,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end