Class: Aws::Connect::Types::RedactionConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#behaviorString

Controls whether redaction is applied to the analytics output. Valid values: Enable | Disable.

Returns:

  • (String)


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

#entitiesArray<String>

The list of PII entity types to redact from the transcript (for example, NAME, ADDRESS, CREDIT_DEBIT_NUMBER).

Returns:

  • (Array<String>)


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_modeString

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]).

Returns:

  • (String)


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

#policyString

The redaction output policy that determines which versions of the transcript are stored. Valid values: None | RedactedOnly | RedactedAndOriginal.

Returns:

  • (String)


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