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

AggregateResourceIdentifier

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

The details that identify a resource that is collected by Config aggregator, including the resource type, ID, (if available) the custom resource name, the source account, and source region.

interface AggregateResourceIdentifier {
ResourceId: string;
ResourceName?: string | null;
ResourceType: ResourceType;
SourceAccountId: string;
SourceRegion: string;
}

§Properties

§
ResourceId: string
[src]

The ID of the Amazon Web Services resource.

§
ResourceName?: string | null
[src]

The name of the Amazon Web Services resource.

§
ResourceType: ResourceType
[src]

The type of the Amazon Web Services resource.

§
SourceAccountId: string
[src]

The 12-digit account ID of the source account.

§
SourceRegion: string
[src]

The source region where data is aggregated.