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

Stack

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

The Stack data type.

interface Stack {
Capabilities: Capability[];
ChangeSetId?: string | null;
CreationTime: Date | number;
DeletionTime?: Date | number | null;
Description?: string | null;
DisableRollback?: boolean | null;
DriftInformation?: StackDriftInformation | null;
EnableTerminationProtection?: boolean | null;
LastUpdatedTime?: Date | number | null;
NotificationARNs: string[];
Outputs: Output[];
Parameters: Parameter[];
ParentId?: string | null;
RoleARN?: string | null;
RollbackConfiguration?: RollbackConfiguration | null;
RootId?: string | null;
StackId?: string | null;
StackName: string;
StackStatus: StackStatus;
StackStatusReason?: string | null;
Tags: Tag[];
TimeoutInMinutes?: number | null;
}

§Properties

§
Capabilities: Capability[]
[src]

The capabilities allowed in the stack.

§
ChangeSetId?: string | null
[src]

The unique ID of the change set.

§
CreationTime: Date | number
[src]

The time at which the stack was created.

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

The time the stack was deleted.

§
Description?: string | null
[src]

A user-defined description associated with the stack.

§
DisableRollback?: boolean | null
[src]

Boolean to enable or disable rollback on stack creation failures:

  • true: disable rollback
  • false: enable rollback
§
DriftInformation?: StackDriftInformation | null
[src]

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.

§
EnableTerminationProtection?: boolean | null
[src]

Whether termination protection is enabled for the stack.

For nested stacks, termination protection is set on the root stack and cannot be changed directly on the nested stack. For more information, see Protecting a Stack From Being Deleted in the CloudFormation User Guide.

§
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.

§
NotificationARNs: string[]
[src]

SNS topic ARNs to which stack related events are published.

§
Outputs: Output[]
[src]

A list of output structures.

§
Parameters: Parameter[]
[src]

A list of Parameter structures.

§
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.

§
RoleARN?: string | null
[src]

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that is associated with the stack. During a stack operation, CloudFormation uses this role's credentials to make calls on your behalf.

§
RollbackConfiguration?: RollbackConfiguration | null
[src]

The rollback triggers for CloudFormation to monitor during stack creation and updating operations, and for the specified monitoring period afterwards.

§
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 identifier of the stack.

§
StackName: string
[src]

The name associated with the stack.

§
StackStatus: StackStatus
[src]

Current status of the stack.

§
StackStatusReason?: string | null
[src]

Success/failure message associated with the stack status.

§
Tags: Tag[]
[src]

A list of Tags that specify information about the stack.

§
TimeoutInMinutes?: number | null
[src]

The amount of time within which stack creation should complete.