RouteTableReference

class aws_cdk.aws_ec2.RouteTableReference(*, route_table_id)

Bases: object

A reference to a RouteTable resource.

Parameters:

route_table_id (str) – The RouteTableId of the RouteTable 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

route_table_reference = ec2.RouteTableReference(
    route_table_id="routeTableId"
)

Attributes

route_table_id

The RouteTableId of the RouteTable resource.