aws-cdk-lib.aws_networkfirewall.CfnLoggingConfigurationProps

interface CfnLoggingConfigurationProps

LanguageType name
.NETAmazon.CDK.AWS.NetworkFirewall.CfnLoggingConfigurationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsnetworkfirewall#CfnLoggingConfigurationProps
Javasoftware.amazon.awscdk.services.networkfirewall.CfnLoggingConfigurationProps
Pythonaws_cdk.aws_networkfirewall.CfnLoggingConfigurationProps
TypeScript aws-cdk-lib » aws_networkfirewall » CfnLoggingConfigurationProps

Properties for defining a CfnLoggingConfiguration.

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-lib';
const cfnLoggingConfigurationProps: networkfirewall.CfnLoggingConfigurationProps = {
  firewallArn: 'firewallArn',
  loggingConfiguration: {
    logDestinationConfigs: [{
      logDestination: {
        logDestinationKey: 'logDestination',
      },
      logDestinationType: 'logDestinationType',
      logType: 'logType',
    }],
  },

  // the properties below are optional
  firewallName: 'firewallName',
};

Properties

NameTypeDescription
firewallArnstringThe Amazon Resource Name (ARN) of the Firewall that the logging configuration is associated with.
loggingConfigurationIResolvable | LoggingConfigurationPropertyDefines how AWS Network Firewall performs logging for a Firewall .
firewallName?stringThe name of the firewall that the logging configuration is associated with.

firewallArn

Type: string

The Amazon Resource Name (ARN) 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 | LoggingConfigurationProperty

Defines how AWS Network Firewall performs logging for a Firewall .


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.