aws-sdk-lexmodelsv2 1.82.0 → 1.83.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 41e75a5e3f284ba71fb2fcf8d76b085bb72f8694472561252b300ecfec491487
4
- data.tar.gz: 86d6ab1ff74eca708aa3f61ab91e79e82328c9ec52ac29bfa347579fdd65a26a
3
+ metadata.gz: a7b954eda4daa5faa09724b45dad7dfa79aaaca6cdf4ca47e069130c2fcffc06
4
+ data.tar.gz: 95ed68679d49c4ae5726205e73b464310b97e93182fa32c9ce9433b8859d351f
5
5
  SHA512:
6
- metadata.gz: 475cf6a794d101e66f07dbd3c1237a7235f90f93987178689fbd1c6dc4a7321de9c201031f4afed412308c777d7fce7567c477891e7fd4529521059ac4f9cb38
7
- data.tar.gz: bcfc8b6ea0afcafa72aa1bcb86b9a775347257fa0da8f5aea1c71bee8ce5080fa5733daf4a267c2941626a2bcbf321a0cc23a369a5f2de9d8adb80a345e52f65
6
+ metadata.gz: 3c71de8a2fb4a8234c9b299ee6bb9e57e3557b4e1caf8f1733612159f65e5d7628cc7550efa1e4002760335da8fb9c82b7d0bd2a24d6c742ab3580006eb80ed2
7
+ data.tar.gz: 5fdafcd3a75844ed1c624bda8fe1c49b693011d415da09b3bdbdd4a335d1f0ddde5b94c19e8e2ac6378b46e66e6db88936e4ebcaaaf53392045b1d1128623ccc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.83.0 (2025-11-21)
5
+ ------------------
6
+
7
+ * Feature - Adds support for Intent Disambiguation, allowing resolution of ambiguous user inputs when multiple intents match by presenting clarifying questions to users. Also adds Speech Detection Sensitivity configuration for optimizing voice activity detection sensitivity levels in various noise environments.
8
+
4
9
  1.82.0 (2025-11-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.82.0
1
+ 1.83.0
@@ -1078,6 +1078,12 @@ module Aws::LexModelsV2
1078
1078
  # Contains specifications about the generative AI capabilities from
1079
1079
  # Amazon Bedrock that you can turn on for your bot.
1080
1080
  #
1081
+ # @option params [String] :speech_detection_sensitivity
1082
+ # The sensitivity level for voice activity detection (VAD) in the bot
1083
+ # locale. This setting helps optimize speech recognition accuracy by
1084
+ # adjusting how the system responds to background noise during voice
1085
+ # interactions.
1086
+ #
1081
1087
  # @return [Types::CreateBotLocaleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1082
1088
  #
1083
1089
  # * {Types::CreateBotLocaleResponse#bot_id #bot_id} => String
@@ -1090,6 +1096,7 @@ module Aws::LexModelsV2
1090
1096
  # * {Types::CreateBotLocaleResponse#bot_locale_status #bot_locale_status} => String
1091
1097
  # * {Types::CreateBotLocaleResponse#creation_date_time #creation_date_time} => Time
1092
1098
  # * {Types::CreateBotLocaleResponse#generative_ai_settings #generative_ai_settings} => Types::GenerativeAISettings
1099
+ # * {Types::CreateBotLocaleResponse#speech_detection_sensitivity #speech_detection_sensitivity} => String
1093
1100
  #
1094
1101
  # @example Request syntax with placeholder values
1095
1102
  #
@@ -1120,6 +1127,11 @@ module Aws::LexModelsV2
1120
1127
  # nlu_improvement: {
1121
1128
  # enabled: false, # required
1122
1129
  # assisted_nlu_mode: "Primary", # accepts Primary, Fallback
1130
+ # intent_disambiguation_settings: {
1131
+ # enabled: false, # required
1132
+ # max_disambiguation_intents: 1,
1133
+ # custom_disambiguation_message: "CustomDisambiguationMessage",
1134
+ # },
1123
1135
  # },
1124
1136
  # },
1125
1137
  # buildtime_settings: {
@@ -1149,6 +1161,7 @@ module Aws::LexModelsV2
1149
1161
  # },
1150
1162
  # },
1151
1163
  # },
1164
+ # speech_detection_sensitivity: "Default", # accepts Default, HighNoiseTolerance, MaximumNoiseTolerance
1152
1165
  # })
1153
1166
  #
1154
1167
  # @example Response structure
@@ -1171,6 +1184,9 @@ module Aws::LexModelsV2
1171
1184
  # resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.custom_prompt #=> String
1172
1185
  # resp.generative_ai_settings.runtime_settings.nlu_improvement.enabled #=> Boolean
1173
1186
  # resp.generative_ai_settings.runtime_settings.nlu_improvement.assisted_nlu_mode #=> String, one of "Primary", "Fallback"
1187
+ # resp.generative_ai_settings.runtime_settings.nlu_improvement.intent_disambiguation_settings.enabled #=> Boolean
1188
+ # resp.generative_ai_settings.runtime_settings.nlu_improvement.intent_disambiguation_settings.max_disambiguation_intents #=> Integer
1189
+ # resp.generative_ai_settings.runtime_settings.nlu_improvement.intent_disambiguation_settings.custom_disambiguation_message #=> String
1174
1190
  # resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.enabled #=> Boolean
1175
1191
  # resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.model_arn #=> String
1176
1192
  # resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.guardrail.identifier #=> String
@@ -1183,6 +1199,7 @@ module Aws::LexModelsV2
1183
1199
  # resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.guardrail.version #=> String
1184
1200
  # resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.trace_status #=> String, one of "ENABLED", "DISABLED"
1185
1201
  # resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.custom_prompt #=> String
1202
+ # resp.speech_detection_sensitivity #=> String, one of "Default", "HighNoiseTolerance", "MaximumNoiseTolerance"
1186
1203
  #
1187
1204
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateBotLocale AWS API Documentation
1188
1205
  #
@@ -1418,6 +1435,12 @@ module Aws::LexModelsV2
1418
1435
  # The name of the intent. Intent names must be unique in the locale that
1419
1436
  # contains the intent and cannot match the name of any built-in intent.
1420
1437
  #
1438
+ # @option params [String] :intent_display_name
1439
+ # A display name for the intent. If configured, This name will be shown
1440
+ # to users during Intent Disambiguation instead of the intent name.
1441
+ # Display names should be user-friendly, descriptive and match the
1442
+ # intent's purpose to improve user experience during disambiguation.
1443
+ #
1421
1444
  # @option params [String] :description
1422
1445
  # A description of the intent. Use the description to help identify the
1423
1446
  # intent in lists.
@@ -1533,6 +1556,7 @@ module Aws::LexModelsV2
1533
1556
  #
1534
1557
  # * {Types::CreateIntentResponse#intent_id #intent_id} => String
1535
1558
  # * {Types::CreateIntentResponse#intent_name #intent_name} => String
1559
+ # * {Types::CreateIntentResponse#intent_display_name #intent_display_name} => String
1536
1560
  # * {Types::CreateIntentResponse#description #description} => String
1537
1561
  # * {Types::CreateIntentResponse#parent_intent_signature #parent_intent_signature} => String
1538
1562
  # * {Types::CreateIntentResponse#sample_utterances #sample_utterances} => Array<Types::SampleUtterance>
@@ -3584,6 +3608,7 @@ module Aws::LexModelsV2
3584
3608
  # * {Types::DescribeBotLocaleResponse#bot_locale_history_events #bot_locale_history_events} => Array<Types::BotLocaleHistoryEvent>
3585
3609
  # * {Types::DescribeBotLocaleResponse#recommended_actions #recommended_actions} => Array<String>
3586
3610
  # * {Types::DescribeBotLocaleResponse#generative_ai_settings #generative_ai_settings} => Types::GenerativeAISettings
3611
+ # * {Types::DescribeBotLocaleResponse#speech_detection_sensitivity #speech_detection_sensitivity} => String
3587
3612
  #
3588
3613
  # @example Request syntax with placeholder values
3589
3614
  #
@@ -3624,6 +3649,9 @@ module Aws::LexModelsV2
3624
3649
  # resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.custom_prompt #=> String
3625
3650
  # resp.generative_ai_settings.runtime_settings.nlu_improvement.enabled #=> Boolean
3626
3651
  # resp.generative_ai_settings.runtime_settings.nlu_improvement.assisted_nlu_mode #=> String, one of "Primary", "Fallback"
3652
+ # resp.generative_ai_settings.runtime_settings.nlu_improvement.intent_disambiguation_settings.enabled #=> Boolean
3653
+ # resp.generative_ai_settings.runtime_settings.nlu_improvement.intent_disambiguation_settings.max_disambiguation_intents #=> Integer
3654
+ # resp.generative_ai_settings.runtime_settings.nlu_improvement.intent_disambiguation_settings.custom_disambiguation_message #=> String
3627
3655
  # resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.enabled #=> Boolean
3628
3656
  # resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.model_arn #=> String
3629
3657
  # resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.guardrail.identifier #=> String
@@ -3636,6 +3664,7 @@ module Aws::LexModelsV2
3636
3664
  # resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.guardrail.version #=> String
3637
3665
  # resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.trace_status #=> String, one of "ENABLED", "DISABLED"
3638
3666
  # resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.custom_prompt #=> String
3667
+ # resp.speech_detection_sensitivity #=> String, one of "Default", "HighNoiseTolerance", "MaximumNoiseTolerance"
3639
3668
  #
3640
3669
  #
3641
3670
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4061,6 +4090,7 @@ module Aws::LexModelsV2
4061
4090
  # resp.resource_specification.bot_locale_import_specification.nlu_intent_confidence_threshold #=> Float
4062
4091
  # resp.resource_specification.bot_locale_import_specification.voice_settings.voice_id #=> String
4063
4092
  # resp.resource_specification.bot_locale_import_specification.voice_settings.engine #=> String, one of "standard", "neural", "long-form", "generative"
4093
+ # resp.resource_specification.bot_locale_import_specification.speech_detection_sensitivity #=> String, one of "Default", "HighNoiseTolerance", "MaximumNoiseTolerance"
4064
4094
  # resp.resource_specification.custom_vocabulary_import_specification.bot_id #=> String
4065
4095
  # resp.resource_specification.custom_vocabulary_import_specification.bot_version #=> String
4066
4096
  # resp.resource_specification.custom_vocabulary_import_specification.locale_id #=> String
@@ -4122,6 +4152,7 @@ module Aws::LexModelsV2
4122
4152
  #
4123
4153
  # * {Types::DescribeIntentResponse#intent_id #intent_id} => String
4124
4154
  # * {Types::DescribeIntentResponse#intent_name #intent_name} => String
4155
+ # * {Types::DescribeIntentResponse#intent_display_name #intent_display_name} => String
4125
4156
  # * {Types::DescribeIntentResponse#description #description} => String
4126
4157
  # * {Types::DescribeIntentResponse#parent_intent_signature #parent_intent_signature} => String
4127
4158
  # * {Types::DescribeIntentResponse#sample_utterances #sample_utterances} => Array<Types::SampleUtterance>
@@ -6921,6 +6952,7 @@ module Aws::LexModelsV2
6921
6952
  # resp.intent_summaries #=> Array
6922
6953
  # resp.intent_summaries[0].intent_id #=> String
6923
6954
  # resp.intent_summaries[0].intent_name #=> String
6955
+ # resp.intent_summaries[0].intent_display_name #=> String
6924
6956
  # resp.intent_summaries[0].description #=> String
6925
6957
  # resp.intent_summaries[0].parent_intent_signature #=> String
6926
6958
  # resp.intent_summaries[0].input_contexts #=> Array
@@ -8487,6 +8519,7 @@ module Aws::LexModelsV2
8487
8519
  # voice_id: "VoiceId", # required
8488
8520
  # engine: "standard", # accepts standard, neural, long-form, generative
8489
8521
  # },
8522
+ # speech_detection_sensitivity: "Default", # accepts Default, HighNoiseTolerance, MaximumNoiseTolerance
8490
8523
  # },
8491
8524
  # custom_vocabulary_import_specification: {
8492
8525
  # bot_id: "Id", # required
@@ -8534,6 +8567,7 @@ module Aws::LexModelsV2
8534
8567
  # resp.resource_specification.bot_locale_import_specification.nlu_intent_confidence_threshold #=> Float
8535
8568
  # resp.resource_specification.bot_locale_import_specification.voice_settings.voice_id #=> String
8536
8569
  # resp.resource_specification.bot_locale_import_specification.voice_settings.engine #=> String, one of "standard", "neural", "long-form", "generative"
8570
+ # resp.resource_specification.bot_locale_import_specification.speech_detection_sensitivity #=> String, one of "Default", "HighNoiseTolerance", "MaximumNoiseTolerance"
8537
8571
  # resp.resource_specification.custom_vocabulary_import_specification.bot_id #=> String
8538
8572
  # resp.resource_specification.custom_vocabulary_import_specification.bot_version #=> String
8539
8573
  # resp.resource_specification.custom_vocabulary_import_specification.locale_id #=> String
@@ -9111,6 +9145,12 @@ module Aws::LexModelsV2
9111
9145
  # and off. Pricing may differ if you turn a feature on. For more
9112
9146
  # information, see LINK.
9113
9147
  #
9148
+ # @option params [String] :speech_detection_sensitivity
9149
+ # The new sensitivity level for voice activity detection (VAD) in the
9150
+ # bot locale. This setting helps optimize speech recognition accuracy by
9151
+ # adjusting how the system responds to background noise during voice
9152
+ # interactions.
9153
+ #
9114
9154
  # @return [Types::UpdateBotLocaleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9115
9155
  #
9116
9156
  # * {Types::UpdateBotLocaleResponse#bot_id #bot_id} => String
@@ -9126,6 +9166,7 @@ module Aws::LexModelsV2
9126
9166
  # * {Types::UpdateBotLocaleResponse#last_updated_date_time #last_updated_date_time} => Time
9127
9167
  # * {Types::UpdateBotLocaleResponse#recommended_actions #recommended_actions} => Array<String>
9128
9168
  # * {Types::UpdateBotLocaleResponse#generative_ai_settings #generative_ai_settings} => Types::GenerativeAISettings
9169
+ # * {Types::UpdateBotLocaleResponse#speech_detection_sensitivity #speech_detection_sensitivity} => String
9129
9170
  #
9130
9171
  # @example Request syntax with placeholder values
9131
9172
  #
@@ -9156,6 +9197,11 @@ module Aws::LexModelsV2
9156
9197
  # nlu_improvement: {
9157
9198
  # enabled: false, # required
9158
9199
  # assisted_nlu_mode: "Primary", # accepts Primary, Fallback
9200
+ # intent_disambiguation_settings: {
9201
+ # enabled: false, # required
9202
+ # max_disambiguation_intents: 1,
9203
+ # custom_disambiguation_message: "CustomDisambiguationMessage",
9204
+ # },
9159
9205
  # },
9160
9206
  # },
9161
9207
  # buildtime_settings: {
@@ -9185,6 +9231,7 @@ module Aws::LexModelsV2
9185
9231
  # },
9186
9232
  # },
9187
9233
  # },
9234
+ # speech_detection_sensitivity: "Default", # accepts Default, HighNoiseTolerance, MaximumNoiseTolerance
9188
9235
  # })
9189
9236
  #
9190
9237
  # @example Response structure
@@ -9212,6 +9259,9 @@ module Aws::LexModelsV2
9212
9259
  # resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.custom_prompt #=> String
9213
9260
  # resp.generative_ai_settings.runtime_settings.nlu_improvement.enabled #=> Boolean
9214
9261
  # resp.generative_ai_settings.runtime_settings.nlu_improvement.assisted_nlu_mode #=> String, one of "Primary", "Fallback"
9262
+ # resp.generative_ai_settings.runtime_settings.nlu_improvement.intent_disambiguation_settings.enabled #=> Boolean
9263
+ # resp.generative_ai_settings.runtime_settings.nlu_improvement.intent_disambiguation_settings.max_disambiguation_intents #=> Integer
9264
+ # resp.generative_ai_settings.runtime_settings.nlu_improvement.intent_disambiguation_settings.custom_disambiguation_message #=> String
9215
9265
  # resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.enabled #=> Boolean
9216
9266
  # resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.model_arn #=> String
9217
9267
  # resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.guardrail.identifier #=> String
@@ -9224,6 +9274,7 @@ module Aws::LexModelsV2
9224
9274
  # resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.guardrail.version #=> String
9225
9275
  # resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.trace_status #=> String, one of "ENABLED", "DISABLED"
9226
9276
  # resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.custom_prompt #=> String
9277
+ # resp.speech_detection_sensitivity #=> String, one of "Default", "HighNoiseTolerance", "MaximumNoiseTolerance"
9227
9278
  #
9228
9279
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/UpdateBotLocale AWS API Documentation
9229
9280
  #
@@ -9383,6 +9434,9 @@ module Aws::LexModelsV2
9383
9434
  # @option params [required, String] :intent_name
9384
9435
  # The new name for the intent.
9385
9436
  #
9437
+ # @option params [String] :intent_display_name
9438
+ # The new display name for the intent.
9439
+ #
9386
9440
  # @option params [String] :description
9387
9441
  # The new description of the intent.
9388
9442
  #
@@ -9456,6 +9510,7 @@ module Aws::LexModelsV2
9456
9510
  #
9457
9511
  # * {Types::UpdateIntentResponse#intent_id #intent_id} => String
9458
9512
  # * {Types::UpdateIntentResponse#intent_name #intent_name} => String
9513
+ # * {Types::UpdateIntentResponse#intent_display_name #intent_display_name} => String
9459
9514
  # * {Types::UpdateIntentResponse#description #description} => String
9460
9515
  # * {Types::UpdateIntentResponse#parent_intent_signature #parent_intent_signature} => String
9461
9516
  # * {Types::UpdateIntentResponse#sample_utterances #sample_utterances} => Array<Types::SampleUtterance>
@@ -10575,7 +10630,7 @@ module Aws::LexModelsV2
10575
10630
  tracer: tracer
10576
10631
  )
