Class: Aws::TranscribeService::Types::ContentRedaction

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-transcribeservice/types.rb

Overview

Makes it possible to redact or flag specified personally identifiable information (PII) in your transcript. If you use ‘ContentRedaction`, you must also include the sub-parameters: `PiiEntityTypes`, `RedactionOutput`, and `RedactionType`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#pii_entity_typesArray<String>

Specify which types of personally identifiable information (PII) you want to redact in your transcript. You can include as many types as you’d like, or you can select ‘ALL`.

Returns:

  • (Array<String>)


576
577
578
579
580
581
582
# File 'lib/aws-sdk-transcribeservice/types.rb', line 576

class ContentRedaction < Struct.new(
  :redaction_type,
  :redaction_output,
  :pii_entity_types)
  SENSITIVE = []
  include Aws::Structure
end

#redaction_outputString

Specify if you want only a redacted transcript, or if you want a redacted and an unredacted transcript.

When you choose ‘redacted` Amazon Transcribe creates only a redacted transcript.

When you choose ‘redacted_and_unredacted` Amazon Transcribe creates a redacted and an unredacted transcript (as two separate files).

Returns:

  • (String)


576
577
578
579
580
581
582
# File 'lib/aws-sdk-transcribeservice/types.rb', line 576

class ContentRedaction < Struct.new(
  :redaction_type,
  :redaction_output,
  :pii_entity_types)
  SENSITIVE = []
  include Aws::Structure
end

#redaction_typeString

Specify the category of information you want to redact; ‘PII` (personally identifiable information) is the only valid value. You can use `PiiEntityTypes` to choose which types of PII you want to redact.

Returns:

  • (String)


576
577
578
579
580
581
582
# File 'lib/aws-sdk-transcribeservice/types.rb', line 576

class ContentRedaction < Struct.new(
  :redaction_type,
  :redaction_output,
  :pii_entity_types)
  SENSITIVE = []
  include Aws::Structure
end