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/apigateway.ts?docs=full";

Represents an API resource.

See also: Create an API

interface Resource {
id?: string | null;
parentId?: string | null;
path?: string | null;
pathPart?: string | null;
resourceMethods?: {
[key: string]: Method | null | undefined;
}
| null;
}

§Properties

§
id?: string | null
[src]

The resource's identifier.

§
parentId?: string | null
[src]

The parent resource's identifier.

§
path?: string | null
[src]

The full path for this resource.

§
pathPart?: string | null
[src]

The last path segment for this resource.

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

TODO: Failed to render documentation: unhandled paragraph inner tag h4