aws-sdk-lexmodelsv2 1.8.0 → 1.9.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: d399d4f519727ff4965db993826b8c2dbdc77800e2e0e2489532700989b72537
4
- data.tar.gz: 943672b68540284c061cf5f5708de88ef52da705f10134afbef39b4a8c42032e
3
+ metadata.gz: aefbfa1afbd478c99d8a70cf8b410f5b16723e55b8ea024cd2682386798a0b77
4
+ data.tar.gz: 93799d24b0af94543bccfd71f26e940a513a90662c45980f20f40589735939ab
5
5
  SHA512:
6
- metadata.gz: fae6dafd25b9672a6e00594216adf7ff0c85ff63bd3e1291e770defab96f4b4486602961dcb0d3c1b65cd6ae6f6ff5d45b8313b6f8f6243a808a8f228f85478f
7
- data.tar.gz: df0093c49cf7abadc67924ee60840658b121b0d95f59d08268c9f5469ca3e71ca412c64ea878446099d09c3ded5c11f711229fac21503b404e911e95c04a3ea3
6
+ metadata.gz: be2f4a26cb9f4a3b83ce3c15799334b6420d0639de74178ffa0f43b92bf896e978de9ff92972e7d0cf20dd468dcfba65d1adee9583c66b51f0115a073f4006bc
7
+ data.tar.gz: 542c598c70f406c4e108768acc8bdb38fcf0720a3f561888f285a03c9cb1d67ea14ff0a58595f6ff9b17c838dfe7108fb58aaeae5ac9199861986d24f33b534b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2021-08-05)
5
+ ------------------
6
+
7
+ * Feature - Customers can now toggle the active field on prompts and responses.
8
+
4
9
  1.8.0 (2021-07-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.9.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-lexmodelsv2/customizations'
49
49
  # @!group service
50
50
  module Aws::LexModelsV2
51
51
 
52
- GEM_VERSION = '1.8.0'
52
+ GEM_VERSION = '1.9.0'
53
53
 
54
54
  end
@@ -1130,6 +1130,7 @@ module Aws::LexModelsV2
1130
1130
  # ],
1131
1131
  # allow_interrupt: false,
1132
1132
  # },
1133
+ # active: false,
1133
1134
  # },
1134
1135
  # intent_closing_setting: {
1135
1136
  # closing_response: { # required
@@ -1185,6 +1186,7 @@ module Aws::LexModelsV2
1185
1186
  # ],
1186
1187
  # allow_interrupt: false,
1187
1188
  # },
1189
+ # active: false,
1188
1190
  # },
1189
1191
  # input_contexts: [
1190
1192
  # {
@@ -1261,6 +1263,7 @@ module Aws::LexModelsV2
1261
1263
  # resp.intent_confirmation_setting.declination_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
1262
1264
  # resp.intent_confirmation_setting.declination_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
1263
1265
  # resp.intent_confirmation_setting.declination_response.allow_interrupt #=> Boolean
1266
+ # resp.intent_confirmation_setting.active #=> Boolean
1264
1267
  # resp.intent_closing_setting.closing_response.message_groups #=> Array
1265
1268
  # resp.intent_closing_setting.closing_response.message_groups[0].message.plain_text_message.value #=> String
1266
1269
  # resp.intent_closing_setting.closing_response.message_groups[0].message.custom_payload.value #=> String
@@ -1282,6 +1285,7 @@ module Aws::LexModelsV2
1282
1285
  # resp.intent_closing_setting.closing_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
1283
1286
  # resp.intent_closing_setting.closing_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
1284
1287
  # resp.intent_closing_setting.closing_response.allow_interrupt #=> Boolean
1288
+ # resp.intent_closing_setting.active #=> Boolean
1285
1289
  # resp.input_contexts #=> Array
1286
1290
  # resp.input_contexts[0].name #=> String
1287
1291
  # resp.output_contexts #=> Array
@@ -1761,6 +1765,7 @@ module Aws::LexModelsV2
1761
1765
  # timeout_in_seconds: 1, # required
1762
1766
  # allow_interrupt: false,
1763
1767
  # },
1768
+ # active: false,
1764
1769
  # },
1765
1770
  # },
1766
1771
  # obfuscation_setting: {
@@ -1873,6 +1878,7 @@ module Aws::LexModelsV2
1873
1878
  # resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.frequency_in_seconds #=> Integer
1874
1879
  # resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.timeout_in_seconds #=> Integer
1875
1880
  # resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.allow_interrupt #=> Boolean
1881
+ # resp.value_elicitation_setting.wait_and_continue_specification.active #=> Boolean
1876
1882
  # resp.obfuscation_setting.obfuscation_setting_type #=> String, one of "None", "DefaultObfuscation"
1877
1883
  # resp.bot_id #=> String
1878
1884
  # resp.bot_version #=> String
@@ -2985,6 +2991,7 @@ module Aws::LexModelsV2
2985
2991
  # resp.intent_confirmation_setting.declination_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
2986
2992
  # resp.intent_confirmation_setting.declination_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
2987
2993
  # resp.intent_confirmation_setting.declination_response.allow_interrupt #=> Boolean
2994
+ # resp.intent_confirmation_setting.active #=> Boolean
2988
2995
  # resp.intent_closing_setting.closing_response.message_groups #=> Array
2989
2996
  # resp.intent_closing_setting.closing_response.message_groups[0].message.plain_text_message.value #=> String
2990
2997
  # resp.intent_closing_setting.closing_response.message_groups[0].message.custom_payload.value #=> String
@@ -3006,6 +3013,7 @@ module Aws::LexModelsV2
3006
3013
  # resp.intent_closing_setting.closing_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
3007
3014
  # resp.intent_closing_setting.closing_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
3008
3015
  # resp.intent_closing_setting.closing_response.allow_interrupt #=> Boolean
3016
+ # resp.intent_closing_setting.active #=> Boolean
3009
3017
  # resp.input_contexts #=> Array
3010
3018
  # resp.input_contexts[0].name #=> String
3011
3019
  # resp.output_contexts #=> Array
@@ -3210,6 +3218,7 @@ module Aws::LexModelsV2
3210
3218
  # resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.frequency_in_seconds #=> Integer
3211
3219
  # resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.timeout_in_seconds #=> Integer
3212
3220
  # resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.allow_interrupt #=> Boolean
3221
+ # resp.value_elicitation_setting.wait_and_continue_specification.active #=> Boolean
3213
3222
  # resp.obfuscation_setting.obfuscation_setting_type #=> String, one of "None", "DefaultObfuscation"
3214
3223
  # resp.bot_id #=> String
3215
3224
  # resp.bot_version #=> String
@@ -4908,6 +4917,7 @@ module Aws::LexModelsV2
4908
4917
  # ],
4909
4918
  # allow_interrupt: false,
4910
4919
  # },
4920
+ # active: false,
4911
4921
  # },
4912
4922
  # intent_closing_setting: {
4913
4923
  # closing_response: { # required
@@ -4963,6 +4973,7 @@ module Aws::LexModelsV2
4963
4973
  # ],
4964
4974
  # allow_interrupt: false,
4965
4975
  # },
4976
+ # active: false,
4966
4977
  # },
4967
4978
  # input_contexts: [
4968
4979
  # {
@@ -5042,6 +5053,7 @@ module Aws::LexModelsV2
5042
5053
  # resp.intent_confirmation_setting.declination_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
5043
5054
  # resp.intent_confirmation_setting.declination_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
5044
5055
  # resp.intent_confirmation_setting.declination_response.allow_interrupt #=> Boolean
5056
+ # resp.intent_confirmation_setting.active #=> Boolean
5045
5057
  # resp.intent_closing_setting.closing_response.message_groups #=> Array
5046
5058
  # resp.intent_closing_setting.closing_response.message_groups[0].message.plain_text_message.value #=> String
5047
5059
  # resp.intent_closing_setting.closing_response.message_groups[0].message.custom_payload.value #=> String
@@ -5063,6 +5075,7 @@ module Aws::LexModelsV2
5063
5075
  # resp.intent_closing_setting.closing_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
5064
5076
  # resp.intent_closing_setting.closing_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
5065
5077
  # resp.intent_closing_setting.closing_response.allow_interrupt #=> Boolean
5078
+ # resp.intent_closing_setting.active #=> Boolean
5066
5079
  # resp.input_contexts #=> Array
5067
5080
  # resp.input_contexts[0].name #=> String
5068
5081
  # resp.output_contexts #=> Array
@@ -5446,6 +5459,7 @@ module Aws::LexModelsV2
5446
5459
  # timeout_in_seconds: 1, # required
5447
5460
  # allow_interrupt: false,
5448
5461
  # },
5462
+ # active: false,
5449
5463
  # },
5450
5464
  # },
5451
5465
  # obfuscation_setting: {
@@ -5558,6 +5572,7 @@ module Aws::LexModelsV2
5558
5572
  # resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.frequency_in_seconds #=> Integer
5559
5573
  # resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.timeout_in_seconds #=> Integer
5560
5574
  # resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.allow_interrupt #=> Boolean
5575
+ # resp.value_elicitation_setting.wait_and_continue_specification.active #=> Boolean
5561
5576
  # resp.obfuscation_setting.obfuscation_setting_type #=> String, one of "None", "DefaultObfuscation"
5562
5577
  # resp.bot_id #=> String
5563
5578
  # resp.bot_version #=> String
@@ -5698,7 +5713,7 @@ module Aws::LexModelsV2
5698
5713
  params: params,
5699
5714
  config: config)
