interface CfnVPNConnectionRouteMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnVPNConnectionRouteMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnVPNConnectionRouteMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnVPNConnectionRouteMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnVPNConnectionRouteMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnVPNConnectionRouteMixinProps |
Properties for CfnVPNConnectionRoutePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnVPNConnectionRouteMixinProps: ec2_mixins.CfnVPNConnectionRouteMixinProps = {
destinationCidrBlock: 'destinationCidrBlock',
vpnConnectionId: 'vpnConnectionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The CIDR block associated with the local subnet of the customer network. |
| vpn | string | The ID of the VPN connection. |
destinationCidrBlock?
Type:
string
(optional)
The CIDR block associated with the local subnet of the customer network.
vpnConnectionId?
Type:
string
(optional)
The ID of the VPN connection.

.NET
Go
Java
Python
TypeScript