Class: Aws::LexModelsV2::Types::SpeakerDiarizationSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::SpeakerDiarizationSettings
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Specifies configuration that restricts speech detection to the primary (loudest) speaker during streaming audio conversations, so that speech from background speakers does not start a turn, interrupt the bot, or reach speech recognition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Specifies whether speaker diarization is enabled for the bot locale.
Instance Attribute Details
#enabled ⇒ Boolean
Specifies whether speaker diarization is enabled for the bot locale.
Set to true to have Amazon Lex treat speech from speakers other
than the primary speaker as non-speech. Set to false to disable
speaker diarization and rely on voice activity detection alone.
13497 13498 13499 13500 13501 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 13497 class SpeakerDiarizationSettings < Struct.new( :enabled) SENSITIVE = [] include Aws::Structure end |