5700
5715
  context[:gem_name] = 'aws-sdk-lexmodelsv2'
5701
- context[:gem_version] = '1.8.0'
5716
+ context[:gem_version] = '1.9.0'
5702
5717
  Seahorse::Client::Request.new(handlers, context)
5703
5718
  end
5704
5719
 
@@ -1078,10 +1078,12 @@ module Aws::LexModelsV2
1078
1078
  InputContextsList.member = Shapes::ShapeRef.new(shape: InputContext)
1079
1079
 
1080
1080
  IntentClosingSetting.add_member(:closing_response, Shapes::ShapeRef.new(shape: ResponseSpecification, required: true, location_name: "closingResponse"))
1081
+ IntentClosingSetting.add_member(:active, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "active"))
1081
1082
  IntentClosingSetting.struct_class = Types::IntentClosingSetting
1082
1083
 
1083
1084
  IntentConfirmationSetting.add_member(:prompt_specification, Shapes::ShapeRef.new(shape: PromptSpecification, required: true, location_name: "promptSpecification"))
1084
1085
  IntentConfirmationSetting.add_member(:declination_response, Shapes::ShapeRef.new(shape: ResponseSpecification, required: true, location_name: "declinationResponse"))
1086
+ IntentConfirmationSetting.add_member(:active, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "active"))
1085
1087
  IntentConfirmationSetting.struct_class = Types::IntentConfirmationSetting
