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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cleanroomsml/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>)


1799
1800
1801
1802
1803
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 1799

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