Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EstimateTemplateCostInput

import type { EstimateTemplateCostInput } from "https://aws-api.deno.dev/v0.4/services/cloudformation.ts?docs=full";

The input for an "EstimateTemplateCost" action.

interface EstimateTemplateCostInput {
Parameters?: Parameter[] | null;
TemplateBody?: string | null;
TemplateURL?: string | null;
}

§Properties

§
Parameters?: Parameter[] | null
[src]

A list of Parameter structures that specify input parameters.

§
TemplateBody?: string | null
[src]

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.

§
TemplateURL?: string | null
[src]

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.

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