LocalGatewayRouteTableReference
- class aws_cdk.aws_ec2.LocalGatewayRouteTableReference(*, local_gateway_route_table_arn, local_gateway_route_table_id)
Bases:
object
A reference to a LocalGatewayRouteTable resource.
- Parameters:
local_gateway_route_table_arn (
str
) – The ARN of the LocalGatewayRouteTable resource.local_gateway_route_table_id (
str
) – The LocalGatewayRouteTableId of the LocalGatewayRouteTable 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_ec2 as ec2 local_gateway_route_table_reference = ec2.LocalGatewayRouteTableReference( local_gateway_route_table_arn="localGatewayRouteTableArn", local_gateway_route_table_id="localGatewayRouteTableId" )
Attributes
- local_gateway_route_table_arn
The ARN of the LocalGatewayRouteTable resource.
- local_gateway_route_table_id
The LocalGatewayRouteTableId of the LocalGatewayRouteTable resource.