interface CfnVPNGatewayRoutePropagationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnVPNGatewayRoutePropagationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnVPNGatewayRoutePropagationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnVPNGatewayRoutePropagationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnVPNGatewayRoutePropagationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnVPNGatewayRoutePropagationMixinProps |
Properties for CfnVPNGatewayRoutePropagationPropsMixin.
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/cfn-property-mixins';
const cfnVPNGatewayRoutePropagationMixinProps: ec2.CfnVPNGatewayRoutePropagationMixinProps = {
routeTableIds: ['routeTableIds'],
vpnGatewayId: 'vpnGatewayId',
};
Properties
| Name | Type | Description |
|---|---|---|
| route | string[] | The ID of the route table. |
| vpn | string | The ID of the virtual private gateway that is attached to a VPC. |
routeTableIds?
Type:
string[]
(optional)
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
(optional)
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.

.NET
Go
Java
Python
TypeScript