Interface CfnVPNConnection.VpnTunnelLogOptionsSpecificationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVPNConnection.VpnTunnelLogOptionsSpecificationProperty.Jsii$Proxy
Enclosing class:
CfnVPNConnection

@Stability(Stable) public static interface CfnVPNConnection.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.services.ec2.*;
 VpnTunnelLogOptionsSpecificationProperty vpnTunnelLogOptionsSpecificationProperty = VpnTunnelLogOptionsSpecificationProperty.builder()
         .cloudwatchLogOptions(CloudwatchLogOptionsSpecificationProperty.builder()
                 .logEnabled(false)
                 .logGroupArn("logGroupArn")
                 .logOutputFormat("logOutputFormat")
                 .build())
         .build();
 

See Also: