aws-sdk-lexruntimev2 1.6.0 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec293777604f27f6453a739006fdaa3803230f6795d2011368ba12c1349368e4
4
- data.tar.gz: '096de2e3ce78e2663a605de9a4755ed20f3175d966d90b4deade23824b8689f7'
3
+ metadata.gz: b41087a6b7dd28763d392d117a94b6153fca356b35abc63d3eb1a17ffe1106f8
4
+ data.tar.gz: 5309e0977dff7e244f6dce5fbeaf1da805bc5cce1929362e34da53f098fd85c1
5
5
  SHA512:
6
- metadata.gz: 9a382a7ebd1c2665825395c27340399942b473fd32e02f1040fa14c458406cd3599fcbe70fbea845594524fe15fdf21be9a079db01c992f5110fd9920cd27f40
7
- data.tar.gz: 3f730bea85be5b1f91d42d353333608326e1daa513206b97a0d27c3211264ddabb6bf3585b9336ada4e277e3bd617dfa2db0488912991a49aef033b7cc4f7205
6
+ metadata.gz: 21b7711ad3332aeda6fea2a7218d883ac631ac15d3e4a14838e04427bdb560e31f312eb14993154caca0850fe13c6a8f3ac3660b1e0aba320a69d34ec90d9c44
7
+ data.tar.gz: 3b149709bd1901ccb985fe1ae7f85e9bd998134e115ef4892f409f1f8511dc49a67d7e1da15fa6d0076b18bfbb43bf16d0466ac15c152f78558a1f230199d33c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2021-10-08)
5
+ ------------------
6
+
7
+ * Feature - Added configuration support for an Amazon Lex bot to provide fulfillment progress updates to users while their requests are being processed. See documentation for more details: https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html
8
+
4
9
  1.6.0 (2021-09-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -243,20 +243,49 @@ module Aws::LexRuntimeV2
243
243
  # sample-rate=8000 sample-size-bits=16 channel-count=1;
244
244
  # is-big-endian=false`.
245
245
  #
246
+ # If the optional post-fulfillment response is specified, the messages
247
+ # are returned as follows. For more information, see
248
+ # [PostFulfillmentStatusSpecification][1].
249
+ #
250
+ # * **Success message** - Returned if the Lambda function completes
251
+ # successfully and the intent state is fulfilled or ready fulfillment
252
+ # if the message is present.
253
+ #
254
+ # * **Failed message** - The failed message is returned if the Lambda
255
+ # function throws an exception or if the Lambda function returns a
256
+ # failed intent state without a message.
257
+ #
258
+ # * **Timeout message** - If you don't configure a timeout message and
259
+ # a timeout, and the Lambda function doesn't return within 30
260
+ # seconds, the timeout message is returned. If you configure a
261
+ # timeout, the timeout message is returned when the period times out.
262
+ #
263
+ # For more information, see [Completion message][2].
264
+ #
265
+ # If the optional update message is configured, it is played at the
266
+ # specified frequency while the Lambda function is running and the
267
+ # update message state is active. If the fulfillment update message is
268
+ # not active, the Lambda function runs with a 30 second timeout.
269
+ #
270
+ # For more information, see [Update message ][3]
271
+ #
246
272
  # The `StartConversation` operation is supported only in the following
247
273
  # SDKs:
248
274
  #
249
- # * [AWS SDK for C++][1]
275
+ # * [AWS SDK for C++][4]
250
276
  #
251
- # * [AWS SDK for Java V2][2]
277
+ # * [AWS SDK for Java V2][5]
252
278
  #
253
- # * [AWS SDK for Ruby V3][3]
279
+ # * [AWS SDK for Ruby V3][6]
254
280
  #
255
281
  #
256
282
  #
257
- # [1]: https://docs.aws.amazon.com/goto/SdkForCpp/runtime.lex.v2-2020-08-07/StartConversation
258
- # [2]: https://docs.aws.amazon.com/goto/SdkForJavaV2/runtime.lex.v2-2020-08-07/StartConversation
259
- # [3]: https://docs.aws.amazon.com/goto/SdkForRubyV3/runtime.lex.v2-2020-08-07/StartConversation
283
+ # [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_PostFulfillmentStatusSpecification.html
284
+ # [2]: https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-complete.html
285
+ # [3]: https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-update.html
286
+ # [4]: https://docs.aws.amazon.com/goto/SdkForCpp/runtime.lex.v2-2020-08-07/StartConversation
287
+ # [5]: https://docs.aws.amazon.com/goto/SdkForJavaV2/runtime.lex.v2-2020-08-07/StartConversation
288
+ # [6]: https://docs.aws.amazon.com/goto/SdkForRubyV3/runtime.lex.v2-2020-08-07/StartConversation
260
289
  #
261
290
  # @option params [required, String] :bot_id
262
291
  # The identifier of the bot to process the request.
@@ -472,9 +501,9 @@ module Aws::LexRuntimeV2
472
501
  # event.interpretations[0].intent.slots["NonEmptyString"].shape #=> String, one of "Scalar", "List"
473
502
  # event.interpretations[0].intent.slots["NonEmptyString"].values #=> Array
474
503
  # event.interpretations[0].intent.slots["NonEmptyString"].values[0] #=> Types::Slot
475
- # event.interpretations[0].intent.state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting"
504
+ # event.interpretations[0].intent.state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting", "FulfillmentInProgress"
476
505
  # event.interpretations[0].intent.confirmation_state #=> String, one of "Confirmed", "Denied", "None"
477
- # event.session_state.dialog_action.type #=> String, one of "Close", "ConfirmIntent", "Delegate", "ElicitIntent", "ElicitSlot"
506
+ # event.session_state.dialog_action.type #=> String, one of "Close", "ConfirmIntent", "Delegate", "ElicitIntent", "ElicitSlot", "None"
478
507
  # event.session_state.dialog_action.slot_to_elicit #=> String
479
508
  # event.session_state.intent.name #=> String
480
509
  # event.session_state.intent.slots #=> Hash
@@ -485,7 +514,7 @@ module Aws::LexRuntimeV2
485
514
  # event.session_state.intent.slots["NonEmptyString"].shape #=> String, one of "Scalar", "List"
486
515
  # event.session_state.intent.slots["NonEmptyString"].values #=> Array
487
516
  # event.session_state.intent.slots["NonEmptyString"].values[0] #=> Types::Slot
488
- # event.session_state.intent.state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting"
517
+ # event.session_state.intent.state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting", "FulfillmentInProgress"
489
518
  # event.session_state.intent.confirmation_state #=> String, one of "Confirmed", "Denied", "None"
490
519
  # event.session_state.active_contexts #=> Array
491
520
  # event.session_state.active_contexts[0].name #=> String
@@ -588,7 +617,7 @@ module Aws::LexRuntimeV2
588
617
  http_response: Seahorse::Client::Http::AsyncResponse.new,
589
618
  config: config)
