interface ClientConnectOptionsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EC2.CfnClientVpnEndpoint.ClientConnectOptionsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnClientVpnEndpoint_ClientConnectOptionsProperty |
![]() | software.amazon.awscdk.services.ec2.CfnClientVpnEndpoint.ClientConnectOptionsProperty |
![]() | aws_cdk.aws_ec2.CfnClientVpnEndpoint.ClientConnectOptionsProperty |
![]() | 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
Name | Type | Description |
---|---|---|
enabled | boolean | IResolvable | Indicates whether client connect options are enabled. |
lambda | string | The 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.