BasePathMappingReference

class aws_cdk.aws_apigateway.BasePathMappingReference(*, base_path, domain_name)

Bases: object

A reference to a BasePathMapping resource.

Parameters:
  • base_path (str) – The BasePath of the BasePathMapping resource.

  • domain_name (str) – The DomainName of the BasePathMapping resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_apigateway as apigateway

base_path_mapping_reference = apigateway.BasePathMappingReference(
    base_path="basePath",
    domain_name="domainName"
)

Attributes

base_path

The BasePath of the BasePathMapping resource.

domain_name

The DomainName of the BasePathMapping resource.