aws-sdk-lexmodelsv2 1.21.0 → 1.24.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 +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lexmodelsv2/client.rb +18 -5
- data/lib/aws-sdk-lexmodelsv2/client_api.rb +4 -2
- data/lib/aws-sdk-lexmodelsv2/types.rb +19 -6
- data/lib/aws-sdk-lexmodelsv2.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95ad73c4abf7ec677e2c3102d6e6a956392a814a87eccd9944f343cfe904ee82
|
4
|
+
data.tar.gz: 51c9c6d7327f104fa7db7409d6c5a9a4eca83c99dee8cdb97457c8ff85753610
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 253158a1e250f5b7fc1ce65f192288fa3f2101325c8b06ebba61e5966c4cd64ad720f1daa8df45142065cd10ae37f5d72960b2b82feeae00e099dc0abcd19157
|
7
|
+
data.tar.gz: a30d758f6a210bd89c7d159b19775826ddb2a2ad4a40002780e2dd4c7b5ce1f76039d0c05c1df55609987f001ef4f70d74fac0703a128fbc72bc36171d4576ab
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.24.0 (2022-07-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release introduces additional optional parameters "messageSelectionStrategy" to PromptSpecification, which enables the users to configure the bot to play messages in orderly manner.
|
8
|
+
|
9
|
+
1.23.0 (2022-03-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release makes slotTypeId an optional parameter in CreateSlot and UpdateSlot APIs in Amazon Lex V2 for model building. Customers can create and update slots without specifying a slot type id.
|
13
|
+
|
14
|
+
1.22.0 (2022-02-24)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.21.0 (2022-02-03)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.24.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
32
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
@@ -75,6 +76,7 @@ module Aws::LexModelsV2
|
|
75
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
76
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
77
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
78
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
79
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
80
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
@@ -1388,6 +1390,7 @@ module Aws::LexModelsV2
|
|
1388
1390
|
# ],
|
1389
1391
|
# max_retries: 1, # required
|
1390
1392
|
# allow_interrupt: false,
|
1393
|
+
# message_selection_strategy: "Random", # accepts Random, Ordered
|
1391
1394
|
# },
|
1392
1395
|
# declination_response: { # required
|
1393
1396
|
# message_groups: [ # required
|
@@ -1663,6 +1666,7 @@ module Aws::LexModelsV2
|
|
1663
1666
|
# resp.intent_confirmation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
|
1664
1667
|
# resp.intent_confirmation_setting.prompt_specification.max_retries #=> Integer
|
1665
1668
|
# resp.intent_confirmation_setting.prompt_specification.allow_interrupt #=> Boolean
|
1669
|
+
# resp.intent_confirmation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
|
1666
1670
|
# resp.intent_confirmation_setting.declination_response.message_groups #=> Array
|
1667
1671
|
# resp.intent_confirmation_setting.declination_response.message_groups[0].message.plain_text_message.value #=> String
|
1668
1672
|
# resp.intent_confirmation_setting.declination_response.message_groups[0].message.custom_payload.value #=> String
|
@@ -1891,7 +1895,7 @@ module Aws::LexModelsV2
|
|
1891
1895
|
# A description of the slot. Use this to help identify the slot in
|
1892
1896
|
# lists.
|
1893
1897
|
#
|
1894
|
-
# @option params [
|
1898
|
+
# @option params [String] :slot_type_id
|
1895
1899
|
# The unique identifier for the slot type associated with this slot. The
|
1896
1900
|
# slot type determines the values that can be entered into the slot.
|
1897
1901
|
#
|
@@ -1955,7 +1959,7 @@ module Aws::LexModelsV2
|
|
1955
1959
|
# resp = client.create_slot({
|
1956
1960
|
# slot_name: "Name", # required
|
1957
1961
|
# description: "Description",
|
1958
|
-
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
1962
|
+
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
1959
1963
|
# value_elicitation_setting: { # required
|
1960
1964
|
# default_value_specification: {
|
1961
1965
|
# default_value_list: [ # required
|
@@ -2018,6 +2022,7 @@ module Aws::LexModelsV2
|
|
2018
2022
|
# ],
|
2019
2023
|
# max_retries: 1, # required
|
2020
2024
|
# allow_interrupt: false,
|
2025
|
+
# message_selection_strategy: "Random", # accepts Random, Ordered
|
2021
2026
|
# },
|
2022
2027
|
# sample_utterances: [
|
2023
2028
|
# {
|
@@ -2232,6 +2237,7 @@ module Aws::LexModelsV2
|
|
2232
2237
|
# resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
|
2233
2238
|
# resp.value_elicitation_setting.prompt_specification.max_retries #=> Integer
|
2234
2239
|
# resp.value_elicitation_setting.prompt_specification.allow_interrupt #=> Boolean
|
2240
|
+
# resp.value_elicitation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
|
2235
2241
|
# resp.value_elicitation_setting.sample_utterances #=> Array
|
2236
2242
|
# resp.value_elicitation_setting.sample_utterances[0].utterance #=> String
|
2237
2243
|
# resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups #=> Array
|
@@ -3768,6 +3774,7 @@ module Aws::LexModelsV2
|
|
3768
3774
|
# resp.intent_confirmation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
|
3769
3775
|
# resp.intent_confirmation_setting.prompt_specification.max_retries #=> Integer
|
3770
3776
|
# resp.intent_confirmation_setting.prompt_specification.allow_interrupt #=> Boolean
|
3777
|
+
# resp.intent_confirmation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
|
3771
3778
|
# resp.intent_confirmation_setting.declination_response.message_groups #=> Array
|
3772
3779
|
# resp.intent_confirmation_setting.declination_response.message_groups[0].message.plain_text_message.value #=> String
|
3773
3780
|
# resp.intent_confirmation_setting.declination_response.message_groups[0].message.custom_payload.value #=> String
|
@@ -3949,6 +3956,7 @@ module Aws::LexModelsV2
|
|
3949
3956
|
# resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
|
3950
3957
|
# resp.value_elicitation_setting.prompt_specification.max_retries #=> Integer
|
3951
3958
|
# resp.value_elicitation_setting.prompt_specification.allow_interrupt #=> Boolean
|
3959
|
+
# resp.value_elicitation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
|
3952
3960
|
# resp.value_elicitation_setting.sample_utterances #=> Array
|
3953
3961
|
# resp.value_elicitation_setting.sample_utterances[0].utterance #=> String
|
3954
3962
|
# resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups #=> Array
|
@@ -5293,6 +5301,7 @@ module Aws::LexModelsV2
|
|
5293
5301
|
# resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
|
5294
5302
|
# resp.slot_summaries[0].value_elicitation_prompt_specification.max_retries #=> Integer
|
5295
5303
|
# resp.slot_summaries[0].value_elicitation_prompt_specification.allow_interrupt #=> Boolean
|
5304
|
+
# resp.slot_summaries[0].value_elicitation_prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
|
5296
5305
|
# resp.slot_summaries[0].last_updated_date_time #=> Time
|
5297
5306
|
# resp.next_token #=> String
|
5298
5307
|
#
|
@@ -6554,6 +6563,7 @@ module Aws::LexModelsV2
|
|
6554
6563
|
# ],
|
6555
6564
|
# max_retries: 1, # required
|
6556
6565
|
# allow_interrupt: false,
|
6566
|
+
# message_selection_strategy: "Random", # accepts Random, Ordered
|
6557
6567
|
# },
|
6558
6568
|
# declination_response: { # required
|
6559
6569
|
# message_groups: [ # required
|
@@ -6832,6 +6842,7 @@ module Aws::LexModelsV2
|
|
6832
6842
|
# resp.intent_confirmation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
|
6833
6843
|
# resp.intent_confirmation_setting.prompt_specification.max_retries #=> Integer
|
6834
6844
|
# resp.intent_confirmation_setting.prompt_specification.allow_interrupt #=> Boolean
|
6845
|
+
# resp.intent_confirmation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
|
6835
6846
|
# resp.intent_confirmation_setting.declination_response.message_groups #=> Array
|
6836
6847
|
# resp.intent_confirmation_setting.declination_response.message_groups[0].message.plain_text_message.value #=> String
|
6837
6848
|
# resp.intent_confirmation_setting.declination_response.message_groups[0].message.custom_payload.value #=> String
|
@@ -6967,7 +6978,7 @@ module Aws::LexModelsV2
|
|
6967
6978
|
# @option params [String] :description
|
6968
6979
|
# The new description for the slot.
|
6969
6980
|
#
|
6970
|
-
# @option params [
|
6981
|
+
# @option params [String] :slot_type_id
|
6971
6982
|
# The unique identifier of the new slot type to associate with this
|
6972
6983
|
# slot.
|
6973
6984
|
#
|
@@ -7028,7 +7039,7 @@ module Aws::LexModelsV2
|
|
7028
7039
|
# slot_id: "Id", # required
|
7029
7040
|
# slot_name: "Name", # required
|
7030
7041
|
# description: "Description",
|
7031
|
-
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
7042
|
+
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
7032
7043
|
# value_elicitation_setting: { # required
|
7033
7044
|
# default_value_specification: {
|
7034
7045
|
# default_value_list: [ # required
|
@@ -7091,6 +7102,7 @@ module Aws::LexModelsV2
|
|
7091
7102
|
# ],
|
7092
7103
|
# max_retries: 1, # required
|
7093
7104
|
# allow_interrupt: false,
|
7105
|
+
# message_selection_strategy: "Random", # accepts Random, Ordered
|
7094
7106
|
# },
|
7095
7107
|
# sample_utterances: [
|
7096
7108
|
# {
|
@@ -7305,6 +7317,7 @@ module Aws::LexModelsV2
|
|
7305
7317
|
# resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
|
7306
7318
|
# resp.value_elicitation_setting.prompt_specification.max_retries #=> Integer
|
7307
7319
|
# resp.value_elicitation_setting.prompt_specification.allow_interrupt #=> Boolean
|
7320
|
+
# resp.value_elicitation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
|
7308
7321
|
# resp.value_elicitation_setting.sample_utterances #=> Array
|
7309
7322
|
# resp.value_elicitation_setting.sample_utterances[0].utterance #=> String
|
7310
7323
|
# resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups #=> Array
|
@@ -7534,7 +7547,7 @@ module Aws::LexModelsV2
|
|
7534
7547
|
params: params,
|
7535
7548
|
config: config)
|
7536
7549
|
context[:gem_name] = 'aws-sdk-lexmodelsv2'
|
7537
|
-
context[:gem_version] = '1.
|
7550
|
+
context[:gem_version] = '1.24.0'
|
7538
7551
|
Seahorse::Client::Request.new(handlers, context)
|
7539
7552
|
end
|
7540
7553
|
|
@@ -296,6 +296,7 @@ module Aws::LexModelsV2
|
|
296
296
|
Message = Shapes::StructureShape.new(name: 'Message')
|
297
297
|
MessageGroup = Shapes::StructureShape.new(name: 'MessageGroup')
|
298
298
|
MessageGroupsList = Shapes::ListShape.new(name: 'MessageGroupsList')
|
299
|
+
MessageSelectionStrategy = Shapes::StringShape.new(name: 'MessageSelectionStrategy')
|
299
300
|
MessageVariationsList = Shapes::ListShape.new(name: 'MessageVariationsList')
|
300
301
|
MissedCount = Shapes::IntegerShape.new(name: 'MissedCount')
|
301
302
|
MultipleValuesSetting = Shapes::StructureShape.new(name: 'MultipleValuesSetting')
|
@@ -824,7 +825,7 @@ module Aws::LexModelsV2
|
|
824
825
|
|
825
826
|
CreateSlotRequest.add_member(:slot_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "slotName"))
|
826
827
|
CreateSlotRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
827
|
-
CreateSlotRequest.add_member(:slot_type_id, Shapes::ShapeRef.new(shape: BuiltInOrCustomSlotTypeId,
|
828
|
+
CreateSlotRequest.add_member(:slot_type_id, Shapes::ShapeRef.new(shape: BuiltInOrCustomSlotTypeId, location_name: "slotTypeId"))
|
828
829
|
CreateSlotRequest.add_member(:value_elicitation_setting, Shapes::ShapeRef.new(shape: SlotValueElicitationSetting, required: true, location_name: "valueElicitationSetting"))
|
829
830
|
CreateSlotRequest.add_member(:obfuscation_setting, Shapes::ShapeRef.new(shape: ObfuscationSetting, location_name: "obfuscationSetting"))
|
830
831
|
CreateSlotRequest.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "botId"))
|
@@ -1632,6 +1633,7 @@ module Aws::LexModelsV2
|
|
1632
1633
|
PromptSpecification.add_member(:message_groups, Shapes::ShapeRef.new(shape: MessageGroupsList, required: true, location_name: "messageGroups"))
|
1633
1634
|
PromptSpecification.add_member(:max_retries, Shapes::ShapeRef.new(shape: PromptMaxRetries, required: true, location_name: "maxRetries"))
|
1634
1635
|
PromptSpecification.add_member(:allow_interrupt, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "allowInterrupt"))
|
1636
|
+
PromptSpecification.add_member(:message_selection_strategy, Shapes::ShapeRef.new(shape: MessageSelectionStrategy, location_name: "messageSelectionStrategy"))
|
1635
1637
|
PromptSpecification.struct_class = Types::PromptSpecification
|
1636
1638
|
|
1637
1639
|
RecommendedActions.member = Shapes::ShapeRef.new(shape: RecommendedAction)
|
@@ -2001,7 +2003,7 @@ module Aws::LexModelsV2
|
|
2001
2003
|
UpdateSlotRequest.add_member(:slot_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "slotId"))
|
2002
2004
|
UpdateSlotRequest.add_member(:slot_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "slotName"))
|
2003
2005
|
UpdateSlotRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
2004
|
-
UpdateSlotRequest.add_member(:slot_type_id, Shapes::ShapeRef.new(shape: BuiltInOrCustomSlotTypeId,
|
2006
|
+
UpdateSlotRequest.add_member(:slot_type_id, Shapes::ShapeRef.new(shape: BuiltInOrCustomSlotTypeId, location_name: "slotTypeId"))
|
2005
2007
|
UpdateSlotRequest.add_member(:value_elicitation_setting, Shapes::ShapeRef.new(shape: SlotValueElicitationSetting, required: true, location_name: "valueElicitationSetting"))
|
2006
2008
|
UpdateSlotRequest.add_member(:obfuscation_setting, Shapes::ShapeRef.new(shape: ObfuscationSetting, location_name: "obfuscationSetting"))
|
2007
2009
|
UpdateSlotRequest.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "botId"))
|
@@ -162,7 +162,7 @@ module Aws::LexModelsV2
|
|
162
162
|
#
|
163
163
|
#
|
164
164
|
#
|
165
|
-
# [1]: https://docs.aws.amazon.com/
|
165
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/designing-output-format.html
|
166
166
|
# @return [String]
|
167
167
|
#
|
168
168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/AssociatedTranscript AWS API Documentation
|
@@ -784,7 +784,7 @@ module Aws::LexModelsV2
|
|
784
784
|
end
|
785
785
|
|
786
786
|
# The object representing the URL of the bot definition, the URL of the
|
787
|
-
# associated transcript and a statistical summary of the bot
|
787
|
+
# associated transcript, and a statistical summary of the bot
|
788
788
|
# recommendation results.
|
789
789
|
#
|
790
790
|
# @!attribute [rw] bot_locale_export_url
|
@@ -1962,7 +1962,7 @@ module Aws::LexModelsV2
|
|
1962
1962
|
#
|
1963
1963
|
#
|
1964
1964
|
#
|
1965
|
-
# [1]: https://docs.aws.amazon.com/latest/dg/API_DescribeExport.html
|
1965
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_DescribeExport.html
|
1966
1966
|
# @return [String]
|
1967
1967
|
#
|
1968
1968
|
# @!attribute [rw] creation_date_time
|
@@ -2326,6 +2326,7 @@ module Aws::LexModelsV2
|
|
2326
2326
|
# ],
|
2327
2327
|
# max_retries: 1, # required
|
2328
2328
|
# allow_interrupt: false,
|
2329
|
+
# message_selection_strategy: "Random", # accepts Random, Ordered
|
2329
2330
|
# },
|
2330
2331
|
# declination_response: { # required
|
2331
2332
|
# message_groups: [ # required
|
@@ -2874,7 +2875,7 @@ module Aws::LexModelsV2
|
|
2874
2875
|
# {
|
2875
2876
|
# slot_name: "Name", # required
|
2876
2877
|
# description: "Description",
|
2877
|
-
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
2878
|
+
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
2878
2879
|
# value_elicitation_setting: { # required
|
2879
2880
|
# default_value_specification: {
|
2880
2881
|
# default_value_list: [ # required
|
@@ -2937,6 +2938,7 @@ module Aws::LexModelsV2
|
|
2937
2938
|
# ],
|
2938
2939
|
# max_retries: 1, # required
|
2939
2940
|
# allow_interrupt: false,
|
2941
|
+
# message_selection_strategy: "Random", # accepts Random, Ordered
|
2940
2942
|
# },
|
2941
2943
|
# sample_utterances: [
|
2942
2944
|
# {
|
@@ -6835,6 +6837,7 @@ module Aws::LexModelsV2
|
|
6835
6837
|
# ],
|
6836
6838
|
# max_retries: 1, # required
|
6837
6839
|
# allow_interrupt: false,
|
6840
|
+
# message_selection_strategy: "Random", # accepts Random, Ordered
|
6838
6841
|
# },
|
6839
6842
|
# declination_response: { # required
|
6840
6843
|
# message_groups: [ # required
|
@@ -9250,6 +9253,7 @@ module Aws::LexModelsV2
|
|
9250
9253
|
# ],
|
9251
9254
|
# max_retries: 1, # required
|
9252
9255
|
# allow_interrupt: false,
|
9256
|
+
# message_selection_strategy: "Random", # accepts Random, Ordered
|
9253
9257
|
# }
|
9254
9258
|
#
|
9255
9259
|
# @!attribute [rw] message_groups
|
@@ -9267,12 +9271,18 @@ module Aws::LexModelsV2
|
|
9267
9271
|
# bot.
|
9268
9272
|
# @return [Boolean]
|
9269
9273
|
#
|
9274
|
+
# @!attribute [rw] message_selection_strategy
|
9275
|
+
# Indicates how a message is selected from a message group among
|
9276
|
+
# retries.
|
9277
|
+
# @return [String]
|
9278
|
+
#
|
9270
9279
|
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/PromptSpecification AWS API Documentation
|
9271
9280
|
#
|
9272
9281
|
class PromptSpecification < Struct.new(
|
9273
9282
|
:message_groups,
|
9274
9283
|
:max_retries,
|
9275
|
-
:allow_interrupt
|
9284
|
+
:allow_interrupt,
|
9285
|
+
:message_selection_strategy)
|
9276
9286
|
SENSITIVE = []
|
9277
9287
|
include Aws::Structure
|
9278
9288
|
end
|
@@ -10213,6 +10223,7 @@ module Aws::LexModelsV2
|
|
10213
10223
|
# ],
|
10214
10224
|
# max_retries: 1, # required
|
10215
10225
|
# allow_interrupt: false,
|
10226
|
+
# message_selection_strategy: "Random", # accepts Random, Ordered
|
10216
10227
|
# },
|
10217
10228
|
# sample_utterances: [
|
10218
10229
|
# {
|
@@ -12024,6 +12035,7 @@ module Aws::LexModelsV2
|
|
12024
12035
|
# ],
|
12025
12036
|
# max_retries: 1, # required
|
12026
12037
|
# allow_interrupt: false,
|
12038
|
+
# message_selection_strategy: "Random", # accepts Random, Ordered
|
12027
12039
|
# },
|
12028
12040
|
# declination_response: { # required
|
12029
12041
|
# message_groups: [ # required
|
@@ -12441,7 +12453,7 @@ module Aws::LexModelsV2
|
|
12441
12453
|
# slot_id: "Id", # required
|
12442
12454
|
# slot_name: "Name", # required
|
12443
12455
|
# description: "Description",
|
12444
|
-
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
12456
|
+
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
12445
12457
|
# value_elicitation_setting: { # required
|
12446
12458
|
# default_value_specification: {
|
12447
12459
|
# default_value_list: [ # required
|
@@ -12504,6 +12516,7 @@ module Aws::LexModelsV2
|
|
12504
12516
|
# ],
|
12505
12517
|
# max_retries: 1, # required
|
12506
12518
|
# allow_interrupt: false,
|
12519
|
+
# message_selection_strategy: "Random", # accepts Random, Ordered
|
12507
12520
|
# },
|
12508
12521
|
# sample_utterances: [
|
12509
12522
|
# {
|
data/lib/aws-sdk-lexmodelsv2.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-lexmodelsv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.24.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|