10577
10632
  context[:gem_name] = 'aws-sdk-lexmodelsv2'
10578
- context[:gem_version] = '1.82.0'
10633
+ context[:gem_version] = '1.83.0'
10579
10634
  Seahorse::Client::Request.new(handlers, context)
10580
10635
  end
10581
10636
 
@@ -299,6 +299,7 @@ module Aws::LexModelsV2
299
299
  CreateTestSetDiscrepancyReportResponse = Shapes::StructureShape.new(name: 'CreateTestSetDiscrepancyReportResponse')
300
300
  CreateUploadUrlRequest = Shapes::StructureShape.new(name: 'CreateUploadUrlRequest')
301
301
  CreateUploadUrlResponse = Shapes::StructureShape.new(name: 'CreateUploadUrlResponse')
302
+ CustomDisambiguationMessage = Shapes::StringShape.new(name: 'CustomDisambiguationMessage')
302
303
  CustomPayload = Shapes::StructureShape.new(name: 'CustomPayload')
303
304
  CustomPayloadValue = Shapes::StringShape.new(name: 'CustomPayloadValue')
304
305
  CustomVocabularyEntryId = Shapes::StructureShape.new(name: 'CustomVocabularyEntryId')
@@ -383,6 +384,7 @@ module Aws::LexModelsV2
383
384
  DialogCodeHookInvocationSetting = Shapes::StructureShape.new(name: 'DialogCodeHookInvocationSetting')
