aws-cdk-lib.aws_ec2.CfnVPNGatewayRoutePropagationProps

interface CfnVPNGatewayRoutePropagationProps

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnVPNGatewayRoutePropagationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVPNGatewayRoutePropagationProps
Javasoftware.amazon.awscdk.services.ec2.CfnVPNGatewayRoutePropagationProps
Pythonaws_cdk.aws_ec2.CfnVPNGatewayRoutePropagationProps
TypeScript aws-cdk-lib » aws_ec2 » CfnVPNGatewayRoutePropagationProps

Properties for defining a CfnVPNGatewayRoutePropagation.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const cfnVPNGatewayRoutePropagationProps: ec2.CfnVPNGatewayRoutePropagationProps = {
  routeTableIds: ['routeTableIds'],
  vpnGatewayId: 'vpnGatewayId',
};

Properties

NameTypeDescription
routeTableIdsstring[]The ID of the route table.
vpnGatewayIdstringThe ID of the virtual private gateway that is attached to a VPC.

routeTableIds

Type: string[]

The ID of the route table.

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


vpnGatewayId

Type: string

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.