Interface CfnClientVpnEndpointPropsMixin.ConnectionLogOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClientVpnEndpointPropsMixin.ConnectionLogOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnClientVpnEndpointPropsMixin
@Stability(Stable)
public static interface CfnClientVpnEndpointPropsMixin.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.cfnpropertymixins.services.ec2.*;
ConnectionLogOptionsProperty connectionLogOptionsProperty = ConnectionLogOptionsProperty.builder()
.cloudwatchLogGroup("cloudwatchLogGroup")
.cloudwatchLogStream("cloudwatchLogStream")
.enabled(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnClientVpnEndpointPropsMixin.ConnectionLogOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudwatchLogGroup
The name of the CloudWatch Logs log group.Required if connection logging is enabled.
- See Also:
-
getCloudwatchLogStream
The name of the CloudWatch Logs log stream to which the connection data is published.- See Also:
-
getEnabled
Indicates whether connection logging is enabled.Returns union: either
BooleanorIResolvable- See Also:
-
builder
@Stability(Stable) static CfnClientVpnEndpointPropsMixin.ConnectionLogOptionsProperty.Builder builder()
-