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

ResourceToImport

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

Describes the target resource of an import operation.

interface ResourceToImport {
LogicalResourceId: string;
ResourceIdentifier: {
[key: string]: string | null | undefined;
}
;
ResourceType: string;
}

§Properties

§
LogicalResourceId: string
[src]

The logical ID of the target resource as specified in the template.

§
ResourceIdentifier: {
[key: string]: string | null | undefined;
}
[src]

A key-value pair that identifies the target resource. The key is an identifier property (for example, BucketName for AWS::S3::Bucket resources) and the value is the actual property value (for example, MyS3Bucket).

§
ResourceType: string
[src]

The type of resource to import into your stack, such as AWS::S3::Bucket. For a list of supported resource types, see Resources that support import operations in the CloudFormation User Guide.