1086
1088
 
1087
1089
  IntentFilter.add_member(:name, Shapes::ShapeRef.new(shape: IntentFilterName, required: true, location_name: "name"))
@@ -1654,6 +1656,7 @@ module Aws::LexModelsV2
1654
1656
  WaitAndContinueSpecification.add_member(:waiting_response, Shapes::ShapeRef.new(shape: ResponseSpecification, required: true, location_name: "waitingResponse"))
1655
1657
  WaitAndContinueSpecification.add_member(:continue_response, Shapes::ShapeRef.new(shape: ResponseSpecification, required: true, location_name: "continueResponse"))
1656
1658
  WaitAndContinueSpecification.add_member(:still_waiting_response, Shapes::ShapeRef.new(shape: StillWaitingResponseSpecification, location_name: "stillWaitingResponse"))
1659
+ WaitAndContinueSpecification.add_member(:active, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "active"))
1657
1660
  WaitAndContinueSpecification.struct_class = Types::WaitAndContinueSpecification
1658
1661
 
1659
1662
 
@@ -182,7 +182,7 @@ module Aws::LexModelsV2
182
182
  include Aws::Structure
183
183
  end
184
184
 
185
- # Provided the identity of a the bot that was exported.
185
+ # Provides the identity of a the bot that was exported.
186
186
  #
187
187
  # @note When making an API call, you may pass BotExportSpecification
188
188
  # data as a hash:
@@ -1773,6 +1773,7 @@ module Aws::LexModelsV2
1773
1773
  # ],
1774
1774
  # allow_interrupt: false,
1775
1775
  # },
1776
+ # active: false,
1776
1777
  # },
1777
1778
  # intent_closing_setting: {
1778
1779
  # closing_response: { # required
@@ -1828,6 +1829,7 @@ module Aws::LexModelsV2
1828
1829
  # ],
1829
1830
  # allow_interrupt: false,
1830
1831
  # },
1832
+ # active: false,
1831
1833
  # },
1832
1834
  # input_contexts: [
1833
1835
  # {
@@ -2496,6 +2498,7 @@ module Aws::LexModelsV2
2496
2498
  # timeout_in_seconds: 1, # required
2497
2499
  # allow_interrupt: false,
2498
2500
  # },
2501
+ # active: false,
2499
2502
  # },
2500
2503
  # },
2501
2504
  # obfuscation_setting: {
@@ -4923,6 +4926,7 @@ module Aws::LexModelsV2
4923
4926
  # ],
4924
4927
  # allow_interrupt: false,
4925
4928
  # },
4929
+ # active: false,
4926
4930
  # }
4927
4931
  #
4928
4932
  # @!attribute [rw] closing_response
@@ -4930,10 +4934,18 @@ module Aws::LexModelsV2
4930
4934
  # complete.
4931
4935
  # @return [Types::ResponseSpecification]
4932
4936
  #
