import { _FieldToMatch, _UnmarshalledFieldToMatch } from "./_FieldToMatch"; /** *

The Amazon Kinesis Data Firehose, RedactedFields information, and the web ACL Amazon Resource Name (ARN).

*/ export interface _LoggingConfiguration { /** *

The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.

*/ ResourceArn: string; /** *

An array of Amazon Kinesis Data Firehose ARNs.

*/ LogDestinationConfigs: Array | Iterable; /** *

The parts of the request that you want redacted from the logs. For example, if you redact the cookie field, the cookie field in the firehose will be xxx.

*/ RedactedFields?: Array<_FieldToMatch> | Iterable<_FieldToMatch>; } export interface _UnmarshalledLoggingConfiguration extends _LoggingConfiguration { /** *

An array of Amazon Kinesis Data Firehose ARNs.

*/ LogDestinationConfigs: Array; /** *

The parts of the request that you want redacted from the logs. For example, if you redact the cookie field, the cookie field in the firehose will be xxx.

*/ RedactedFields?: Array<_UnmarshalledFieldToMatch>; }