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 Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnLoggingConfiguration.LoggingConfigurationProperty
static final class
An implementation forCfnLoggingConfiguration.LoggingConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Defines the logging destinations for the logs for a firewall.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLogDestinationConfigs
Defines the logging destinations for the logs for a firewall.Network Firewall generates logs for stateful rule groups.
-
builder
-