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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLoggingConfiguration.LoggingConfigurationPropertystatic final classAn 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.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnLoggingConfiguration.LogDestinationConfigProperty>- See Also:
-
builder
-