@Stability(value=Stable)
public static interface CfnClientVpnEndpoint.ConnectionLogOptionsProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnClientVpnEndpoint.ConnectionLogOptionsProperty.Builder
A builder for
CfnClientVpnEndpoint.ConnectionLogOptionsProperty |
static class |
CfnClientVpnEndpoint.ConnectionLogOptionsProperty.Jsii$Proxy
An implementation for
CfnClientVpnEndpoint.ConnectionLogOptionsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnClientVpnEndpoint.ConnectionLogOptionsProperty.Builder |
builder() |
default String |
getCloudwatchLogGroup()
The name of the CloudWatch Logs log group.
|
default String |
getCloudwatchLogStream()
The name of the CloudWatch Logs log stream to which the connection data is published.
|
Object |
getEnabled()
Indicates whether connection logging is enabled.
|
@Stability(value=Stable) @NotNull Object getEnabled()
@Stability(value=Stable) @Nullable default String getCloudwatchLogGroup()
Required if connection logging is enabled.
@Stability(value=Stable) @Nullable default String getCloudwatchLogStream()
@Stability(value=Stable) static CfnClientVpnEndpoint.ConnectionLogOptionsProperty.Builder builder()
Copyright © 2022. All rights reserved.