384
385
  DialogCodeHookSettings = Shapes::StructureShape.new(name: 'DialogCodeHookSettings')
385
386
  DialogState = Shapes::StructureShape.new(name: 'DialogState')
387
+ DisplayName = Shapes::StringShape.new(name: 'DisplayName')
386
388
  DomainEndpoint = Shapes::StringShape.new(name: 'DomainEndpoint')
387
389
  DraftBotVersion = Shapes::StringShape.new(name: 'DraftBotVersion')
388
390
  Effect = Shapes::StringShape.new(name: 'Effect')
@@ -461,6 +463,7 @@ module Aws::LexModelsV2
461
463
  IntentClassificationTestResults = Shapes::StructureShape.new(name: 'IntentClassificationTestResults')
462
464
  IntentClosingSetting = Shapes::StructureShape.new(name: 'IntentClosingSetting')
463
465
  IntentConfirmationSetting = Shapes::StructureShape.new(name: 'IntentConfirmationSetting')
466
+ IntentDisambiguationSettings = Shapes::StructureShape.new(name: 'IntentDisambiguationSettings')
464
467
  IntentFilter = Shapes::StructureShape.new(name: 'IntentFilter')
465
468
  IntentFilterName = Shapes::StringShape.new(name: 'IntentFilterName')
466
469
  IntentFilterOperator = Shapes::StringShape.new(name: 'IntentFilterOperator')
@@ -551,6 +554,7 @@ module Aws::LexModelsV2
551
554
  LocaleId = Shapes::StringShape.new(name: 'LocaleId')
552
555
  LocaleName = Shapes::StringShape.new(name: 'LocaleName')
553
556
  LogPrefix = Shapes::StringShape.new(name: 'LogPrefix')
557
+ MaxDisambiguationIntents = Shapes::IntegerShape.new(name: 'MaxDisambiguationIntents')
554
558
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
555
559
  MaxUtteranceDigits = Shapes::IntegerShape.new(name: 'MaxUtteranceDigits')
556
560
  MergeStrategy = Shapes::StringShape.new(name: 'MergeStrategy')
@@ -701,6 +705,7 @@ module Aws::LexModelsV2
701
705
  SlotValues = Shapes::ListShape.new(name: 'SlotValues')
702
706
  SortOrder = Shapes::StringShape.new(name: 'SortOrder')
703
707
  Specifications = Shapes::StructureShape.new(name: 'Specifications')
708
+ SpeechDetectionSensitivity = Shapes::StringShape.new(name: 'SpeechDetectionSensitivity')
704
709
  StartBotRecommendationRequest = Shapes::StructureShape.new(name: 'StartBotRecommendationRequest')
705
710
  StartBotRecommendationResponse = Shapes::StructureShape.new(name: 'StartBotRecommendationResponse')
706
711
  StartBotResourceGenerationRequest = Shapes::StructureShape.new(name: 'StartBotResourceGenerationRequest')
@@ -1250,6 +1255,7 @@ module Aws::LexModelsV2
1250
1255
  BotLocaleImportSpecification.add_member(:locale_id, Shapes::ShapeRef.new(shape: LocaleId, required: true, location_name: "localeId"))
1251
1256
  BotLocaleImportSpecification.add_member(:nlu_intent_confidence_threshold, Shapes::ShapeRef.new(shape: ConfidenceThreshold, location_name: "nluIntentConfidenceThreshold"))
1252
1257
  BotLocaleImportSpecification.add_member(:voice_settings, Shapes::ShapeRef.new(shape: VoiceSettings, location_name: "voiceSettings"))
1258
+ BotLocaleImportSpecification.add_member(:speech_detection_sensitivity, Shapes::ShapeRef.new(shape: SpeechDetectionSensitivity, location_name: "speechDetectionSensitivity"))
1253
1259
  BotLocaleImportSpecification.struct_class = Types::BotLocaleImportSpecification
1254
1260
 
1255
1261
  BotLocaleSortBy.add_member(:attribute, Shapes::ShapeRef.new(shape: BotLocaleSortAttribute, required: true, location_name: "attribute"))