590
619
  context[:gem_name] = 'aws-sdk-lexruntimev2'
591
- context[:gem_version] = '1.6.0'
620
+ context[:gem_version] = '1.7.0'
592
621
  Seahorse::Client::Request.new(handlers, context)
593
622
  end
594
623
 
@@ -466,9 +466,9 @@ module Aws::LexRuntimeV2
466
466
  # resp.interpretations[0].intent.slots["NonEmptyString"].shape #=> String, one of "Scalar", "List"
467
467
  # resp.interpretations[0].intent.slots["NonEmptyString"].values #=> Array
468
468
  # resp.interpretations[0].intent.slots["NonEmptyString"].values[0] #=> Types::Slot
469
- # resp.interpretations[0].intent.state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting"
469
+ # resp.interpretations[0].intent.state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting", "FulfillmentInProgress"
470
470
  # resp.interpretations[0].intent.confirmation_state #=> String, one of "Confirmed", "Denied", "None"
471
- # resp.session_state.dialog_action.type #=> String, one of "Close", "ConfirmIntent", "Delegate", "ElicitIntent", "ElicitSlot"
471
+ # resp.session_state.dialog_action.type #=> String, one of "Close", "ConfirmIntent", "Delegate", "ElicitIntent", "ElicitSlot", "None"
472
472
  # resp.session_state.dialog_action.slot_to_elicit #=> String
