Class: Aws::Comprehend::Types::RedactionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::RedactionConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Provides configuration parameters for PII entity redaction.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mask_character ⇒ String
A character that replaces each character in the redacted PII entity.
-
#mask_mode ⇒ String
Specifies whether the PII entity is redacted with the mask character or the entity type.
-
#pii_entity_types ⇒ Array<String>
An array of the types of PII entities that Amazon Comprehend detects in the input text for your request.
Instance Attribute Details
#mask_character ⇒ String
A character that replaces each character in the redacted PII entity.
6430 6431 6432 6433 6434 6435 6436 |
# File 'lib/aws-sdk-comprehend/types.rb', line 6430 class RedactionConfig < Struct.new( :pii_entity_types, :mask_mode, :mask_character) SENSITIVE = [] include Aws::Structure end |
#mask_mode ⇒ String
Specifies whether the PII entity is redacted with the mask character or the entity type.
6430 6431 6432 6433 6434 6435 6436 |
# File 'lib/aws-sdk-comprehend/types.rb', line 6430 class RedactionConfig < Struct.new( :pii_entity_types, :mask_mode, :mask_character) SENSITIVE = [] include Aws::Structure end |
#pii_entity_types ⇒ Array<String>
An array of the types of PII entities that Amazon Comprehend detects in the input text for your request.
6430 6431 6432 6433 6434 6435 6436 |
# File 'lib/aws-sdk-comprehend/types.rb', line 6430 class RedactionConfig < Struct.new( :pii_entity_types, :mask_mode, :mask_character) SENSITIVE = [] include Aws::Structure end |