Class: Aws::CleanRoomsML::Types::LogRedactionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::LogRedactionConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cleanroomsml/types.rb
Overview
The configuration for log redaction.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_entity_config ⇒ Types::CustomEntityConfig
Specifies the configuration for custom entities in the context of log redaction.
-
#entities_to_redact ⇒ Array<String>
Specifies the entities to be redacted from logs.
Instance Attribute Details
#custom_entity_config ⇒ Types::CustomEntityConfig
Specifies the configuration for custom entities in the context of log redaction.
4524 4525 4526 4527 4528 4529 |
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 4524 class LogRedactionConfiguration < Struct.new( :entities_to_redact, :custom_entity_config) SENSITIVE = [] include Aws::Structure end |
#entities_to_redact ⇒ Array<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.
4524 4525 4526 4527 4528 4529 |
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 4524 class LogRedactionConfiguration < Struct.new( :entities_to_redact, :custom_entity_config) SENSITIVE = [] include Aws::Structure end |