ApiMappingReference
- class aws_cdk.aws_apigatewayv2.ApiMappingReference(*, api_mapping_id, domain_name)
Bases:
object
A reference to a ApiMapping resource.
- Parameters:
api_mapping_id (
str
) – The ApiMappingId of the ApiMapping resource.domain_name (
str
) – The DomainName of the ApiMapping 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_apigatewayv2 as apigatewayv2 api_mapping_reference = apigatewayv2.ApiMappingReference( api_mapping_id="apiMappingId", domain_name="domainName" )
Attributes
- api_mapping_id
The ApiMappingId of the ApiMapping resource.
- domain_name
The DomainName of the ApiMapping resource.