Class: Aws::CleanRoomsML::Types::CustomEntityConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cleanroomsml/types.rb

Overview

The configuration for defining custom patterns to be redacted from logs and error messages. This is for the CUSTOM config under entitiesToRedact. Both CustomEntityConfig and entitiesToRedact need to be present or not present.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#custom_data_identifiersArray<String>

Defines data identifiers for the custom entity configuration. Provide this only if CUSTOM redaction is configured.

Returns:

  • (Array<String>)


1846
1847
1848
1849
1850
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 1846

class CustomEntityConfig < Struct.new(
  :custom_data_identifiers)
  SENSITIVE = []
  include Aws::Structure
end