RouteServerAssociationReference

class aws_cdk.aws_ec2.RouteServerAssociationReference(*, route_server_id, vpc_id)

Bases: object

A reference to a RouteServerAssociation resource.

Parameters:
  • route_server_id (str) – The RouteServerId of the RouteServerAssociation resource.

  • vpc_id (str) – The VpcId of the RouteServerAssociation 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_server_association_reference = ec2.RouteServerAssociationReference(
    route_server_id="routeServerId",
    vpc_id="vpcId"
)

Attributes

route_server_id

The RouteServerId of the RouteServerAssociation resource.

vpc_id

The VpcId of the RouteServerAssociation resource.