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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClientVpnEndpoint.ClientConnectOptionsPropertystatic final classAn implementation forCfnClientVpnEndpoint.ClientConnectOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Indicates whether client connect options are enabled.The default is
false(not enabled).Returns union: either
BooleanorIResolvable- See Also:
-
getLambdaFunctionArn
The Amazon Resource Name (ARN) of the AWS Lambda function used for connection authorization.- See Also:
-
builder
-