473
473
  # resp.session_state.intent.name #=> String
474
474
  # resp.session_state.intent.slots #=> Hash
@@ -479,7 +479,7 @@ module Aws::LexRuntimeV2
479
479
  # resp.session_state.intent.slots["NonEmptyString"].shape #=> String, one of "Scalar", "List"
480
480
  # resp.session_state.intent.slots["NonEmptyString"].values #=> Array
481
481
  # resp.session_state.intent.slots["NonEmptyString"].values[0] #=> Types::Slot
482
- # resp.session_state.intent.state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting"
482
+ # resp.session_state.intent.state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting", "FulfillmentInProgress"
483
483
  # resp.session_state.intent.confirmation_state #=> String, one of "Confirmed", "Denied", "None"
484
484
  # resp.session_state.active_contexts #=> Array
485
485
  # resp.session_state.active_contexts[0].name #=> String
@@ -577,7 +577,7 @@ module Aws::LexRuntimeV2
577
577
  # ],
578
578
  # session_state: { # required
579
579
  # dialog_action: {
580
- # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot
580
+ # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot, None
581
581
  # slot_to_elicit: "NonEmptyString",
582
582
  # },
583
583
  # intent: {
@@ -597,7 +597,7 @@ module Aws::LexRuntimeV2
597
597
  # ],
598
598
  # },
599
599
  # },
600
- # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting
600
+ # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting, FulfillmentInProgress
601
601
  # confirmation_state: "Confirmed", # accepts Confirmed, Denied, None
602
602
  # },
603
603
  # active_contexts: [
@@ -649,6 +649,30 @@ module Aws::LexRuntimeV2
649
649
  # In response, Amazon Lex V2 returns the next message to convey to the
650
650
  # user and an optional response card to display.
651
651
  #
652
+ # If the optional post-fulfillment response is specified, the messages
653
+ # are returned as follows. For more information, see
654
+ # [PostFulfillmentStatusSpecification][1].
655
+ #
656
+ # * **Success message** - Returned if the Lambda function completes
657
+ # successfully and the intent state is fulfilled or ready fulfillment
658
+ # if the message is present.
659
+ #
660
+ # * **Failed message** - The failed message is returned if the Lambda
661
+ # function throws an exception or if the Lambda function returns a
662
+ # failed intent state without a message.
663
+ #
664
+ # * **Timeout message** - If you don't configure a timeout message and
665
+ # a timeout, and the Lambda function doesn't return within 30
666
+ # seconds, the timeout message is returned. If you configure a
667
+ # timeout, the timeout message is returned when the period times out.
668
+ #
669
+ # For more information, see [Completion message][2].
670
+ #
671
+ #
672
+ #
673
+ # [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_PostFulfillmentStatusSpecification.html
674
+ # [2]: https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-complete.html
675
+ #
652
676
  # @option params [required, String] :bot_id
653
677
  # The identifier of the bot that processes the request.
654
678
  #
@@ -692,7 +716,7 @@ module Aws::LexRuntimeV2
692
716
  # text: "Text", # required
693
717
  # session_state: {
694
718
  # dialog_action: {
695
- # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot
719
+ # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot, None
696
720
  # slot_to_elicit: "NonEmptyString",
697
721
  # },
698
722
  # intent: {
@@ -712,7 +736,7 @@ module Aws::LexRuntimeV2
712
736
  # ],
713
737
  # },
