interface ClientVpnEndpointAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.ClientVpnEndpointAttributes |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#ClientVpnEndpointAttributes |
Java | software.amazon.awscdk.services.ec2.ClientVpnEndpointAttributes |
Python | aws_cdk.aws_ec2.ClientVpnEndpointAttributes |
TypeScript (source) | aws-cdk-lib » aws_ec2 » ClientVpnEndpointAttributes |
Attributes when importing an existing client VPN endpoint.
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';
declare const securityGroup: ec2.SecurityGroup;
const clientVpnEndpointAttributes: ec2.ClientVpnEndpointAttributes = {
endpointId: 'endpointId',
securityGroups: [securityGroup],
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | The endpoint ID. |
| security | ISecurity[] | The security groups associated with the endpoint. |
endpointId
Type:
string
The endpoint ID.
securityGroups
Type:
ISecurity[]
The security groups associated with the endpoint.

.NET
Go
Java
Python
TypeScript (