interface CfnVPNConcentratorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnVPNConcentratorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnVPNConcentratorMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnVPNConcentratorMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnVPNConcentratorMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnVPNConcentratorMixinProps |
Properties for CfnVPNConcentratorPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.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 cfnVPNConcentratorMixinProps: ec2.CfnVPNConcentratorMixinProps = {
tags: [{
key: 'key',
value: 'value',
}],
transitGatewayId: 'transitGatewayId',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| tags? | Cfn[] | Any tags assigned to the VPN concentrator. |
| transit | string | The ID of the transit gateway associated with the VPN concentrator. |
| type? | string | The type of VPN concentrator. |
tags?
Type:
Cfn[]
(optional)
Any tags assigned to the VPN concentrator.
transitGatewayId?
Type:
string
(optional)
The ID of the transit gateway associated with the VPN concentrator.
type?
Type:
string
(optional)
The type of VPN concentrator.

.NET
Go
Java
Python
TypeScript