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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnClientVpnEndpoint.ConnectionLogOptionsProperty
static final class
An implementation forCfnClientVpnEndpoint.ConnectionLogOptionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Indicates whether connection logging is enabled. -
getCloudwatchLogGroup
The name of the CloudWatch Logs log group.Required if connection logging is enabled.
-
getCloudwatchLogStream
The name of the CloudWatch Logs log stream to which the connection data is published. -
builder
-