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

ValidateTemplateInput

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

The input for "ValidateTemplate" action.

interface ValidateTemplateInput {
TemplateBody?: string | null;
TemplateURL?: string | null;
}

§Properties

§
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 TemplateURL or TemplateBody. 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 (max size: 460,800 bytes) that is 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.