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

GetTemplateOutput

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

The output for "GetTemplate" action.

interface GetTemplateOutput {
StagesAvailable: TemplateStage[];
TemplateBody?: string | null;
}

§Properties

§
StagesAvailable: TemplateStage[]
[src]

The stage of the template that you can retrieve. For stacks, the Original and Processed templates are always available. For change sets, the Original template is always available. After CloudFormation finishes creating the change set, the Processed template becomes available.

§
TemplateBody?: string | null
[src]

Structure containing the template body. (For more information, go to Template Anatomy in the CloudFormation User Guide.)

CloudFormation returns the same template that was used when the stack was created.