@@ -1500,6 +1506,7 @@ module Aws::LexModelsV2
1500
1506
  CreateBotLocaleRequest.add_member(:nlu_intent_confidence_threshold, Shapes::ShapeRef.new(shape: ConfidenceThreshold, required: true, location_name: "nluIntentConfidenceThreshold"))
1501
1507
  CreateBotLocaleRequest.add_member(:voice_settings, Shapes::ShapeRef.new(shape: VoiceSettings, location_name: "voiceSettings"))
1502
1508
  CreateBotLocaleRequest.add_member(:generative_ai_settings, Shapes::ShapeRef.new(shape: GenerativeAISettings, location_name: "generativeAISettings"))
1509
+ CreateBotLocaleRequest.add_member(:speech_detection_sensitivity, Shapes::ShapeRef.new(shape: SpeechDetectionSensitivity, location_name: "speechDetectionSensitivity"))
1503
1510
  CreateBotLocaleRequest.struct_class = Types::CreateBotLocaleRequest
1504
1511
 
1505
1512
  CreateBotLocaleResponse.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, location_name: "botId"))
@@ -1512,6 +1519,7 @@ module Aws::LexModelsV2
1512
1519
  CreateBotLocaleResponse.add_member(:bot_locale_status, Shapes::ShapeRef.new(shape: BotLocaleStatus, location_name: "botLocaleStatus"))
1513
1520
  CreateBotLocaleResponse.add_member(:creation_date_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationDateTime"))
1514
1521
  CreateBotLocaleResponse.add_member(:generative_ai_settings, Shapes::ShapeRef.new(shape: GenerativeAISettings, location_name: "generativeAISettings"))
1522
+ CreateBotLocaleResponse.add_member(:speech_detection_sensitivity, Shapes::ShapeRef.new(shape: SpeechDetectionSensitivity, location_name: "speechDetectionSensitivity"))
1515
1523
  CreateBotLocaleResponse.struct_class = Types::CreateBotLocaleResponse
1516
1524
 
1517
1525
  CreateBotReplicaRequest.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "botId"))
@@ -1580,6 +1588,7 @@ module Aws::LexModelsV2
1580
1588
  CreateExportResponse.struct_class = Types::CreateExportResponse
1581
1589
 
1582
1590
  CreateIntentRequest.add_member(:intent_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "intentName"))
1591
+ CreateIntentRequest.add_member(:intent_display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "intentDisplayName"))
1583
1592
  CreateIntentRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
1584
1593
  CreateIntentRequest.add_member(:parent_intent_signature, Shapes::ShapeRef.new(shape: IntentSignature, location_name: "parentIntentSignature"))
1585
1594
  CreateIntentRequest.add_member(:sample_utterances, Shapes::ShapeRef.new(shape: SampleUtterancesList, location_name: "sampleUtterances"))
@@ -1600,6 +1609,7 @@ module Aws::LexModelsV2
1600
1609
 
1601
1610
  CreateIntentResponse.add_member(:intent_id, Shapes::ShapeRef.new(shape: Id, location_name: "intentId"))
1602
1611
  CreateIntentResponse.add_member(:intent_name, Shapes::ShapeRef.new(shape: Name, location_name: "intentName"))
1612
+ CreateIntentResponse.add_member(:intent_display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "intentDisplayName"))
1603
1613
  CreateIntentResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
1604
1614
  CreateIntentResponse.add_member(:parent_intent_signature, Shapes::ShapeRef.new(shape: IntentSignature, location_name: "parentIntentSignature"))
1605
1615
  CreateIntentResponse.add_member(:sample_utterances, Shapes::ShapeRef.new(shape: SampleUtterancesList, location_name: "sampleUtterances"))
@@ -1919,6 +1929,7 @@ module Aws::LexModelsV2
1919
1929
  DescribeBotLocaleResponse.add_member(:bot_locale_history_events, Shapes::ShapeRef.new(shape: BotLocaleHistoryEventsList, location_name: "botLocaleHistoryEvents"))
1920
1930
  DescribeBotLocaleResponse.add_member(:recommended_actions, Shapes::ShapeRef.new(shape: RecommendedActions, location_name: "recommendedActions"))
1921
1931
  DescribeBotLocaleResponse.add_member(:generative_ai_settings, Shapes::ShapeRef.new(shape: GenerativeAISettings, location_name: "generativeAISettings"))
1932
+ DescribeBotLocaleResponse.add_member(:speech_detection_sensitivity, Shapes::ShapeRef.new(shape: SpeechDetectionSensitivity, location_name: "speechDetectionSensitivity"))
1922
1933
  DescribeBotLocaleResponse.struct_class = Types::DescribeBotLocaleResponse
1923
1934
 
1924
1935
  DescribeBotRecommendationRequest.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "botId"))
@@ -2056,6 +2067,7 @@ module Aws::LexModelsV2
2056
2067
 
2057
2068
  DescribeIntentResponse.add_member(:intent_id, Shapes::ShapeRef.new(shape: Id, location_name: "intentId"))
2058
2069
  DescribeIntentResponse.add_member(:intent_name, Shapes::ShapeRef.new(shape: Name, location_name: "intentName"))
2070
+ DescribeIntentResponse.add_member(:intent_display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "intentDisplayName"))
2059
2071
  DescribeIntentResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
2060
2072
  DescribeIntentResponse.add_member(:parent_intent_signature, Shapes::ShapeRef.new(shape: IntentSignature, location_name: "parentIntentSignature"))
2061
2073
  DescribeIntentResponse.add_member(:sample_utterances, Shapes::ShapeRef.new(shape: SampleUtterancesList, location_name: "sampleUtterances"))
@@ -2426,6 +2438,11 @@ module Aws::LexModelsV2
2426
2438
  IntentConfirmationSetting.add_member(:elicitation_code_hook, Shapes::ShapeRef.new(shape: ElicitationCodeHookInvocationSetting, location_name: "elicitationCodeHook"))
2427
2439
  IntentConfirmationSetting.struct_class = Types::IntentConfirmationSetting
2428
2440
 
2441
+ IntentDisambiguationSettings.add_member(:enabled, Shapes::ShapeRef.new(shape: Enabled, required: true, location_name: "enabled"))
2442
+ IntentDisambiguationSettings.add_member(:max_disambiguation_intents, Shapes::ShapeRef.new(shape: MaxDisambiguationIntents, location_name: "maxDisambiguationIntents"))
2443
+ IntentDisambiguationSettings.add_member(:custom_disambiguation_message, Shapes::ShapeRef.new(shape: CustomDisambiguationMessage, location_name: "customDisambiguationMessage"))
2444
+ IntentDisambiguationSettings.struct_class = Types::IntentDisambiguationSettings
2445
+
2429
2446
  IntentFilter.add_member(:name, Shapes::ShapeRef.new(shape: IntentFilterName, required: true, location_name: "name"))
2430
2447
  IntentFilter.add_member(:values, Shapes::ShapeRef.new(shape: FilterValues, required: true, location_name: "values"))
2431
2448
  IntentFilter.add_member(:operator, Shapes::ShapeRef.new(shape: IntentFilterOperator, required: true, location_name: "operator"))
@@ -2456,6 +2473,7 @@ module Aws::LexModelsV2
2456
2473
 
2457
2474
  IntentSummary.add_member(:intent_id, Shapes::ShapeRef.new(shape: Id, location_name: "intentId"))
2458
2475
  IntentSummary.add_member(:intent_name, Shapes::ShapeRef.new(shape: Name, location_name: "intentName"))
2476
+ IntentSummary.add_member(:intent_display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "intentDisplayName"))
2459
2477
  IntentSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
2460
2478
  IntentSummary.add_member(:parent_intent_signature, Shapes::ShapeRef.new(shape: IntentSignature, location_name: "parentIntentSignature"))
2461
2479
  IntentSummary.add_member(:input_contexts, Shapes::ShapeRef.new(shape: InputContextsList, location_name: "inputContexts"))
@@ -2921,6 +2939,7 @@ module Aws::LexModelsV2
2921
2939
 
2922
2940
  NluImprovementSpecification.add_member(:enabled, Shapes::ShapeRef.new(shape: Enabled, required: true, location_name: "enabled"))