714
738
  # },
715
- # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting
739
+ # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting, FulfillmentInProgress
716
740
  # confirmation_state: "Confirmed", # accepts Confirmed, Denied, None
717
741
  # },
718
742
  # active_contexts: [
@@ -748,7 +772,7 @@ module Aws::LexRuntimeV2
748
772
  # resp.messages[0].image_response_card.buttons #=> Array
749
773
  # resp.messages[0].image_response_card.buttons[0].text #=> String
750
774
  # resp.messages[0].image_response_card.buttons[0].value #=> String
751
- # resp.session_state.dialog_action.type #=> String, one of "Close", "ConfirmIntent", "Delegate", "ElicitIntent", "ElicitSlot"
775
+ # resp.session_state.dialog_action.type #=> String, one of "Close", "ConfirmIntent", "Delegate", "ElicitIntent", "ElicitSlot", "None"
752
776
  # resp.session_state.dialog_action.slot_to_elicit #=> String
753
777
  # resp.session_state.intent.name #=> String
754
778
  # resp.session_state.intent.slots #=> Hash
@@ -759,7 +783,7 @@ module Aws::LexRuntimeV2
759
783
  # resp.session_state.intent.slots["NonEmptyString"].shape #=> String, one of "Scalar", "List"
760
784
  # resp.session_state.intent.slots["NonEmptyString"].values #=> Array
761
785
  # resp.session_state.intent.slots["NonEmptyString"].values[0] #=> Types::Slot
762
- # resp.session_state.intent.state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting"
786
+ # resp.session_state.intent.state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting", "FulfillmentInProgress"
763
787
  # resp.session_state.intent.confirmation_state #=> String, one of "Confirmed", "Denied", "None"
764
788
  # resp.session_state.active_contexts #=> Array
765
789
  # resp.session_state.active_contexts[0].name #=> String
@@ -786,7 +810,7 @@ module Aws::LexRuntimeV2
786
810
  # resp.interpretations[0].intent.slots["NonEmptyString"].shape #=> String, one of "Scalar", "List"
787
811
  # resp.interpretations[0].intent.slots["NonEmptyString"].values #=> Array
788
812
  # resp.interpretations[0].intent.slots["NonEmptyString"].values[0] #=> Types::Slot
789
- # resp.interpretations[0].intent.state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting"
813
+ # resp.interpretations[0].intent.state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting", "FulfillmentInProgress"
790
814
  # resp.interpretations[0].intent.confirmation_state #=> String, one of "Confirmed", "Denied", "None"
791
815
  # resp.request_attributes #=> Hash
792
816
  # resp.request_attributes["NonEmptyString"] #=> String
@@ -831,6 +855,30 @@ module Aws::LexRuntimeV2
831
855
  # Java object to send to Amazon Lex V2, and a second that decodes and
832
856
  # decompresses a response from Amazon Lex V2.
833
857
  #
858
+ # If the optional post-fulfillment response is specified, the messages
859
+ # are returned as follows. For more information, see
860
+ # [PostFulfillmentStatusSpecification][1].
861
+ #
862
+ # * **Success message** - Returned if the Lambda function completes
863
+ # successfully and the intent state is fulfilled or ready fulfillment
864
+ # if the message is present.
865
+ #
866
+ # * **Failed message** - The failed message is returned if the Lambda
867
+ # function throws an exception or if the Lambda function returns a
868
+ # failed intent state without a message.
869
+ #
870
+ # * **Timeout message** - If you don't configure a timeout message and
871
+ # a timeout, and the Lambda function doesn't return within 30
872
+ # seconds, the timeout message is returned. If you configure a
873
+ # timeout, the timeout message is returned when the period times out.
874
+ #
875
+ # For more information, see [Completion message][2].
876
+ #
877
+ #
878
+ #
879
+ # [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_PostFulfillmentStatusSpecification.html
880
+ # [2]: https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-complete.html
881
+ #
834
882
  # @option params [required, String] :bot_id
