interface CfnLoggingConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NetworkFirewall.CfnLoggingConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnetworkfirewall#CfnLoggingConfigurationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.networkfirewall.CfnLoggingConfigurationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_networkfirewall.CfnLoggingConfigurationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_networkfirewall » CfnLoggingConfigurationMixinProps |
Properties for CfnLoggingConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_networkfirewall as networkfirewall } from '@aws-cdk/cfn-property-mixins';
const cfnLoggingConfigurationMixinProps: networkfirewall.CfnLoggingConfigurationMixinProps = {
enableMonitoringDashboard: false,
firewallArn: 'firewallArn',
firewallName: 'firewallName',
loggingConfiguration: {
logDestinationConfigs: [{
logDestination: {
logDestinationKey: 'logDestination',
},
logDestinationType: 'logDestinationType',
logType: 'logType',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| enable | boolean | IResolvable | |
| firewall | string | IFirewall | The Amazon Resource Name (ARN) of the firewallthat the logging configuration is associated with. |
| firewall | string | The name of the firewall that the logging configuration is associated with. |
| logging | IResolvable | Logging | Defines how AWS Network Firewall performs logging for a firewall. |
enableMonitoringDashboard?
Type:
boolean | IResolvable
(optional)
firewallArn?
Type:
string | IFirewall
(optional)
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.
firewallName?
Type:
string
(optional)
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.
loggingConfiguration?
Type:
IResolvable | Logging
(optional)
Defines how AWS Network Firewall performs logging for a firewall.

.NET
Go
Java
Python
TypeScript