2923
2941
  NluImprovementSpecification.add_member(:assisted_nlu_mode, Shapes::ShapeRef.new(shape: AssistedNluMode, location_name: "assistedNluMode"))
2942
+ NluImprovementSpecification.add_member(:intent_disambiguation_settings, Shapes::ShapeRef.new(shape: IntentDisambiguationSettings, location_name: "intentDisambiguationSettings"))
2924
2943
  NluImprovementSpecification.struct_class = Types::NluImprovementSpecification
2925
2944
 
2926
2945
  OSIncludeFields.member = Shapes::ShapeRef.new(shape: IncludeField)
@@ -3583,6 +3602,7 @@ module Aws::LexModelsV2
3583
3602
  UpdateBotLocaleRequest.add_member(:nlu_intent_confidence_threshold, Shapes::ShapeRef.new(shape: ConfidenceThreshold, required: true, location_name: "nluIntentConfidenceThreshold"))
3584
3603
  UpdateBotLocaleRequest.add_member(:voice_settings, Shapes::ShapeRef.new(shape: VoiceSettings, location_name: "voiceSettings"))
3585
3604
  UpdateBotLocaleRequest.add_member(:generative_ai_settings, Shapes::ShapeRef.new(shape: GenerativeAISettings, location_name: "generativeAISettings"))
3605
+ UpdateBotLocaleRequest.add_member(:speech_detection_sensitivity, Shapes::ShapeRef.new(shape: SpeechDetectionSensitivity, location_name: "speechDetectionSensitivity"))
3586
3606
  UpdateBotLocaleRequest.struct_class = Types::UpdateBotLocaleRequest
3587
3607
 
3588
3608
  UpdateBotLocaleResponse.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, location_name: "botId"))
@@ -3598,6 +3618,7 @@ module Aws::LexModelsV2
3598
3618
  UpdateBotLocaleResponse.add_member(:last_updated_date_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdatedDateTime"))
3599
3619
  UpdateBotLocaleResponse.add_member(:recommended_actions, Shapes::ShapeRef.new(shape: RecommendedActions, location_name: "recommendedActions"))
3600
3620
  UpdateBotLocaleResponse.add_member(:generative_ai_settings, Shapes::ShapeRef.new(shape: GenerativeAISettings, location_name: "generativeAISettings"))
3621
+ UpdateBotLocaleResponse.add_member(:speech_detection_sensitivity, Shapes::ShapeRef.new(shape: SpeechDetectionSensitivity, location_name: "speechDetectionSensitivity"))
3601
3622
  UpdateBotLocaleResponse.struct_class = Types::UpdateBotLocaleResponse
3602
3623
 
3603
3624
  UpdateBotRecommendationRequest.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "botId"))
@@ -3659,6 +3680,7 @@ module Aws::LexModelsV2
3659
3680
 
3660
3681
  UpdateIntentRequest.add_member(:intent_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "intentId"))
3661
3682
  UpdateIntentRequest.add_member(:intent_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "intentName"))
3683
+ UpdateIntentRequest.add_member(:intent_display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "intentDisplayName"))
3662
3684
  UpdateIntentRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
3663
3685
  UpdateIntentRequest.add_member(:parent_intent_signature, Shapes::ShapeRef.new(shape: IntentSignature, location_name: "parentIntentSignature"))
3664
3686
  UpdateIntentRequest.add_member(:sample_utterances, Shapes::ShapeRef.new(shape: SampleUtterancesList, location_name: "sampleUtterances"))
@@ -3680,6 +3702,7 @@ module Aws::LexModelsV2
3680
3702
 
3681
3703
  UpdateIntentResponse.add_member(:intent_id, Shapes::ShapeRef.new(shape: Id, location_name: "intentId"))
3682
3704
  UpdateIntentResponse.add_member(:intent_name, Shapes::ShapeRef.new(shape: Name, location_name: "intentName"))
3705
+ UpdateIntentResponse.add_member(:intent_display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "intentDisplayName"))
3683
3706
  UpdateIntentResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
3684
3707
  UpdateIntentResponse.add_member(:parent_intent_signature, Shapes::ShapeRef.new(shape: IntentSignature, location_name: "parentIntentSignature"))
3685
3708
  UpdateIntentResponse.add_member(:sample_utterances, Shapes::ShapeRef.new(shape: SampleUtterancesList, location_name: "sampleUtterances"))
@@ -2337,6 +2337,13 @@ module Aws::LexModelsV2
2337
2337
  # * `generative`
2338
2338
  # @return [Types::VoiceSettings]
2339
2339
  #
2340
+ # @!attribute [rw] speech_detection_sensitivity
2341
+ # The sensitivity level for voice activity detection (VAD) in the bot
2342
+ # locale. This setting helps optimize speech recognition accuracy by
2343
+ # adjusting how the system responds to background noise during voice
2344
+ # interactions.
2345
+ # @return [String]
2346
+ #
2340
2347
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/BotLocaleImportSpecification AWS API Documentation
2341
2348
  #
2342
2349
  class BotLocaleImportSpecification < Struct.new(
@@ -2344,7 +2351,8 @@ module Aws::LexModelsV2
2344
2351
  :bot_version,
2345
2352
  :locale_id,
2346
2353
  :nlu_intent_confidence_threshold,
2347
- :voice_settings)
2354
+ :voice_settings,
2355
+ :speech_detection_sensitivity)
2348
2356
  SENSITIVE = []
2349
2357
  include Aws::Structure
2350
2358
  end
@@ -3507,6 +3515,13 @@ module Aws::LexModelsV2
3507
3515
  # Amazon Bedrock that you can turn on for your bot.
3508
3516
  # @return [Types::GenerativeAISettings]
3509
3517
  #
3518
+ # @!attribute [rw] speech_detection_sensitivity
3519
+ # The sensitivity level for voice activity detection (VAD) in the bot
3520
+ # locale. This setting helps optimize speech recognition accuracy by
3521
+ # adjusting how the system responds to background noise during voice
3522
+ # interactions.
3523
+ # @return [String]
3524
+ #
3510
3525
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateBotLocaleRequest AWS API Documentation
3511
3526
  #
3512
3527
  class CreateBotLocaleRequest < Struct.new(
@@ -3516,7 +3531,8 @@ module Aws::LexModelsV2
3516
3531
  :description,
3517
3532
  :nlu_intent_confidence_threshold,
3518
3533
  :voice_settings,
3519
- :generative_ai_settings)
3534
+ :generative_ai_settings,
3535
+ :speech_detection_sensitivity)
3520
3536
  SENSITIVE = []
3521
3537
  include Aws::Structure
3522
3538
  end
@@ -3577,6 +3593,11 @@ module Aws::LexModelsV2
3577
3593
  # Amazon Bedrock that you can turn on for your bot.
3578
3594
  # @return [Types::GenerativeAISettings]
3579
3595
  #
3596
+ # @!attribute [rw] speech_detection_sensitivity
3597
+ # The sensitivity level for voice activity detection (VAD) that was
3598
+ # specified for the bot locale.
3599
+ # @return [String]
3600
+ #
3580
3601
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateBotLocaleResponse AWS API Documentation
3581
3602
  #
3582
3603
  class CreateBotLocaleResponse < Struct.new(
@@ -3589,7 +3610,8 @@ module Aws::LexModelsV2
3589
3610
  :voice_settings,
3590
3611
  :bot_locale_status,
3591
3612
  :creation_date_time,
3592
- :generative_ai_settings)
3613
+ :generative_ai_settings,
3614
+ :speech_detection_sensitivity)
3593
3615
  SENSITIVE = []
3594
3616
  include Aws::Structure
3595
3617
  end
@@ -3932,6 +3954,14 @@ module Aws::LexModelsV2
3932
3954
  # intent.
3933
3955
  # @return [String]
3934
3956
  #
