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

ResourceIdentifierSummary

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

Describes the target resources of a specific type in your import template (for example, all AWS::S3::Bucket resources) and the properties you can provide during the import to identify resources of that type.

interface ResourceIdentifierSummary {
LogicalResourceIds: string[];
ResourceIdentifiers: string[];
ResourceType?: string | null;
}

§Properties

§
LogicalResourceIds: string[]
[src]

The logical IDs of the target resources of the specified ResourceType, as defined in the import template.

§
ResourceIdentifiers: string[]
[src]

The resource properties you can provide during the import to identify your target resources. For example, BucketName is a possible identifier property for AWS::S3::Bucket resources.

§
ResourceType?: string | null
[src]

The template resource type of the target resources, such as AWS::S3::Bucket.