aws-cdk-lib.aws_ec2.ClientVpnEndpointAttributes

interface ClientVpnEndpointAttributes

LanguageType name
.NETAmazon.CDK.AWS.EC2.ClientVpnEndpointAttributes
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#ClientVpnEndpointAttributes
Javasoftware.amazon.awscdk.services.ec2.ClientVpnEndpointAttributes
Pythonaws_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

NameTypeDescription
endpointIdstringThe endpoint ID.
securityGroupsISecurityGroup[]The security groups associated with the endpoint.

endpointId

Type: string

The endpoint ID.


securityGroups

Type: ISecurityGroup[]

The security groups associated with the endpoint.