3957
+ # @!attribute [rw] intent_display_name
3958
+ # A display name for the intent. If configured, This name will be
3959
+ # shown to users during Intent Disambiguation instead of the intent
3960
+ # name. Display names should be user-friendly, descriptive and match
3961
+ # the intent's purpose to improve user experience during
3962
+ # disambiguation.
3963
+ # @return [String]
3964
+ #
3935
3965
  # @!attribute [rw] description
3936
3966
  # A description of the intent. Use the description to help identify
3937
3967
  # the intent in lists.
@@ -4067,6 +4097,7 @@ module Aws::LexModelsV2
4067
4097
  #
4068
4098
  class CreateIntentRequest < Struct.new(
4069
4099
  :intent_name,
4100
+ :intent_display_name,
4070
4101
  :description,
4071
4102
  :parent_intent_signature,
4072
4103
  :sample_utterances,
@@ -4095,6 +4126,10 @@ module Aws::LexModelsV2
4095
4126
  # The name specified for the intent.
4096
4127
  # @return [String]
4097
4128
  #
4129
+ # @!attribute [rw] intent_display_name
4130
+ # The display name specified for the intent.
4131
+ # @return [String]
4132
+ #
4098
4133
  # @!attribute [rw] description
4099
4134
  # The description specified for the intent.
4100
4135
  # @return [String]
@@ -4172,6 +4207,7 @@ module Aws::LexModelsV2
4172
4207
  class CreateIntentResponse < Struct.new(
4173
4208
  :intent_id,
4174
4209
  :intent_name,
4210
+ :intent_display_name,
4175
4211
  :description,
4176
4212
  :parent_intent_signature,
4177
4213
  :sample_utterances,
@@ -5825,6 +5861,11 @@ module Aws::LexModelsV2
5825
5861
  # your bot locale.
5826
5862
  # @return [Types::GenerativeAISettings]
5827
5863
  #
5864
+ # @!attribute [rw] speech_detection_sensitivity
5865
+ # The sensitivity level for voice activity detection (VAD) configured
5866
+ # for the bot locale.
5867
+ # @return [String]
5868
+ #
5828
5869
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/DescribeBotLocaleResponse AWS API Documentation
5829
5870
  #
5830
5871
  class DescribeBotLocaleResponse < Struct.new(
@@ -5844,7 +5885,8 @@ module Aws::LexModelsV2
5844
5885
  :last_build_submitted_date_time,
5845
5886
  :bot_locale_history_events,
5846
5887
  :recommended_actions,
5847
- :generative_ai_settings)
5888
+ :generative_ai_settings,
5889
+ :speech_detection_sensitivity)
5848
5890
  SENSITIVE = []
5849
5891
  include Aws::Structure
5850
5892
  end
@@ -6525,6 +6567,10 @@ module Aws::LexModelsV2
6525
6567
  # The name specified for the intent.
6526
6568
  # @return [String]
6527
6569
  #
6570
+ # @!attribute [rw] intent_display_name
6571
+ # The display name specified for the intent.
6572
+ # @return [String]
6573
+ #
6528
6574
  # @!attribute [rw] description
6529
6575
  # The description of the intent.
6530
6576
  # @return [String]
@@ -6615,6 +6661,7 @@ module Aws::LexModelsV2
6615
6661
  class DescribeIntentResponse < Struct.new(
6616
6662
  :intent_id,
6617
6663
  :intent_name,
6664
+ :intent_display_name,
6618
6665
  :description,
6619
6666
  :parent_intent_signature,
6620
6667
  :sample_utterances,
@@ -8389,6 +8436,42 @@ module Aws::LexModelsV2
8389
8436
  include Aws::Structure
8390
8437
  end
8391
8438
 
8439
+ # Configures the Intent Disambiguation feature that helps resolve
8440
+ # ambiguous user inputs when multiple intents could match. When enabled,
8441
+ # the system presents clarifying questions to users, helping them
8442
+ # specify their exact intent for improved conversation accuracy.
8443
+ #
8444
+ # @!attribute [rw] enabled
8445
+ # Determines whether the Intent Disambiguation feature is enabled.
8446
+ # When set to `true`, Amazon Lex will present disambiguation options
8447
+ # to users when multiple intents could match their input, with the
8448
+ # default being `false`.
8449
+ # @return [Boolean]
8450
+ #
8451
+ # @!attribute [rw] max_disambiguation_intents
8452
+ # Specifies the maximum number of intent options (2-5) to present to
8453
+ # users when disambiguation is needed. This setting determines how
8454
+ # many intent options will be shown to users when the system detects
8455
+ # ambiguous input. The default value is 3.
8456
+ # @return [Integer]
8457
+ #
8458
+ # @!attribute [rw] custom_disambiguation_message
8459
+ # Provides a custom message that will be displayed before presenting
8460
+ # the disambiguation options to users. This message helps set the
8461
+ # context for users and can be customized to match your bot's tone
8462
+ # and brand. If not specified, a default message will be used.
8463
+ # @return [String]
8464
+ #
8465
+ # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/IntentDisambiguationSettings AWS API Documentation
8466
+ #
8467
+ class IntentDisambiguationSettings < Struct.new(
8468
+ :enabled,
8469
+ :max_disambiguation_intents,
8470
+ :custom_disambiguation_message)
8471
+ SENSITIVE = []
8472
+ include Aws::Structure
8473
+ end
8474
+
8392
8475
  # Filters the response from the `ListIntents` operation.
8393
8476
  #
8394
8477
  # @!attribute [rw] name
@@ -8524,6 +8607,10 @@ module Aws::LexModelsV2
8524
8607
  # The name of the intent.
8525
8608
  # @return [String]
8526
8609
  #
8610
+ # @!attribute [rw] intent_display_name
8611
+ # The display name of the intent.
8612
+ # @return [String]
8613
+ #
8527
8614
  # @!attribute [rw] description
8528
8615
  # The description of the intent.
8529
8616
  # @return [String]
@@ -8552,6 +8639,7 @@ module Aws::LexModelsV2
8552
8639
  class IntentSummary < Struct.new(
8553
8640
  :intent_id,
8554
8641
  :intent_name,
8642
+ :intent_display_name,
8555
8643
  :description,
8556
8644
  :parent_intent_signature,
8557
8645
  :input_contexts,
@@ -11218,11 +11306,19 @@ module Aws::LexModelsV2
11218
11306
  # use it only when standard NLU confidence is low.
11219
11307
  # @return [String]
11220
11308
  #
11309
+ # @!attribute [rw] intent_disambiguation_settings
11310
+ # An object containing specifications for the Intent Disambiguation
11311
+ # feature within the Assisted NLU settings. These settings determine
11312
+ # how the bot handles ambiguous user inputs that could match multiple
11313
+ # intents.
11314
+ # @return [Types::IntentDisambiguationSettings]
11315
+ #
11221
11316
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/NluImprovementSpecification AWS API Documentation
11222
11317
  #
11223
11318
  class NluImprovementSpecification < Struct.new(
11224
11319
  :enabled,
11225
- :assisted_nlu_mode)
11320
+ :assisted_nlu_mode,
11321
+ :intent_disambiguation_settings)
11226
11322
  SENSITIVE = []
11227
11323
  include Aws::Structure
11228
11324
  end
@@ -14456,6 +14552,13 @@ module Aws::LexModelsV2
14456
14552
  # For more information, see LINK.
14457
14553
  # @return [Types::GenerativeAISettings]
14458
14554
  #
14555
+ # @!attribute [rw] speech_detection_sensitivity
14556
+ # The new sensitivity level for voice activity detection (VAD) in the
14557
+ # bot locale. This setting helps optimize speech recognition accuracy
14558
+ # by adjusting how the system responds to background noise during
14559
+ # voice interactions.
14560
+ # @return [String]
14561
+ #
14459
14562
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/UpdateBotLocaleRequest AWS API Documentation
14460
14563
  #
14461
14564
  class UpdateBotLocaleRequest < Struct.new(
@@ -14465,7 +14568,8 @@ module Aws::LexModelsV2
14465
14568
  :description,
14466
14569
  :nlu_intent_confidence_threshold,
14467
14570
  :voice_settings,
14468
- :generative_ai_settings)
14571
+ :generative_ai_settings,
14572
+ :speech_detection_sensitivity)
14469
14573
  SENSITIVE = []
14470
14574
  include Aws::Structure
14471
14575
  end
@@ -14529,6 +14633,11 @@ module Aws::LexModelsV2
14529
14633
  # Bedrock for your bot locale.
14530
14634
  # @return [Types::GenerativeAISettings]
14531
14635
  #
14636
+ # @!attribute [rw] speech_detection_sensitivity
14637
+ # The updated sensitivity level for voice activity detection (VAD) in
14638
+ # the bot locale.
14639
+ # @return [String]
14640
+ #
14532
14641
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/UpdateBotLocaleResponse AWS API Documentation
14533
14642
  #
14534
14643
  class UpdateBotLocaleResponse < Struct.new(
@@ -14544,7 +14653,8 @@ module Aws::LexModelsV2
14544
14653
  :creation_date_time,
14545
14654
  :last_updated_date_time,
14546
14655
  :recommended_actions,
14547
- :generative_ai_settings)
14656
+ :generative_ai_settings,
14657
+ :speech_detection_sensitivity)
14548
14658
  SENSITIVE = []
