
estimate-template-cost
**********************


DESCRIPTION
===========

Returns the estimated monthly cost of a template. The return value is
an AWS Simple Monthly Calculator URL with a query string that
describes the resources required to run the template.


SYNOPSIS
========

   aws cloudformation estimate-template-cost
     [--template-url <value>]
     [--parameters <value>]
     [--template-body <value>]


REQUIRED PARAMETERS
===================

None


OPTIONAL PARAMETERS
===================

"--template-url"  (string)
   Location of file containing the template body. The URL must point
   to a template located in an S3 bucket in the same region as the
   stack. For more information, go to the AWS CloudFormation User
   Guide .

   Conditional: You must pass "--template-url" or "--template-body" .
   If both are passed, only "--template-body" is used.

"--parameters"  (list)
   A list of "Parameter" structures that specify input parameters.

      (structure)
         The Parameter data type.

         "parameter_value"  (string)
            The value associated with the parameter.

         "parameter_key"  (string)
            The key associated with the parameter.

   *Parameter Syntax*

      [
        {
          "parameter_value": "string",
          "parameter_key": "string"
        }
        ...
      ]

"--template-body"  (string)
   Structure containing the template body. (For more information, go
   to the AWS CloudFormation User Guide .)

   Conditional: You must pass "--template-body" or "--template-url" .
   If both are passed, only "--template-body" is used.
