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

CreateBasePathMappingRequest

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

Requests API Gateway to create a new "BasePathMapping" resource.

interface CreateBasePathMappingRequest {
basePath?: string | null;
domainName: string;
restApiId: string;
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. This value must be unique for all of the mappings across a single API. Specify '(none)' if you do not want callers to specify a base path name after the domain name.

§
domainName: string
[src]

[Required] The domain name of the "BasePathMapping" resource to create.

§
restApiId: string
[src]

[Required] The string identifier of the associated "RestApi".

§
stage?: string | null
[src]

The name of the API's stage that you want to use for this mapping. Specify '(none)' if you want callers to explicitly specify the stage name after any base path name.