Class: Aws::TranscribeService::Types::TranscriptFilter

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

Overview

Flag the presence or absence of specific words or phrases detected in your Call Analytics transcription output.

Rules using ‘TranscriptFilter` are designed to match:

  • Custom words or phrases spoken by the agent, the customer, or both

  • Custom words or phrases not spoken by the agent, the customer, or either

  • Custom words or phrases that occur at a specific time frame

See [Rule criteria for post-call categories] and [Rule criteria for streaming categories] for usage examples.

[1]: docs.aws.amazon.com/transcribe/latest/dg/tca-categories-batch.html#tca-rules-batch [2]: docs.aws.amazon.com/transcribe/latest/dg/tca-categories-stream.html#tca-rules-stream

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#absolute_time_rangeTypes::AbsoluteTimeRange

Makes it possible to specify a time range (in milliseconds) in your audio, during which you want to search for the specified key words or phrases. See for more detail.



4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
# File 'lib/aws-sdk-transcribeservice/types.rb', line 4453

class TranscriptFilter < Struct.new(
  :transcript_filter_type,
  :absolute_time_range,
  :relative_time_range,
  :participant_role,
  :negate,
  :targets)
  SENSITIVE = []
  include Aws::Structure
end

#negateBoolean

Set to ‘TRUE` to flag the absence of the phrase that you specified in your request. Set to `FALSE` to flag the presence of the phrase that you specified in your request.

Returns:

  • (Boolean)


4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
# File 'lib/aws-sdk-transcribeservice/types.rb', line 4453

class TranscriptFilter < Struct.new(
  :transcript_filter_type,
  :absolute_time_range,
  :relative_time_range,
  :participant_role,
  :negate,
  :targets)
  SENSITIVE = []
  include Aws::Structure
end

#participant_roleString

Specify the participant that you want to flag. Omitting this parameter is equivalent to specifying both participants.

Returns:

  • (String)


4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
# File 'lib/aws-sdk-transcribeservice/types.rb', line 4453

class TranscriptFilter < Struct.new(
  :transcript_filter_type,
  :absolute_time_range,
  :relative_time_range,
  :participant_role,
  :negate,
  :targets)
  SENSITIVE = []
  include Aws::Structure
end

#relative_time_rangeTypes::RelativeTimeRange

Makes it possible to specify a time range (in percentage) in your media file, during which you want to search for the specified key words or phrases. See for more detail.



4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
# File 'lib/aws-sdk-transcribeservice/types.rb', line 4453

class TranscriptFilter < Struct.new(
  :transcript_filter_type,
  :absolute_time_range,
  :relative_time_range,
  :participant_role,
  :negate,
  :targets)
  SENSITIVE = []
  include Aws::Structure
end

#targetsArray<String>

Specify the phrases that you want to flag.

Returns:

  • (Array<String>)


4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
# File 'lib/aws-sdk-transcribeservice/types.rb', line 4453

class TranscriptFilter < Struct.new(
  :transcript_filter_type,
  :absolute_time_range,
  :relative_time_range,
  :participant_role,
  :negate,
  :targets)
  SENSITIVE = []
  include Aws::Structure
end

#transcript_filter_typeString

Flag the presence or absence of an exact match to the phrases that you specify. For example, if you specify the phrase “speak to a manager” as your ‘Targets` value, only that exact phrase is flagged.

Note that semantic matching is not supported. For example, if your customer says “speak to the manager”, instead of “speak to a manager”, your content is not flagged.

Returns:

  • (String)


4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
# File 'lib/aws-sdk-transcribeservice/types.rb', line 4453

class TranscriptFilter < Struct.new(
  :transcript_filter_type,
  :absolute_time_range,
  :relative_time_range,
  :participant_role,
  :negate,
  :targets)
  SENSITIVE = []
  include Aws::Structure
end