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

StackResource

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

The StackResource data type.

interface StackResource {
Description?: string | null;
DriftInformation?: StackResourceDriftInformation | null;
LogicalResourceId: string;
ModuleInfo?: ModuleInfo | null;
PhysicalResourceId?: string | null;
ResourceStatus: ResourceStatus;
ResourceStatusReason?: string | null;
ResourceType: string;
StackId?: string | null;
StackName?: string | null;
Timestamp: Date | number;
}

§Properties

§
Description?: string | null
[src]

User defined description associated with the resource.

§
DriftInformation?: StackResourceDriftInformation | null
[src]

Information about whether the resource's actual configuration differs, or has drifted, from its 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.

§
LogicalResourceId: string
[src]

The logical name of the resource specified in the template.

§
ModuleInfo?: ModuleInfo | null
[src]

Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.

§
PhysicalResourceId?: string | null
[src]

The name or unique identifier that corresponds to a physical instance ID of a resource supported by CloudFormation.

§
ResourceStatus: ResourceStatus
[src]

Current status of the resource.

§
ResourceStatusReason?: string | null
[src]

Success/failure message associated with the resource.

§
ResourceType: string
[src]

Type of resource. (For more information, go to Amazon Web Services Resource Types Reference in the CloudFormation User Guide.)

§
StackId?: string | null
[src]

Unique identifier of the stack.

§
StackName?: string | null
[src]

The name associated with the stack.

§
Timestamp: Date | number
[src]

Time the status was updated.