ApiMappingReference
- class aws_cdk.interfaces.aws_apigatewayv2.ApiMappingReference(*, api_mapping_id, domain_name)
Bases:
objectA 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.interfaces import aws_apigatewayv2 as interfaces_aws_apigatewayv2 api_mapping_reference = interfaces_aws_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.