Class: Aws::CleanRoomsML::Types::LogRedactionConfiguration

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

Overview

The configuration for log redaction.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#custom_entity_configTypes::CustomEntityConfig

Specifies the configuration for custom entities in the context of log redaction.



4439
4440
4441
4442
4443
4444
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 4439

class LogRedactionConfiguration < Struct.new(
  :entities_to_redact,
  :custom_entity_config)
  SENSITIVE = []
  include Aws::Structure
end

#entities_to_redactArray<String>

Specifies the entities to be redacted from logs. Entities to redact are "ALL_PERSONALLY_IDENTIFIABLE_INFORMATION", "NUMBERS","CUSTOM". If CUSTOM is supplied or configured, custom patterns (customDataIdentifiers) should be provided, and the patterns will be redacted in logs or error messages.

Returns:

  • (Array<String>)


4439
4440
4441
4442
4443
4444
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 4439

class LogRedactionConfiguration < Struct.new(
  :entities_to_redact,
  :custom_entity_config)
  SENSITIVE = []
  include Aws::Structure
end