Interface CfnLoggingConfiguration.LoggingConfigurationProperty

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

@Stability(Stable) public static interface CfnLoggingConfiguration.LoggingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Defines how AWS Network Firewall performs logging for a Firewall .

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.networkfirewall.*;
 LoggingConfigurationProperty loggingConfigurationProperty = LoggingConfigurationProperty.builder()
         .logDestinationConfigs(List.of(LogDestinationConfigProperty.builder()
                 .logDestination(Map.of(
                         "logDestinationKey", "logDestination"))
                 .logDestinationType("logDestinationType")
                 .logType("logType")
                 .build()))
         .build();
 

See Also: