Interface CfnVPNConnectionPropsMixin.CloudwatchLogOptionsSpecificationProperty

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

@Stability(Stable) public static interface CfnVPNConnectionPropsMixin.CloudwatchLogOptionsSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Options for sending VPN tunnel logs to CloudWatch.

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.*;
 CloudwatchLogOptionsSpecificationProperty cloudwatchLogOptionsSpecificationProperty = CloudwatchLogOptionsSpecificationProperty.builder()
         .bgpLogEnabled(false)
         .bgpLogGroupArn("bgpLogGroupArn")
         .bgpLogOutputFormat("bgpLogOutputFormat")
         .logEnabled(false)
         .logGroupArn("logGroupArn")
         .logOutputFormat("logOutputFormat")
         .build();
 

See Also: