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

ExecuteChangeSetInput

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

The input for the "ExecuteChangeSet" action.

interface ExecuteChangeSetInput {
ChangeSetName: string;
ClientRequestToken?: string | null;
DisableRollback?: boolean | null;
StackName?: string | null;
}

§Properties

§
ChangeSetName: string
[src]

The name or Amazon Resource Name (ARN) of the change set that you want use to update the specified stack.

§
ClientRequestToken?: string | null
[src]

A unique identifier for this ExecuteChangeSet request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to execute a change set to update a stack with the same name. You might retry ExecuteChangeSet requests to ensure that CloudFormation successfully received them.

§
DisableRollback?: boolean | null
[src]

Preserves the state of previously provisioned resources when an operation fails.

Default: True

§
StackName?: string | null
[src]

If you specified the name of a change set, specify the stack name or Amazon Resource Name (ARN) that's associated with the change set you want to execute.