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

BasePathMapping

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

Represents the base path that callers of the API must provide as part of the URL after the domain name.

A custom domain name plus a BasePathMapping specification identifies a deployed "RestApi" in a given stage of the owner "Account".

See also: Use Custom Domain Names

interface BasePathMapping {
basePath?: string | null;
restApiId?: string | null;
stage?: string | null;
}

§Properties

§
basePath?: string | null
[src]

The base path name that callers of the API must provide as part of the URL after the domain name.

§
restApiId?: string | null
[src]

The string identifier of the associated "RestApi".

§
stage?: string | null
[src]

The name of the associated stage.