interface CfnLoggingConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkFirewall.Mixins.CfnLoggingConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkfirewall/mixins#CfnLoggingConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.networkfirewall.mixins.CfnLoggingConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_networkfirewall.mixins.CfnLoggingConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_networkfirewall » mixins » 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 { mixins as networkfirewall_mixins } from '@aws-cdk/mixins-preview/aws-networkfirewall';
const cfnLoggingConfigurationMixinProps: networkfirewall_mixins.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 | 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
(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