CfnVPNGatewayRoutePropagationProps

class aws_cdk.aws_ec2.CfnVPNGatewayRoutePropagationProps(*, route_table_ids, vpn_gateway_id)

Bases: object

Properties for defining a CfnVPNGatewayRoutePropagation.

Parameters:
  • route_table_ids (Sequence[str]) – The ID of the route table. The routing table must be associated with the same VPC that the virtual private gateway is attached to.

  • vpn_gateway_id (str) – The ID of the virtual private gateway that is attached to a VPC. The virtual private gateway must be attached to the same VPC that the routing tables are associated with.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngatewayroutepropagation.html

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

cfn_vPNGateway_route_propagation_props = ec2.CfnVPNGatewayRoutePropagationProps(
    route_table_ids=["routeTableIds"],
    vpn_gateway_id="vpnGatewayId"
)

Attributes

route_table_ids

The ID of the route table.

The routing table must be associated with the same VPC that the virtual private gateway is attached to.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngatewayroutepropagation.html#cfn-ec2-vpngatewayroutepropagation-routetableids

vpn_gateway_id

The ID of the virtual private gateway that is attached to a VPC.

The virtual private gateway must be attached to the same VPC that the routing tables are associated with.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngatewayroutepropagation.html#cfn-ec2-vpngatewayroutepropagation-vpngatewayid