aws-cdk-lib.aws_ec2.CfnClientVpnEndpoint.ClientConnectOptionsProperty

interface ClientConnectOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnClientVpnEndpoint.ClientConnectOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnClientVpnEndpoint_ClientConnectOptionsProperty
Javasoftware.amazon.awscdk.services.ec2.CfnClientVpnEndpoint.ClientConnectOptionsProperty
Pythonaws_cdk.aws_ec2.CfnClientVpnEndpoint.ClientConnectOptionsProperty
TypeScript aws-cdk-lib » aws_ec2 » CfnClientVpnEndpoint » ClientConnectOptionsProperty

Indicates whether client connect options are enabled.

The default is false (not enabled).

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 clientConnectOptionsProperty: ec2.CfnClientVpnEndpoint.ClientConnectOptionsProperty = {
  enabled: false,

  // the properties below are optional
  lambdaFunctionArn: 'lambdaFunctionArn',
};

Properties

NameTypeDescription
enabledboolean | IResolvableIndicates whether client connect options are enabled.
lambdaFunctionArn?stringThe Amazon Resource Name (ARN) of the AWS Lambda function used for connection authorization.

enabled

Type: boolean | IResolvable

Indicates whether client connect options are enabled.

The default is false (not enabled).


lambdaFunctionArn?

Type: string (optional)

The Amazon Resource Name (ARN) of the AWS Lambda function used for connection authorization.