Interface CfnLoggingConfigurationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLoggingConfigurationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.808Z")
@Stability(Stable)
public interface CfnLoggingConfigurationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnLoggingConfigurationPropsMixin.
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.networkfirewall.*;
CfnLoggingConfigurationMixinProps cfnLoggingConfigurationMixinProps = CfnLoggingConfigurationMixinProps.builder()
.enableMonitoringDashboard(false)
.firewallArn("firewallArn")
.firewallName("firewallName")
.loggingConfiguration(LoggingConfigurationProperty.builder()
.logDestinationConfigs(List.of(LogDestinationConfigProperty.builder()
.logDestination(Map.of(
"logDestinationKey", "logDestination"))
.logDestinationType("logDestinationType")
.logType("logType")
.build()))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLoggingConfigurationMixinPropsstatic final classAn implementation forCfnLoggingConfigurationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherBooleanorIResolvabledefault ObjectThe Amazon Resource Name (ARN) of the firewallthat the logging configuration is associated with.default StringThe name of the firewall that the logging configuration is associated with.default ObjectDefines how AWS Network Firewall performs logging for a firewall.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnableMonitoringDashboard
Returns union: eitherBooleanorIResolvable- See Also:
-
getFirewallArn
The Amazon Resource Name (ARN) of the firewallthat the logging configuration is associated with.You can't change the firewall specification after you create the logging configuration.
Returns union: either
StringorIFirewallRef- See Also:
-
getFirewallName
The name of the firewall that the logging configuration is associated with.You can't change the firewall specification after you create the logging configuration.
- See Also:
-
getLoggingConfiguration
Defines how AWS Network Firewall performs logging for a firewall.Returns union: either
IResolvableorCfnLoggingConfigurationPropsMixin.LoggingConfigurationProperty- See Also:
-
builder
-