Interface CfnClientVpnEndpoint.ConnectionLogOptionsProperty

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

@Stability(Stable) public static interface CfnClientVpnEndpoint.ConnectionLogOptionsProperty extends software.amazon.jsii.JsiiSerializable
Describes the client connection logging options for the Client VPN endpoint.

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.*;
 ConnectionLogOptionsProperty connectionLogOptionsProperty = ConnectionLogOptionsProperty.builder()
         .enabled(false)
         // the properties below are optional
         .cloudwatchLogGroup("cloudwatchLogGroup")
         .cloudwatchLogStream("cloudwatchLogStream")
         .build();
 

See Also: