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

AwsCloudFormationStackDetails

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

Nests a stack as a resource in a top-level template. Nested stacks are stacks created as resources for another stack.

interface AwsCloudFormationStackDetails {
Capabilities?: string[] | null;
CreationTime?: string | null;
Description?: string | null;
DisableRollback?: boolean | null;
EnableTerminationProtection?: boolean | null;
LastUpdatedTime?: string | null;
NotificationArns?: string[] | null;
RoleArn?: string | null;
StackId?: string | null;
StackName?: string | null;
StackStatus?: string | null;
StackStatusReason?: string | null;
TimeoutInMinutes?: number | null;
}

§Properties

§
Capabilities?: string[] | null
[src]

The capabilities allowed in the stack.

§
CreationTime?: string | null
[src]

The time at which the stack was created.

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

§

Information about whether a stack's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters.

§
EnableTerminationProtection?: boolean | null
[src]

Whether termination protection is enabled for the stack.

§
LastUpdatedTime?: string | null
[src]

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

§
NotificationArns?: string[] | null
[src]

The Amazon Resource Names (ARNs) of the Amazon SNS topic to which stack-related events are published.

§

A list of output structures.

§
RoleArn?: string | null
[src]

The ARN of an IAM role that's associated with the stack.

§
StackId?: string | null
[src]

Unique identifier of the stack.

§
StackName?: string | null
[src]

The name associated with the stack.

§
StackStatus?: string | null
[src]

Current status of the stack.

§
StackStatusReason?: string | null
[src]

Success or failure message associated with the stack status.

§
TimeoutInMinutes?: number | null
[src]

The length of time, in minutes, that CloudFormation waits for the nested stack to reach the CREATE_COMPLETE state.