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.
6484 6485 6486 6487 6488 6489 6490 |
# File 'lib/aws-sdk-comprehend/types.rb', line 6484 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.
6484 6485 6486 6487 6488 6489 6490 |
# File 'lib/aws-sdk-comprehend/types.rb', line 6484 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.
6484 6485 6486 6487 6488 6489 6490 |
# File 'lib/aws-sdk-comprehend/types.rb', line 6484 class RedactionConfig < Struct.new( :pii_entity_types, :mask_mode, :mask_character) SENSITIVE = [] include Aws::Structure end |