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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLoggingConfiguration.LoggingConfigurationPropertystatic final classAn implementation forCfnLoggingConfiguration.LoggingConfigurationProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()Defines the logging destinations for the logs for a firewall.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getLogDestinationConfigsDefines the logging destinations for the logs for a firewall.Network Firewall generates logs for stateful rule groups. 
- 
builder
 
-