ApiMappingAttributes
- class aws_cdk.aws_apigatewayv2.ApiMappingAttributes(*, api_mapping_id, domain_name=None)
Bases:
objectThe attributes used to import existing ApiMapping.
- Parameters:
api_mapping_id (
str) – The API mapping ID.domain_name (
Optional[str]) – Domain name. Default: - Certain operations on the referenced object may fail if not supplied
- 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_attributes = apigatewayv2.ApiMappingAttributes( api_mapping_id="apiMappingId", # the properties below are optional domain_name="domainName" )
Attributes
- api_mapping_id
The API mapping ID.
- domain_name
Domain name.
- Default:
Certain operations on the referenced object may fail if not supplied