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

ChangeSetSummary

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

The ChangeSetSummary structure describes a change set, its status, and the stack with which it's associated.

interface ChangeSetSummary {
ChangeSetId?: string | null;
ChangeSetName?: string | null;
CreationTime?: Date | number | null;
Description?: string | null;
ExecutionStatus?: ExecutionStatus | null;
IncludeNestedStacks?: boolean | null;
ParentChangeSetId?: string | null;
RootChangeSetId?: string | null;
StackId?: string | null;
StackName?: string | null;
Status?: ChangeSetStatus | null;
StatusReason?: string | null;
}

§Properties

§
ChangeSetId?: string | null
[src]

The ID of the change set.

§
ChangeSetName?: string | null
[src]

The name of the change set.

§
CreationTime?: Date | number | null
[src]

The start time when the change set was created, in UTC.

§
Description?: string | null
[src]

Descriptive information about the change set.

§
ExecutionStatus?: ExecutionStatus | null
[src]

If the change set execution status is AVAILABLE, you can execute the change set. If you can’t execute the change set, the status indicates why. For example, a change set might be in an UNAVAILABLE state because CloudFormation is still creating it or in an OBSOLETE state because the stack was already updated.

§
IncludeNestedStacks?: boolean | null
[src]

Specifies the current setting of IncludeNestedStacks for the change set.

§
ParentChangeSetId?: string | null
[src]

The parent change set ID.

§
RootChangeSetId?: string | null
[src]

The root change set ID.

§
StackId?: string | null
[src]

The ID of the stack with which the change set is associated.

§
StackName?: string | null
[src]

The name of the stack with which the change set is associated.

§
Status?: ChangeSetStatus | null
[src]

The state of the change set, such as CREATE_IN_PROGRESS, CREATE_COMPLETE, or FAILED.

§
StatusReason?: string | null
[src]

A description of the change set's status. For example, if your change set is in the FAILED state, CloudFormation shows the error message.