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

Resource

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

Details about the resource involved in a finding.

interface Resource {
details?: ResourceDetails | null;
id: string;
partition?: string | null;
region?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
details?: ResourceDetails | null
[src]

An object that contains details about the resource involved in a finding.

§
id: string
[src]

The ID of the resource.

§
partition?: string | null
[src]

The partition of the resource.

§
region?: string | null
[src]

The Amazon Web Services Region the impacted resource is located in.

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

The tags attached to the resource.

§

The type of resource.