14549
14659
  include Aws::Structure
14550
14660
  end
@@ -14867,6 +14977,10 @@ module Aws::LexModelsV2
14867
14977
  # The new name for the intent.
14868
14978
  # @return [String]
14869
14979
  #
14980
+ # @!attribute [rw] intent_display_name
14981
+ # The new display name for the intent.
14982
+ # @return [String]
14983
+ #
14870
14984
  # @!attribute [rw] description
14871
14985
  # The new description of the intent.
14872
14986
  # @return [String]
@@ -14959,6 +15073,7 @@ module Aws::LexModelsV2
14959
15073
  class UpdateIntentRequest < Struct.new(
14960
15074
  :intent_id,
14961
15075
  :intent_name,
15076
+ :intent_display_name,
14962
15077
  :description,
14963
15078
  :parent_intent_signature,
14964
15079
  :sample_utterances,
@@ -14988,6 +15103,10 @@ module Aws::LexModelsV2
14988
15103
  # The updated name of the intent.
14989
15104
  # @return [String]
14990
15105
  #
15106
+ # @!attribute [rw] intent_display_name
15107
+ # The updated display name of the intent.
15108
+ # @return [String]
15109
+ #
14991
15110
  # @!attribute [rw] description
14992
15111
  # The updated description of the intent.
14993
15112
  # @return [String]
@@ -15080,6 +15199,7 @@ module Aws::LexModelsV2
15080
15199
  class UpdateIntentResponse < Struct.new(
15081
15200
  :intent_id,
15082
15201
  :intent_name,
15202
+ :intent_display_name,
15083
15203
  :description,
15084
15204
  :parent_intent_signature,
15085
15205
  :sample_utterances,
@@ -55,7 +55,7 @@ module Aws::LexModelsV2
55
55
  autoload :EndpointProvider, 'aws-sdk-lexmodelsv2/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-lexmodelsv2/endpoints'
57
57
 
58
- GEM_VERSION = '1.82.0'
58
+ GEM_VERSION = '1.83.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -280,6 +280,7 @@ module Aws
280
280
  def bot_locale_status: () -> ("Creating" | "Building" | "Built" | "ReadyExpressTesting" | "Failed" | "Deleting" | "NotBuilt" | "Importing" | "Processing")
281
281
  def creation_date_time: () -> ::Time
282
282
  def generative_ai_settings: () -> Types::GenerativeAISettings
283
+ def speech_detection_sensitivity: () -> ("Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance")
283
284
  end
284
285
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#create_bot_locale-instance_method
285
286
  def create_bot_locale: (
@@ -308,7 +309,12 @@ module Aws
308
309
  }?,
309
310
  nlu_improvement: {
310
311
  enabled: bool,
311
- assisted_nlu_mode: ("Primary" | "Fallback")?
312
+ assisted_nlu_mode: ("Primary" | "Fallback")?,
313
+ intent_disambiguation_settings: {
314
+ enabled: bool,
315
+ max_disambiguation_intents: ::Integer?,
316
+ custom_disambiguation_message: ::String?
317
+ }?
312
318
  }?
313
319
  }?,
314
320
  buildtime_settings: {
@@ -337,7 +343,8 @@ module Aws
337
343
  }?
338
344
  }?
339
345
  }?
340
- }
346
+ },
347
+ ?speech_detection_sensitivity: ("Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance")
341
348
  ) -> _CreateBotLocaleResponseSuccess
342
349
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBotLocaleResponseSuccess
343
350
 
@@ -413,6 +420,7 @@ module Aws
413
420
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateIntentResponse]
414
421
  def intent_id: () -> ::String
415
422
  def intent_name: () -> ::String
423
+ def intent_display_name: () -> ::String
416
424
  def description: () -> ::String
417
425
  def parent_intent_signature: () -> ::String
418
426
  def sample_utterances: () -> ::Array[Types::SampleUtterance]
@@ -434,6 +442,7 @@ module Aws
434
442
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#create_intent-instance_method
435
443
  def create_intent: (
436
444
  intent_name: ::String,
445
+ ?intent_display_name: ::String,
437
446
  ?description: ::String,
438
447
  ?parent_intent_signature: ::String,
439
448
  ?sample_utterances: Array[
@@ -6075,6 +6084,7 @@ module Aws
6075
6084
  def bot_locale_history_events: () -> ::Array[Types::BotLocaleHistoryEvent]
6076
6085
  def recommended_actions: () -> ::Array[::String]
6077
6086
  def generative_ai_settings: () -> Types::GenerativeAISettings
6087
+ def speech_detection_sensitivity: () -> ("Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance")
6078
6088
  end
6079
6089
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#describe_bot_locale-instance_method
6080
6090
  def describe_bot_locale: (
@@ -6225,6 +6235,7 @@ module Aws
6225
6235
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeIntentResponse]
6226
6236
  def intent_id: () -> ::String
6227
6237
  def intent_name: () -> ::String
6238
+ def intent_display_name: () -> ::String
6228
6239
  def description: () -> ::String
6229
6240
  def parent_intent_signature: () -> ::String
6230
6241
  def sample_utterances: () -> ::Array[Types::SampleUtterance]
@@ -7299,7 +7310,8 @@ module Aws
7299
7310
  voice_settings: {
7300
7311
  voice_id: ::String,
7301
7312
  engine: ("standard" | "neural" | "long-form" | "generative")?
7302
- }?
7313
+ }?,
7314
+ speech_detection_sensitivity: ("Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance")?
7303
7315
  }?,
7304
7316
  custom_vocabulary_import_specification: {
7305
7317
  bot_id: ::String,
@@ -7546,6 +7558,7 @@ module Aws
7546
7558
  def last_updated_date_time: () -> ::Time
7547
7559
  def recommended_actions: () -> ::Array[::String]
7548
7560
  def generative_ai_settings: () -> Types::GenerativeAISettings
7561
+ def speech_detection_sensitivity: () -> ("Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance")
7549
7562
  end
7550
7563
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#update_bot_locale-instance_method
7551
7564
  def update_bot_locale: (
@@ -7574,7 +7587,12 @@ module Aws
7574
7587
  }?,
7575
7588
  nlu_improvement: {
7576
7589
  enabled: bool,
7577
- assisted_nlu_mode: ("Primary" | "Fallback")?
7590
+ assisted_nlu_mode: ("Primary" | "Fallback")?,
7591
+ intent_disambiguation_settings: {
7592
+ enabled: bool,
7593
+ max_disambiguation_intents: ::Integer?,
7594
+ custom_disambiguation_message: ::String?
7595
+ }?
7578
7596
  }?
7579
7597
  }?,
7580
7598
  buildtime_settings: {
@@ -7603,7 +7621,8 @@ module Aws
7603
7621
  }?
