CfnLoggingConfigurationMixinProps
- class aws_cdk.mixins_preview.aws_networkfirewall.mixins.CfnLoggingConfigurationMixinProps(*, enable_monitoring_dashboard=None, firewall_arn=None, firewall_name=None, logging_configuration=None)
Bases:
objectProperties for CfnLoggingConfigurationPropsMixin.
- Parameters:
enable_monitoring_dashboard (
Union[bool,IResolvable,None])firewall_arn (
Optional[str]) – 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.firewall_name (
Optional[str]) – 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.logging_configuration (
Union[IResolvable,LoggingConfigurationProperty,Dict[str,Any],None]) – Defines how AWS Network Firewall performs logging for a firewall.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_networkfirewall import mixins as networkfirewall_mixins cfn_logging_configuration_mixin_props = networkfirewall_mixins.CfnLoggingConfigurationMixinProps( enable_monitoring_dashboard=False, firewall_arn="firewallArn", firewall_name="firewallName", logging_configuration=networkfirewall_mixins.CfnLoggingConfigurationPropsMixin.LoggingConfigurationProperty( log_destination_configs=[networkfirewall_mixins.CfnLoggingConfigurationPropsMixin.LogDestinationConfigProperty( log_destination={ "log_destination_key": "logDestination" }, log_destination_type="logDestinationType", log_type="logType" )] ) )
Attributes
- enable_monitoring_dashboard
-
- Type:
see
- firewall_arn
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.
- firewall_name
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.
- logging_configuration
Defines how AWS Network Firewall performs logging for a firewall.