Class: Aws::Connect::Types::RedactionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::RedactionConfiguration
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
The redaction configuration for conversational analytics.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#behavior ⇒ String
Controls whether redaction is applied to the analytics output.
-
#entities ⇒ Array<String>
The list of PII entity types to redact from the transcript (for example,
NAME,ADDRESS,CREDIT_DEBIT_NUMBER). -
#mask_mode ⇒ String
The masking mode that determines how redacted content is replaced in the output.
-
#policy ⇒ String
The redaction output policy that determines which versions of the transcript are stored.
Instance Attribute Details
#behavior ⇒ String
Controls whether redaction is applied to the analytics output. Valid
values: Enable | Disable.
28017 28018 28019 28020 28021 28022 28023 28024 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 28017 class RedactionConfiguration < Struct.new( :behavior, :policy, :entities, :mask_mode) SENSITIVE = [] include Aws::Structure end |
#entities ⇒ Array<String>
The list of PII entity types to redact from the transcript (for
example, NAME, ADDRESS, CREDIT_DEBIT_NUMBER).
28017 28018 28019 28020 28021 28022 28023 28024 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 28017 class RedactionConfiguration < Struct.new( :behavior, :policy, :entities, :mask_mode) SENSITIVE = [] include Aws::Structure end |
#mask_mode ⇒ String
The masking mode that determines how redacted content is replaced in
the output. Valid values: PII (replaces with the literal string
[PII]) | EntityType (replaces with the entity type name, for
example [NAME]).
28017 28018 28019 28020 28021 28022 28023 28024 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 28017 class RedactionConfiguration < Struct.new( :behavior, :policy, :entities, :mask_mode) SENSITIVE = [] include Aws::Structure end |
#policy ⇒ String
The redaction output policy that determines which versions of the
transcript are stored. Valid values: None | RedactedOnly |
RedactedAndOriginal.
28017 28018 28019 28020 28021 28022 28023 28024 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 28017 class RedactionConfiguration < Struct.new( :behavior, :policy, :entities, :mask_mode) SENSITIVE = [] include Aws::Structure end |