7604
7622
  }?
7605
7623
  }?
7606
- }
7624
+ },
7625
+ ?speech_detection_sensitivity: ("Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance")
7607
7626
  ) -> _UpdateBotLocaleResponseSuccess
7608
7627
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBotLocaleResponseSuccess
7609
7628
 
@@ -7653,6 +7672,7 @@ module Aws
7653
7672
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIntentResponse]
7654
7673
  def intent_id: () -> ::String
7655
7674
  def intent_name: () -> ::String
7675
+ def intent_display_name: () -> ::String
7656
7676
  def description: () -> ::String
7657
7677
  def parent_intent_signature: () -> ::String
7658
7678
  def sample_utterances: () -> ::Array[Types::SampleUtterance]
@@ -7677,6 +7697,7 @@ module Aws
7677
7697
  def update_intent: (
7678
7698
  intent_id: ::String,
7679
7699
  intent_name: ::String,
7700
+ ?intent_display_name: ::String,
7680
7701
  ?description: ::String,
7681
7702
  ?parent_intent_signature: ::String,
7682
7703
  ?sample_utterances: Array[
data/sig/types.rbs CHANGED
@@ -461,6 +461,7 @@ module Aws::LexModelsV2
461
461
  attr_accessor locale_id: ::String
462
462
  attr_accessor nlu_intent_confidence_threshold: ::Float
463
463
  attr_accessor voice_settings: Types::VoiceSettings
464
+ attr_accessor speech_detection_sensitivity: ("Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance")
464
465
  SENSITIVE: []
465
466
  end
466
467
 
@@ -756,6 +757,7 @@ module Aws::LexModelsV2
756
757
  attr_accessor nlu_intent_confidence_threshold: ::Float
757
758
  attr_accessor voice_settings: Types::VoiceSettings
758
759
  attr_accessor generative_ai_settings: Types::GenerativeAISettings
760
+ attr_accessor speech_detection_sensitivity: ("Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance")
759
761
  SENSITIVE: []
760
762
  end
761
763
 
@@ -770,6 +772,7 @@ module Aws::LexModelsV2
770
772
  attr_accessor bot_locale_status: ("Creating" | "Building" | "Built" | "ReadyExpressTesting" | "Failed" | "Deleting" | "NotBuilt" | "Importing" | "Processing")
771
773
  attr_accessor creation_date_time: ::Time
772
774
  attr_accessor generative_ai_settings: Types::GenerativeAISettings
775
+ attr_accessor speech_detection_sensitivity: ("Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance")
773
776
  SENSITIVE: []
774
777
  end
775
778
 
@@ -854,6 +857,7 @@ module Aws::LexModelsV2
854
857
 
855
858
  class CreateIntentRequest
856
859
  attr_accessor intent_name: ::String
860
+ attr_accessor intent_display_name: ::String
857
861
  attr_accessor description: ::String
858
862
  attr_accessor parent_intent_signature: ::String
859
863
  attr_accessor sample_utterances: ::Array[Types::SampleUtterance]
@@ -876,6 +880,7 @@ module Aws::LexModelsV2
876
880
  class CreateIntentResponse
877
881
  attr_accessor intent_id: ::String
878
882
  attr_accessor intent_name: ::String
883
+ attr_accessor intent_display_name: ::String
879
884
  attr_accessor description: ::String
880
885
  attr_accessor parent_intent_signature: ::String
881
886
  attr_accessor sample_utterances: ::Array[Types::SampleUtterance]
@@ -1293,6 +1298,7 @@ module Aws::LexModelsV2
1293
1298
  attr_accessor bot_locale_history_events: ::Array[Types::BotLocaleHistoryEvent]
1294
1299
  attr_accessor recommended_actions: ::Array[::String]
1295
1300
  attr_accessor generative_ai_settings: Types::GenerativeAISettings
1301
+ attr_accessor speech_detection_sensitivity: ("Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance")
1296
1302
  SENSITIVE: []
1297
1303
  end
1298
1304
 
@@ -1466,6 +1472,7 @@ module Aws::LexModelsV2
1466
1472
  class DescribeIntentResponse
1467
1473
  attr_accessor intent_id: ::String
1468
1474
  attr_accessor intent_name: ::String
1475
+ attr_accessor intent_display_name: ::String
1469
1476
  attr_accessor description: ::String
1470
1477
  attr_accessor parent_intent_signature: ::String
1471
1478
  attr_accessor sample_utterances: ::Array[Types::SampleUtterance]
@@ -1929,6 +1936,13 @@ module Aws::LexModelsV2
1929
1936
  SENSITIVE: []
1930
1937
  end
1931
1938
 
1939
+ class IntentDisambiguationSettings
1940
+ attr_accessor enabled: bool
1941
+ attr_accessor max_disambiguation_intents: ::Integer
1942
+ attr_accessor custom_disambiguation_message: ::String
1943
+ SENSITIVE: []
1944
+ end
1945
+
1932
1946
  class IntentFilter
1933
1947
  attr_accessor name: ("IntentName")
1934
1948
  attr_accessor values: ::Array[::String]
@@ -1968,6 +1982,7 @@ module Aws::LexModelsV2
1968
1982
  class IntentSummary
1969
1983
  attr_accessor intent_id: ::String
1970
1984
  attr_accessor intent_name: ::String
1985
+ attr_accessor intent_display_name: ::String
1971
1986
  attr_accessor description: ::String
1972
1987
  attr_accessor parent_intent_signature: ::String
1973
1988
  attr_accessor input_contexts: ::Array[Types::InputContext]
@@ -2569,6 +2584,7 @@ module Aws::LexModelsV2
2569
2584
  class NluImprovementSpecification
2570
2585
  attr_accessor enabled: bool
2571
2586
  attr_accessor assisted_nlu_mode: ("Primary" | "Fallback")
2587
+ attr_accessor intent_disambiguation_settings: Types::IntentDisambiguationSettings
2572
2588
  SENSITIVE: []
2573
2589
  end
2574
2590
 
@@ -3363,6 +3379,7 @@ module Aws::LexModelsV2
3363
3379
  attr_accessor nlu_intent_confidence_threshold: ::Float
3364
3380
  attr_accessor voice_settings: Types::VoiceSettings
3365
3381
  attr_accessor generative_ai_settings: Types::GenerativeAISettings
3382
+ attr_accessor speech_detection_sensitivity: ("Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance")
3366
3383
  SENSITIVE: []
3367
3384
  end
3368
3385
 
@@ -3380,6 +3397,7 @@ module Aws::LexModelsV2
3380
3397
  attr_accessor last_updated_date_time: ::Time
3381
3398
  attr_accessor recommended_actions: ::Array[::String]
3382
3399
  attr_accessor generative_ai_settings: Types::GenerativeAISettings
3400
+ attr_accessor speech_detection_sensitivity: ("Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance")
3383
3401
  SENSITIVE: []
3384
3402
  end
3385
3403
 
@@ -3453,6 +3471,7 @@ module Aws::LexModelsV2
3453
3471
  class UpdateIntentRequest
3454
3472
  attr_accessor intent_id: ::String
3455
3473
  attr_accessor intent_name: ::String
3474
+ attr_accessor intent_display_name: ::String
3456
3475
  attr_accessor description: ::String
3457
3476
  attr_accessor parent_intent_signature: ::String
3458
3477
  attr_accessor sample_utterances: ::Array[Types::SampleUtterance]
@@ -3476,6 +3495,7 @@ module Aws::LexModelsV2
3476
3495
  class UpdateIntentResponse
3477
3496
  attr_accessor intent_id: ::String
3478
3497
  attr_accessor intent_name: ::String
3498
+ attr_accessor intent_display_name: ::String
3479
3499
  attr_accessor description: ::String
3480
3500
  attr_accessor parent_intent_signature: ::String
3481
3501
  attr_accessor sample_utterances: ::Array[Types::SampleUtterance]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lexmodelsv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.82.0
4
+ version: 1.83.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.234.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.234.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement