Estimate Template Cost
cloudformation_estimate_template_cost | R Documentation |
Returns the estimated monthly cost of a template¶
Description¶
Returns the estimated monthly cost of a template. The return value is an Amazon Web Services Simple Monthly Calculator URL with a query string that describes the resources required to run the template.
Usage¶
cloudformation_estimate_template_cost(TemplateBody, TemplateURL,
Parameters)
Arguments¶
TemplateBody |
Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. Conditional: You must pass |
TemplateURL |
The URL of a 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. The location for an Amazon S3 bucket must start with
Conditional: You must pass |
Parameters |
A list of |
Value¶
A list with the following syntax:
list(
Url = "string"
)
Request syntax¶
svc$estimate_template_cost(
TemplateBody = "string",
TemplateURL = "string",
Parameters = list(
list(
ParameterKey = "string",
ParameterValue = "string",
UsePreviousValue = TRUE|FALSE,
ResolvedValue = "string"
)
)
)