835
883
  # The identifier of the bot that should receive the request.
836
884
  #
@@ -981,7 +1029,7 @@ module Aws::LexRuntimeV2
981
1029
  params: params,
982
1030
  config: config)
983
1031
  context[:gem_name] = 'aws-sdk-lexruntimev2'
984
- context[:gem_version] = '1.6.0'
1032
+ context[:gem_version] = '1.7.0'
985
1033
  Seahorse::Client::Request.new(handlers, context)
986
1034
  end
987
1035
 
@@ -59,8 +59,13 @@ module Aws::LexRuntimeV2
59
59
  #
60
60
  # @option params [Boolean] :disable_playback
61
61
  # Determines whether Amazon Lex V2 should send audio responses to the
62
- # client application. When this parameter if `false`, the client
63
- # application needs to create responses for the user.
62
+ # client application.
63
+ #
64
+ # Set this field to false when the client is operating in a playback
65
+ # mode where audio responses are played to the user. If the client
66
+ # isn't operating in playback mode, such as a text chat application,
67
+ # set this to true so that Amazon Lex V2 doesn't wait for the prompt to
68
+ # finish playing on the client.
64
69
  #
65
70
  # @option params [String] :event_id
66
71
  # A unique identifier that your application assigns to the event. You
@@ -57,11 +57,11 @@ module Aws::LexRuntimeV2
57
57
  # @return [Types::ActiveContextTimeToLive]
58
58
  #
59
59
  # @!attribute [rw] context_attributes
60
- # A lis tof contexts active for the request. A context can be
60
+ # A list of contexts active for the request. A context can be
61
61
  # activated when a previous intent is fulfilled, or by including the
62
62
  # context in the request.
63
63
  #
64
- # If you don't specify a list of contexts, Amazon Lex will use the
64
+ # If you don't specify a list of contexts, Amazon Lex V2 will use the
65
65
  # current list of contexts for the session. If you specify an empty
66
66
  # list, all contexts for the session are cleared.
67
67
  # @return [Hash<String,String>]
@@ -256,7 +256,7 @@ module Aws::LexRuntimeV2
256
256
  # response_content_type: "NonEmptyString", # required
257
257
  # session_state: {
258
258
  # dialog_action: {
259
- # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot
259
+ # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot, None
260
260
  # slot_to_elicit: "NonEmptyString",
261
261
  # },
262
262
  # intent: {
@@ -276,7 +276,7 @@ module Aws::LexRuntimeV2
276
276
  # ],
277
277
  # },
278
278
  # },
279
- # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting
279
+ # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting, FulfillmentInProgress
280
280
  # confirmation_state: "Confirmed", # accepts Confirmed, Denied, None
281
281
  # },
282
282
  # active_contexts: [
@@ -366,8 +366,13 @@ module Aws::LexRuntimeV2
366
366
  #
367
367
  # @!attribute [rw] disable_playback
368
368
  # Determines whether Amazon Lex V2 should send audio responses to the
369
- # client application. When this parameter if `false`, the client
370
- # application needs to create responses for the user.
369
+ # client application.
370
+ #
371
+ # Set this field to false when the client is operating in a playback
372
+ # mode where audio responses are played to the user. If the client
373
+ # isn't operating in playback mode, such as a text chat application,
374
+ # set this to true so that Amazon Lex V2 doesn't wait for the prompt
375
+ # to finish playing on the client.
371
376
  # @return [Boolean]
372
377
  #
373
378
  # @!attribute [rw] event_id
@@ -531,7 +536,7 @@ module Aws::LexRuntimeV2
531
536
  # data as a hash:
532
537
  #
533
538
  # {
534
- # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot
539
+ # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot, None
535
540
  # slot_to_elicit: "NonEmptyString",
536
541
  # }
537
542
  #
@@ -770,7 +775,7 @@ module Aws::LexRuntimeV2
770
775
  # ],