4937
+ # @!attribute [rw] active
4938
+ # Specifies whether an intent's closing response is used. When this
4939
+ # field is false, the closing response isn't sent to the user and no
4940
+ # closing input from the user is used. If the `active` field isn't
4941
+ # specified, the default is true.
4942
+ # @return [Boolean]
4943
+ #
4933
4944
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/IntentClosingSetting AWS API Documentation
4934
4945
  #
4935
4946
  class IntentClosingSetting < Struct.new(
4936
- :closing_response)
4947
+ :closing_response,
4948
+ :active)
4937
4949
  SENSITIVE = []
4938
4950
  include Aws::Structure
4939
4951
  end
@@ -5052,6 +5064,7 @@ module Aws::LexModelsV2
5052
5064
  # ],
5053
5065
  # allow_interrupt: false,
5054
5066
  # },
5067
+ # active: false,
5055
5068
  # }
5056
5069
  #
5057
5070
  # @!attribute [rw] prompt_specification
@@ -5072,11 +5085,20 @@ module Aws::LexModelsV2
5072
5085
  # acknowledge that the intent was canceled.
5073
5086
  # @return [Types::ResponseSpecification]
5074
5087
  #
5088
+ # @!attribute [rw] active
5089
+ # Specifies whether the intent's confirmation is sent to the user.
5090
+ # When this field is false, confirmation and declination responses
5091
+ # aren't sent and processing continues as if the responses aren't
5092
+ # present. If the `active` field isn't specified, the default is
5093
+ # true.
5094
+ # @return [Boolean]
5095
+ #
5075
5096
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/IntentConfirmationSetting AWS API Documentation
5076
5097
  #
5077
5098
  class IntentConfirmationSetting < Struct.new(
5078
5099
  :prompt_specification,
5079
- :declination_response)
5100
+ :declination_response,
5101
+ :active)
5080
5102
  SENSITIVE = []
5081
5103
  include Aws::Structure
5082
5104
  end
@@ -7516,6 +7538,7 @@ module Aws::LexModelsV2
7516
7538
  # timeout_in_seconds: 1, # required
7517
7539
  # allow_interrupt: false,
7518
7540
  # },
7541
+ # active: false,
7519
7542
  # },
7520
7543
  # }
7521
7544
  #
@@ -8581,6 +8604,7 @@ module Aws::LexModelsV2
8581
8604
  # ],
8582
8605
  # allow_interrupt: false,
8583
8606
  # },
8607
+ # active: false,
8584
8608
  # },
8585
8609
  # intent_closing_setting: {
8586
8610
  # closing_response: { # required
@@ -8636,6 +8660,7 @@ module Aws::LexModelsV2
8636
8660
  # ],
8637
8661
  # allow_interrupt: false,
8638
8662
  # },
8663
+ # active: false,
8639
8664
  # },
8640
8665
  # input_contexts: [
8641
8666
  # {
@@ -9173,6 +9198,7 @@ module Aws::LexModelsV2
9173
9198
  # timeout_in_seconds: 1, # required
9174
9199
  # allow_interrupt: false,
9175
9200
  # },
9201
+ # active: false,
9176
9202
  # },
9177
9203
  # },
9178
9204
  # obfuscation_setting: {
@@ -9700,6 +9726,7 @@ module Aws::LexModelsV2
9700
9726
  # timeout_in_seconds: 1, # required
9701
9727
  # allow_interrupt: false,
9702
9728
  # },
9729
+ # active: false,
9703
9730
  # }
9704
9731
  #
9705
9732
  # @!attribute [rw] waiting_response
@@ -9717,12 +9744,21 @@ module Aws::LexModelsV2
9717
9744
  # indicate that the bot is still waiting for input from the user.
9718
9745
  # @return [Types::StillWaitingResponseSpecification]
9719
9746
  #
9747
+ # @!attribute [rw] active
9748
+ # Specifies whether the bot will wait for a user to respond. When this
9749
+ # field is false, wait and continue responses for a slot aren't used
9750
+ # and the bot expects an appropriate response within the configured
9751
+ # timeout. If the `active` field isn't specified, the default is
9752
+ # true.
9753
+ # @return [Boolean]
9754
+ #
9720
9755
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/WaitAndContinueSpecification AWS API Documentation
9721
9756
  #
9722
9757
  class WaitAndContinueSpecification < Struct.new(
9723
9758
  :waiting_response,
9724
9759
  :continue_response,
9725
- :still_waiting_response)
9760
+ :still_waiting_response,
9761
+ :active)
9726
9762
  SENSITIVE = []
9727
9763
  include Aws::Structure
9728
9764
  end
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.8.0
4
+ version: 1.9.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: 2021-07-30 00:00:00.000000000 Z
11
+ date: 2021-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core