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

ResourceIdentifier

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

The details that identify a resource that is discovered by Config, including the resource type, ID, and (if available) the custom resource name.

interface ResourceIdentifier {
resourceDeletionTime?: Date | number | null;
resourceId?: string | null;
resourceName?: string | null;
resourceType?: ResourceType | null;
}

§Properties

§
resourceDeletionTime?: Date | number | null
[src]

The time that the resource was deleted.

§
resourceId?: string | null
[src]

The ID of the resource (for example, sg-xxxxxx).

§
resourceName?: string | null
[src]

The custom name of the resource (if available).

§
resourceType?: ResourceType | null
[src]

The type of resource.