771
776
  # },
772
777
  # },
773
- # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting
778
+ # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting, FulfillmentInProgress
774
779
  # confirmation_state: "Confirmed", # accepts Confirmed, Denied, None
775
780
  # }
776
781
  #
@@ -1040,7 +1045,7 @@ module Aws::LexRuntimeV2
1040
1045
  # ],
1041
1046
  # session_state: { # required
1042
1047
  # dialog_action: {
1043
- # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot
1048
+ # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot, None
1044
1049
  # slot_to_elicit: "NonEmptyString",
1045
1050
  # },
1046
1051
  # intent: {
@@ -1060,7 +1065,7 @@ module Aws::LexRuntimeV2
1060
1065
  # ],
1061
1066
  # },
1062
1067
  # },
1063
- # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting
1068
+ # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting, FulfillmentInProgress
1064
1069
  # confirmation_state: "Confirmed", # accepts Confirmed, Denied, None
1065
1070
  # },
1066
1071
  # active_contexts: [
@@ -1205,7 +1210,7 @@ module Aws::LexRuntimeV2
1205
1210
  # text: "Text", # required
1206
1211
  # session_state: {
1207
1212
  # dialog_action: {
1208
- # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot
1213
+ # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot, None
1209
1214
  # slot_to_elicit: "NonEmptyString",
1210
1215
  # },
1211
1216
  # intent: {
@@ -1225,7 +1230,7 @@ module Aws::LexRuntimeV2
1225
1230
  # ],
1226
1231
  # },
1227
1232
  # },
1228
- # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting
1233
+ # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting, FulfillmentInProgress
1229
1234
  # confirmation_state: "Confirmed", # accepts Confirmed, Denied, None
1230
1235
  # },
1231
1236
  # active_contexts: [
@@ -1657,7 +1662,7 @@ module Aws::LexRuntimeV2
1657
1662
  #
1658
1663
  # {
1659
1664
  # dialog_action: {
1660
- # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot
1665
+ # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot, None
1661
1666
  # slot_to_elicit: "NonEmptyString",
1662
1667
  # },
1663
1668
  # intent: {
@@ -1677,7 +1682,7 @@ module Aws::LexRuntimeV2
1677
1682
  # ],
1678
1683
  # },
1679
1684
  # },
1680
- # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting
1685
+ # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting, FulfillmentInProgress
1681
1686
  # confirmation_state: "Confirmed", # accepts Confirmed, Denied, None
1682
1687
  # },
1683
1688
  # active_contexts: [
@@ -2017,7 +2022,7 @@ module Aws::LexRuntimeV2
2017
2022
  # response_content_type: "NonEmptyString", # required
2018
2023
  # session_state: {
2019
2024
  # dialog_action: {
2020
- # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot
2025
+ # type: "Close", # required, accepts Close, ConfirmIntent, Delegate, ElicitIntent, ElicitSlot, None
2021
2026
  # slot_to_elicit: "NonEmptyString",
2022
2027
  # },
2023
2028
  # intent: {
@@ -2037,7 +2042,7 @@ module Aws::LexRuntimeV2
2037
2042
  # ],
2038
2043
  # },
2039
2044
  # },
2040
- # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting
2045
+ # state: "Failed", # accepts Failed, Fulfilled, InProgress, ReadyForFulfillment, Waiting, FulfillmentInProgress
2041
2046
  # confirmation_state: "Confirmed", # accepts Confirmed, Denied, None
2042
2047
  # },
2043
2048
  # active_contexts: [
@@ -50,6 +50,6 @@ require_relative 'aws-sdk-lexruntimev2/event_streams'
50
50
  # @!group service
51
51
  module Aws::LexRuntimeV2
52
52
 
53
- GEM_VERSION = '1.6.0'
53
+ GEM_VERSION = '1.7.0'
54
54
 
55
55
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lexruntimev2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core