APIGateway / Client / get_base_path_mappings

get_base_path_mappings#

APIGateway.Client.get_base_path_mappings(**kwargs)#

Represents a collection of BasePathMapping resources.

See also: AWS API Documentation

Request Syntax

response = client.get_base_path_mappings(
    domainName='string',
    position='string',
    limit=123
)
Parameters:
  • domainName (string) –

    [REQUIRED]

    The domain name of a BasePathMapping resource.

  • position (string) – The current pagination position in the paged result set.

  • limit (integer) – The maximum number of returned results per page. The default value is 25 and the maximum value is 500.

Return type:

dict

Returns:

Response Syntax

{
    'position': 'string',
    'items': [
        {
            'basePath': 'string',
            'restApiId': 'string',
            'stage': 'string'
        },
    ]
}

Response Structure

  • (dict) –

    Represents a collection of BasePathMapping resources.

    • position (string) –

    • items (list) –

      The current page of elements from this collection.

      • (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