Interface CfnClientVpnEndpoint.ClientConnectOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnClientVpnEndpoint.ClientConnectOptionsProperty.Jsii$Proxy
Enclosing class:
CfnClientVpnEndpoint

@Stability(Stable) public static interface CfnClientVpnEndpoint.ClientConnectOptionsProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ec2.*;
 ClientConnectOptionsProperty clientConnectOptionsProperty = ClientConnectOptionsProperty.builder()
         .enabled(false)
         // the properties below are optional
         .lambdaFunctionArn("lambdaFunctionArn")
         .build();
 

See Also: