You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing EstimateTemplateCostInput as input to an Aws::Client method, you can use a vanilla 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.

Instance Attribute Summary collapse

Instance Attribute Details

#parametersArray<Types::Parameter>

A list of Parameter structures that specify input parameters.

Returns:

  • (Array<Types::Parameter>)

    A list of Parameter structures that specify input parameters.

#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 AWS CloudFormation User Guide.)

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

Returns:

  • (String)

    Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes.

#template_urlString

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.

Returns:

  • (String)

    Location of file containing the template body.