APIGateway / Client / create_base_path_mapping

create_base_path_mapping#

APIGateway.Client.create_base_path_mapping(**kwargs)#

Creates a new BasePathMapping resource.

See also: AWS API Documentation

Request Syntax

response = client.create_base_path_mapping(
    domainName='string',
    basePath='string',
    restApiId='string',
    stage='string'
)
Parameters:
  • domainName (string) –

    [REQUIRED]

    The domain name of the BasePathMapping resource to create.

  • basePath (string) – 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.

  • restApiId (string) –

    [REQUIRED]

    The string identifier of the associated RestApi.

  • stage (string) – 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.

Return type:

dict

Returns:

Response Syntax

{
    'basePath': 'string',
    'restApiId': 'string',
    'stage': 'string'
}

Response Structure

  • (dict) –

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

    • basePath (string) –

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

    • restApiId (string) –

      The string identifier of the associated RestApi.

    • stage (string) –

      The name of the associated stage.

Exceptions

  • APIGateway.Client.exceptions.BadRequestException

  • APIGateway.Client.exceptions.ConflictException

  • APIGateway.Client.exceptions.LimitExceededException

  • APIGateway.Client.exceptions.NotFoundException

  • APIGateway.Client.exceptions.UnauthorizedException

  • APIGateway.Client.exceptions.TooManyRequestsException