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

GetTemplateInput

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

The input for a "GetTemplate" action.

interface GetTemplateInput {
ChangeSetName?: string | null;
StackName?: string | null;
TemplateStage?: TemplateStage | null;
}

§Properties

§
ChangeSetName?: string | null
[src]

The name or Amazon Resource Name (ARN) of a change set for which CloudFormation returns the associated template. If you specify a name, you must also specify the StackName.

§
StackName?: string | null
[src]

The name or the unique stack ID that's associated with the stack, which aren't always interchangeable:

  • Running stacks: You can specify either the stack's name or its unique stack ID.
  • Deleted stacks: You must specify the unique stack ID.

Default: There is no default value.

§
TemplateStage?: TemplateStage | null
[src]

For templates that include transforms, the stage of the template that CloudFormation returns. To get the user-submitted template, specify Original. To get the template after CloudFormation has processed all transforms, specify Processed.

If the template doesn't include transforms, Original and Processed return the same template. By default, CloudFormation specifies Processed.