interface CfnVPNGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnVPNGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnVPNGatewayMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnVPNGatewayMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnVPNGatewayMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnVPNGatewayMixinProps |
Properties for CfnVPNGatewayPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngateway.html
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 cfnVPNGatewayMixinProps: ec2_mixins.CfnVPNGatewayMixinProps = {
amazonSideAsn: 123,
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| amazon | number | The private Autonomous System Number (ASN) for the Amazon side of a BGP session. |
| tags? | Cfn[] | Any tags assigned to the virtual private gateway. |
| type? | string | The type of VPN connection the virtual private gateway supports. |
amazonSideAsn?
Type:
number
(optional)
The private Autonomous System Number (ASN) for the Amazon side of a BGP session.
tags?
Type:
Cfn[]
(optional)
Any tags assigned to the virtual private gateway.
type?
Type:
string
(optional)
The type of VPN connection the virtual private gateway supports.

.NET
Go
Java
Python
TypeScript