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

StackSummary

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

The StackSummary Data Type

interface StackSummary {
CreationTime: Date | number;
DeletionTime?: Date | number | null;
DriftInformation?: StackDriftInformationSummary | null;
LastUpdatedTime?: Date | number | null;
ParentId?: string | null;
RootId?: string | null;
StackId?: string | null;
StackName: string;
StackStatus: StackStatus;
StackStatusReason?: string | null;
TemplateDescription?: string | null;
}

§Properties

§
CreationTime: Date | number
[src]

The time the stack was created.

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

The time the stack was deleted.

§
DriftInformation?: StackDriftInformationSummary | null
[src]

Summarizes information on whether a stack's actual configuration differs, or has drifted, from it's expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

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

The time the stack was last updated. This field will only be returned if the stack has been updated at least once.

§
ParentId?: string | null
[src]

For nested stacks--stacks created as resources for another stack--the stack ID of the direct parent of this stack. For the first level of nested stacks, the root stack is also the parent stack.

For more information, see Working with Nested Stacks in the CloudFormation User Guide.

§
RootId?: string | null
[src]

For nested stacks--stacks created as resources for another stack--the stack ID of the top-level stack to which the nested stack ultimately belongs.

For more information, see Working with Nested Stacks in the CloudFormation User Guide.

§
StackId?: string | null
[src]

Unique stack identifier.

§
StackName: string
[src]

The name associated with the stack.

§
StackStatus: StackStatus
[src]

The current status of the stack.

§
StackStatusReason?: string | null
[src]

Success/Failure message associated with the stack status.

§
TemplateDescription?: string | null
[src]

The template description of the template used to create the stack.