public static interface CfnClientVpnEndpoint.ConnectionLogOptionsProperty
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 java.lang.String |
getCloudwatchLogGroup()
The name of the CloudWatch Logs log group.
|
default java.lang.String |
getCloudwatchLogStream()
The name of the CloudWatch Logs log stream to which the connection data is published.
|
java.lang.Object |
getEnabled()
Indicates whether connection logging is enabled.
|
java.lang.Object getEnabled()
default java.lang.String getCloudwatchLogGroup()
Required if connection logging is enabled.
default java.lang.String getCloudwatchLogStream()
static CfnClientVpnEndpoint.ConnectionLogOptionsProperty.Builder builder()