interface CfnVPNConcentratorProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnVPNConcentratorProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVPNConcentratorProps |
Java | software.amazon.awscdk.services.ec2.CfnVPNConcentratorProps |
Python | aws_cdk.aws_ec2.CfnVPNConcentratorProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnVPNConcentratorProps |
Properties for defining a CfnVPNConcentrator.
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-lib';
const cfnVPNConcentratorProps: ec2.CfnVPNConcentratorProps = {
transitGatewayId: 'transitGatewayId',
type: 'type',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| transit | string | The ID of the transit gateway. |
| type | string | The type of VPN concentrator. |
| tags? | Cfn[] | Any tags assigned to the VPN concentrator. |
transitGatewayId
Type:
string
The ID of the transit gateway.
type
Type:
string
The type of VPN concentrator.
tags?
Type:
Cfn[]
(optional)
Any tags assigned to the VPN concentrator.

.NET
Go
Java
Python
TypeScript