interface ClientConnectOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnClientVpnEndpointPropsMixin.ClientConnectOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnClientVpnEndpointPropsMixin_ClientConnectOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnClientVpnEndpointPropsMixin.ClientConnectOptionsProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnClientVpnEndpointPropsMixin.ClientConnectOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnClientVpnEndpointPropsMixin » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const clientConnectOptionsProperty: ec2_mixins.CfnClientVpnEndpointPropsMixin.ClientConnectOptionsProperty = {
enabled: false,
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
(optional)
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.

.NET
Go
Java
Python
TypeScript