interface ClientVpnEndpointAttributes
This page is available in another version. Click here for the v2 documentation.
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EC2.ClientVpnEndpointAttributes |
![]() | software.amazon.awscdk.services.ec2.ClientVpnEndpointAttributes |
![]() | aws_cdk.aws_ec2.ClientVpnEndpointAttributes |
![]() | @aws-cdk/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 * as ec2 from '@aws-cdk/aws-ec2';
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.