interface CfnVPNGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnVPNGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnVPNGatewayMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnVPNGatewayMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnVPNGatewayMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnVPNGatewayMixinProps: ec2.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