Interface CfnVPNConnectionPropsMixin.VpnTunnelLogOptionsSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVPNConnectionPropsMixin.VpnTunnelLogOptionsSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnVPNConnectionPropsMixin
@Stability(Stable)
public static interface CfnVPNConnectionPropsMixin.VpnTunnelLogOptionsSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
Options for logging VPN tunnel activity.
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.*;
VpnTunnelLogOptionsSpecificationProperty vpnTunnelLogOptionsSpecificationProperty = VpnTunnelLogOptionsSpecificationProperty.builder()
.cloudwatchLogOptions(CloudwatchLogOptionsSpecificationProperty.builder()
.bgpLogEnabled(false)
.bgpLogGroupArn("bgpLogGroupArn")
.bgpLogOutputFormat("bgpLogOutputFormat")
.logEnabled(false)
.logGroupArn("logGroupArn")
.logOutputFormat("logOutputFormat")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnVPNConnectionPropsMixin.VpnTunnelLogOptionsSpecificationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudwatchLogOptions
Options for sending VPN tunnel logs to CloudWatch.Returns union: either
IResolvableorCfnVPNConnectionPropsMixin.CloudwatchLogOptionsSpecificationProperty- See Also:
-
builder
@Stability(Stable) static CfnVPNConnectionPropsMixin.VpnTunnelLogOptionsSpecificationProperty.Builder builder()
-