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

StackResourceDetail

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

Contains detailed information about the specified stack resource.

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

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

§
LastUpdatedTimestamp: Date | number
[src]

Time the status was updated.

§
LogicalResourceId: string
[src]

The logical name of the resource specified in the template.

§
Metadata?: string | null
[src]

The content of the Metadata attribute declared for the resource. For more information, see Metadata Attribute in the CloudFormation User Guide.

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