interface ClientConnectOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnClientVpnEndpointPropsMixin.ClientConnectOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnClientVpnEndpointPropsMixin_ClientConnectOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnClientVpnEndpointPropsMixin.ClientConnectOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnClientVpnEndpointPropsMixin.ClientConnectOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const clientConnectOptionsProperty: ec2.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