Class: Aws::CleanRoomsML::Types::LogRedactionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::LogRedactionConfiguration
- 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
-
#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.
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_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.
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 |