interface ClientVpnEndpointAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EC2.ClientVpnEndpointAttributes |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#ClientVpnEndpointAttributes |
![]() | software.amazon.awscdk.services.ec2.ClientVpnEndpointAttributes |
![]() | aws_cdk.aws_ec2.ClientVpnEndpointAttributes |
![]() | 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.