LocalGatewayRouteReference
- class aws_cdk.interfaces.aws_ec2.LocalGatewayRouteReference(*, destination_cidr_block, local_gateway_route_table_id)
Bases:
objectA reference to a LocalGatewayRoute resource.
- Parameters:
destination_cidr_block (
str) – The DestinationCidrBlock of the LocalGatewayRoute resource.local_gateway_route_table_id (
str) – The LocalGatewayRouteTableId of the LocalGatewayRoute 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_ec2 as interfaces_aws_ec2 local_gateway_route_reference = interfaces_aws_ec2.LocalGatewayRouteReference( destination_cidr_block="destinationCidrBlock", local_gateway_route_table_id="localGatewayRouteTableId" )
Attributes
- destination_cidr_block
The DestinationCidrBlock of the LocalGatewayRoute resource.
- local_gateway_route_table_id
The LocalGatewayRouteTableId of the LocalGatewayRoute resource.