BasePathMappingReference
- class aws_cdk.interfaces.aws_apigateway.BasePathMappingReference(*, base_path, domain_name)
Bases:
objectA 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.interfaces import aws_apigateway as interfaces_aws_apigateway base_path_mapping_reference = interfaces_aws_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.