aws-sdk-lexmodelsv2 1.14.0 → 1.15.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lexmodelsv2/client.rb +60 -12
- data/lib/aws-sdk-lexmodelsv2/client_api.rb +2 -0
- data/lib/aws-sdk-lexmodelsv2/types.rb +135 -29
- data/lib/aws-sdk-lexmodelsv2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94ea7b53f8dfdaf65f8846e1a5bfab77010af47314f2470c83528a75b9195b9b
|
4
|
+
data.tar.gz: 536fd9948144131b02e3b37d82ce18dac32ca113883a9fe555f7c639270edc91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40762e45124be33de8989e106077530117a5ec5a8bd59a67b196328c7315663183c371c36818ec6a35a5b716ebd10e098199d31870dddc0ca14aecd605927b63
|
7
|
+
data.tar.gz: 1efae3c189c01236224b4608ce47c97445923e64d513412017aa9c462b3e38a9326e7e49810dba247c3b7284be7ef8ea1b8105a9401e6c22d5566bd8cc0bf582
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.15.0 (2021-11-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added support for Polly Neural TTS (NTTS) voices. Customers can choose between 'standard' and 'neural' for Polly Engine configuration per locale when creating or updating an Amazon Lex bot.
|
8
|
+
|
4
9
|
1.14.0 (2021-11-04)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.15.0
|
@@ -342,7 +342,11 @@ module Aws::LexModelsV2
|
|
342
342
|
#
|
343
343
|
# @option params [required, String] :bot_id
|
344
344
|
# The identifier of the bot to build. The identifier is returned in the
|
345
|
-
# response from the operation.
|
345
|
+
# response from the [CreateBot][1] operation.
|
346
|
+
#
|
347
|
+
#
|
348
|
+
#
|
349
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_CreateBot.html
|
346
350
|
#
|
347
351
|
# @option params [required, String] :bot_version
|
348
352
|
# The version of the bot to build. This can only be the draft version of
|
@@ -501,7 +505,12 @@ module Aws::LexModelsV2
|
|
501
505
|
#
|
502
506
|
# @option params [String] :bot_version
|
503
507
|
# The version of the bot that this alias points to. You can use the
|
504
|
-
# operation to change the bot version associated
|
508
|
+
# [UpdateBotAlias][1] operation to change the bot version associated
|
509
|
+
# with the alias.
|
510
|
+
#
|
511
|
+
#
|
512
|
+
#
|
513
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_UpdateBotAlias.html
|
505
514
|
#
|
506
515
|
# @option params [Hash<String,Types::BotAliasLocaleSettings>] :bot_alias_locale_settings
|
507
516
|
# Maps configuration information to a specific locale. You can use this
|
@@ -700,6 +709,7 @@ module Aws::LexModelsV2
|
|
700
709
|
# nlu_intent_confidence_threshold: 1.0, # required
|
701
710
|
# voice_settings: {
|
702
711
|
# voice_id: "VoiceId", # required
|
712
|
+
# engine: "standard", # accepts standard, neural
|
703
713
|
# },
|
704
714
|
# })
|
705
715
|
#
|
@@ -712,6 +722,7 @@ module Aws::LexModelsV2
|
|
712
722
|
# resp.description #=> String
|
713
723
|
# resp.nlu_intent_confidence_threshold #=> Float
|
714
724
|
# resp.voice_settings.voice_id #=> String
|
725
|
+
# resp.voice_settings.engine #=> String, one of "standard", "neural"
|
715
726
|
# resp.bot_locale_status #=> String, one of "Creating", "Building", "Built", "ReadyExpressTesting", "Failed", "Deleting", "NotBuilt", "Importing"
|
716
727
|
# resp.creation_date_time #=> Time
|
717
728
|
#
|
@@ -2570,7 +2581,11 @@ module Aws::LexModelsV2
|
|
2570
2581
|
end
|
2571
2582
|
|
2572
2583
|
# Deletes a specific version of a bot. To delete all version of a bot,
|
2573
|
-
# use the DeleteBot operation.
|
2584
|
+
# use the [DeleteBot][1] operation.
|
2585
|
+
#
|
2586
|
+
#
|
2587
|
+
#
|
2588
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_DeleteBot.html
|
2574
2589
|
#
|
2575
2590
|
# @option params [required, String] :bot_id
|
2576
2591
|
# The identifier of the bot that contains the version.
|
@@ -2904,9 +2919,10 @@ module Aws::LexModelsV2
|
|
2904
2919
|
# Deletes stored utterances.
|
2905
2920
|
#
|
2906
2921
|
# Amazon Lex stores the utterances that users send to your bot.
|
2907
|
-
# Utterances are stored for 15 days for use with the
|
2908
|
-
#
|
2909
|
-
# respond to user
|
2922
|
+
# Utterances are stored for 15 days for use with the
|
2923
|
+
# [ListAggregatedUtterances][1] operation, and then stored indefinitely
|
2924
|
+
# for use in improving the ability of your bot to respond to user
|
2925
|
+
# input..
|
2910
2926
|
#
|
2911
2927
|
# Use the `DeleteUtterances` operation to manually delete utterances for
|
2912
2928
|
# a specific session. When you use the `DeleteUtterances` operation,
|
@@ -2914,6 +2930,10 @@ module Aws::LexModelsV2
|
|
2914
2930
|
# input are deleted immediately. Utterances stored for use with the
|
2915
2931
|
# `ListAggregatedUtterances` operation are deleted after 15 days.
|
2916
2932
|
#
|
2933
|
+
#
|
2934
|
+
#
|
2935
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_ListAggregatedUtterances.html
|
2936
|
+
#
|
2917
2937
|
# @option params [required, String] :bot_id
|
2918
2938
|
# The unique identifier of the bot that contains the utterances.
|
2919
2939
|
#
|
@@ -2928,7 +2948,13 @@ module Aws::LexModelsV2
|
|
2928
2948
|
#
|
2929
2949
|
# @option params [String] :session_id
|
2930
2950
|
# The unique identifier of the session with the user. The ID is returned
|
2931
|
-
# in the response from the and
|
2951
|
+
# in the response from the [RecognizeText][1] and
|
2952
|
+
# [RecognizeUtterance][2] operations.
|
2953
|
+
#
|
2954
|
+
#
|
2955
|
+
#
|
2956
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_runtime_RecognizeText.html
|
2957
|
+
# [2]: https://docs.aws.amazon.com/lexv2/latest/dg/API_runtime_RecognizeUtterance.html
|
2932
2958
|
#
|
2933
2959
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2934
2960
|
#
|
@@ -3123,6 +3149,7 @@ module Aws::LexModelsV2
|
|
3123
3149
|
# resp.description #=> String
|
3124
3150
|
# resp.nlu_intent_confidence_threshold #=> Float
|
3125
3151
|
# resp.voice_settings.voice_id #=> String
|
3152
|
+
# resp.voice_settings.engine #=> String, one of "standard", "neural"
|
3126
3153
|
# resp.intents_count #=> Integer
|
3127
3154
|
# resp.slot_types_count #=> Integer
|
3128
3155
|
# resp.bot_locale_status #=> String, one of "Creating", "Building", "Built", "ReadyExpressTesting", "Failed", "Deleting", "NotBuilt", "Importing"
|
@@ -3299,6 +3326,7 @@ module Aws::LexModelsV2
|
|
3299
3326
|
# resp.resource_specification.bot_locale_import_specification.locale_id #=> String
|
3300
3327
|
# resp.resource_specification.bot_locale_import_specification.nlu_intent_confidence_threshold #=> Float
|
3301
3328
|
# resp.resource_specification.bot_locale_import_specification.voice_settings.voice_id #=> String
|
3329
|
+
# resp.resource_specification.bot_locale_import_specification.voice_settings.engine #=> String, one of "standard", "neural"
|
3302
3330
|
# resp.imported_resource_id #=> String
|
3303
3331
|
# resp.imported_resource_name #=> String
|
3304
3332
|
# resp.merge_strategy #=> String, one of "Overwrite", "FailOnConflict"
|
@@ -4268,7 +4296,11 @@ module Aws::LexModelsV2
|
|
4268
4296
|
# To use a built-in intent as a the base for your own intent, include
|
4269
4297
|
# the built-in intent signature in the `parentIntentSignature` parameter
|
4270
4298
|
# when you call the `CreateIntent` operation. For more information, see
|
4271
|
-
# CreateIntent.
|
4299
|
+
# [CreateIntent][1].
|
4300
|
+
#
|
4301
|
+
#
|
4302
|
+
#
|
4303
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_CreateIntent.html
|
4272
4304
|
#
|
4273
4305
|
# @option params [required, String] :locale_id
|
4274
4306
|
# The identifier of the language and locale of the intents to list. The
|
@@ -4907,7 +4939,11 @@ module Aws::LexModelsV2
|
|
4907
4939
|
#
|
4908
4940
|
# @option params [required, String] :import_id
|
4909
4941
|
# The unique identifier for the import. It is included in the response
|
4910
|
-
# from the operation.
|
4942
|
+
# from the [CreateUploadUrl][1] operation.
|
4943
|
+
#
|
4944
|
+
#
|
4945
|
+
#
|
4946
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_CreateUploadUrl.html
|
4911
4947
|
#
|
4912
4948
|
# @option params [required, Types::ImportResourceSpecification] :resource_specification
|
4913
4949
|
# Parameters for creating the bot or bot locale.
|
@@ -4957,6 +4993,7 @@ module Aws::LexModelsV2
|
|
4957
4993
|
# nlu_intent_confidence_threshold: 1.0,
|
4958
4994
|
# voice_settings: {
|
4959
4995
|
# voice_id: "VoiceId", # required
|
4996
|
+
# engine: "standard", # accepts standard, neural
|
4960
4997
|
# },
|
4961
4998
|
# },
|
4962
4999
|
# },
|
@@ -4980,6 +5017,7 @@ module Aws::LexModelsV2
|
|
4980
5017
|
# resp.resource_specification.bot_locale_import_specification.locale_id #=> String
|
4981
5018
|
# resp.resource_specification.bot_locale_import_specification.nlu_intent_confidence_threshold #=> Float
|
4982
5019
|
# resp.resource_specification.bot_locale_import_specification.voice_settings.voice_id #=> String
|
5020
|
+
# resp.resource_specification.bot_locale_import_specification.voice_settings.engine #=> String, one of "standard", "neural"
|
4983
5021
|
# resp.merge_strategy #=> String, one of "Overwrite", "FailOnConflict"
|
4984
5022
|
# resp.import_status #=> String, one of "InProgress", "Completed", "Failed", "Deleting"
|
4985
5023
|
# resp.creation_date_time #=> Time
|
@@ -5056,7 +5094,11 @@ module Aws::LexModelsV2
|
|
5056
5094
|
#
|
5057
5095
|
# @option params [required, String] :bot_id
|
5058
5096
|
# The unique identifier of the bot to update. This identifier is
|
5059
|
-
# returned by the CreateBot operation.
|
5097
|
+
# returned by the [CreateBot][1] operation.
|
5098
|
+
#
|
5099
|
+
#
|
5100
|
+
#
|
5101
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_CreateBot.html
|
5060
5102
|
#
|
5061
5103
|
# @option params [required, String] :bot_name
|
5062
5104
|
# The new name of the bot. The name must be unique in the account that
|
@@ -5308,6 +5350,7 @@ module Aws::LexModelsV2
|
|
5308
5350
|
# nlu_intent_confidence_threshold: 1.0, # required
|
5309
5351
|
# voice_settings: {
|
5310
5352
|
# voice_id: "VoiceId", # required
|
5353
|
+
# engine: "standard", # accepts standard, neural
|
5311
5354
|
# },
|
5312
5355
|
# })
|
5313
5356
|
#
|
@@ -5320,6 +5363,7 @@ module Aws::LexModelsV2
|
|
5320
5363
|
# resp.description #=> String
|
5321
5364
|
# resp.nlu_intent_confidence_threshold #=> Float
|
5322
5365
|
# resp.voice_settings.voice_id #=> String
|
5366
|
+
# resp.voice_settings.engine #=> String, one of "standard", "neural"
|
5323
5367
|
# resp.bot_locale_status #=> String, one of "Creating", "Building", "Built", "ReadyExpressTesting", "Failed", "Deleting", "NotBuilt", "Importing"
|
5324
5368
|
# resp.failure_reasons #=> Array
|
5325
5369
|
# resp.failure_reasons[0] #=> String
|
@@ -5340,7 +5384,11 @@ module Aws::LexModelsV2
|
|
5340
5384
|
# The password is not required. If you don't supply a password, Amazon
|
5341
5385
|
# Lex generates a zip file that is not protected by a password. This is
|
5342
5386
|
# the archive that is available at the pre-signed S3 URL provided by the
|
5343
|
-
# operation.
|
5387
|
+
# [DescribeExport][1] operation.
|
5388
|
+
#
|
5389
|
+
#
|
5390
|
+
#
|
5391
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_DescribeExport.html
|
5344
5392
|
#
|
5345
5393
|
# @option params [required, String] :export_id
|
5346
5394
|
# The unique identifier Amazon Lex assigned to the export.
|
@@ -6781,7 +6829,7 @@ module Aws::LexModelsV2
|
|
6781
6829
|
params: params,
|
6782
6830
|
config: config)
|
6783
6831
|
context[:gem_name] = 'aws-sdk-lexmodelsv2'
|
6784
|
-
context[:gem_version] = '1.
|
6832
|
+
context[:gem_version] = '1.15.0'
|
6785
6833
|
Seahorse::Client::Request.new(handlers, context)
|
6786
6834
|
end
|
6787
6835
|
|
@@ -379,6 +379,7 @@ module Aws::LexModelsV2
|
|
379
379
|
UtteranceAggregationDuration = Shapes::StructureShape.new(name: 'UtteranceAggregationDuration')
|
380
380
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
381
381
|
Value = Shapes::StringShape.new(name: 'Value')
|
382
|
+
VoiceEngine = Shapes::StringShape.new(name: 'VoiceEngine')
|
382
383
|
VoiceId = Shapes::StringShape.new(name: 'VoiceId')
|
383
384
|
VoiceSettings = Shapes::StructureShape.new(name: 'VoiceSettings')
|
384
385
|
WaitAndContinueSpecification = Shapes::StructureShape.new(name: 'WaitAndContinueSpecification')
|
@@ -1758,6 +1759,7 @@ module Aws::LexModelsV2
|
|
1758
1759
|
ValidationException.struct_class = Types::ValidationException
|
1759
1760
|
|
1760
1761
|
VoiceSettings.add_member(:voice_id, Shapes::ShapeRef.new(shape: VoiceId, required: true, location_name: "voiceId"))
|
1762
|
+
VoiceSettings.add_member(:engine, Shapes::ShapeRef.new(shape: VoiceEngine, location_name: "engine"))
|
1761
1763
|
VoiceSettings.struct_class = Types::VoiceSettings
|
1762
1764
|
|
1763
1765
|
WaitAndContinueSpecification.add_member(:waiting_response, Shapes::ShapeRef.new(shape: ResponseSpecification, required: true, location_name: "waitingResponse"))
|
@@ -145,8 +145,12 @@ module Aws::LexModelsV2
|
|
145
145
|
#
|
146
146
|
# @!attribute [rw] s3_bucket
|
147
147
|
# The Amazon S3 bucket where the audio log files are stored. The IAM
|
148
|
-
# role specified in the `roleArn` parameter of the CreateBot
|
149
|
-
# must have permission to write to this bucket.
|
148
|
+
# role specified in the `roleArn` parameter of the [CreateBot][1]
|
149
|
+
# operation must have permission to write to this bucket.
|
150
|
+
#
|
151
|
+
#
|
152
|
+
#
|
153
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_CreateBot.html
|
150
154
|
# @return [Types::S3BucketLogDestination]
|
151
155
|
#
|
152
156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/AudioLogDestination AWS API Documentation
|
@@ -252,13 +256,21 @@ module Aws::LexModelsV2
|
|
252
256
|
include Aws::Structure
|
253
257
|
end
|
254
258
|
|
255
|
-
# Summary information about bot aliases returned from the
|
256
|
-
# operation.
|
259
|
+
# Summary information about bot aliases returned from the
|
260
|
+
# [ListBotAliases][1] operation.
|
261
|
+
#
|
262
|
+
#
|
263
|
+
#
|
264
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_ListBotAliases.html
|
257
265
|
#
|
258
266
|
# @!attribute [rw] bot_alias_id
|
259
267
|
# The unique identifier assigned to the bot alias. You can use this ID
|
260
268
|
# to get detailed information about the alias using the
|
261
|
-
# DescribeBotAlias operation.
|
269
|
+
# [DescribeBotAlias][1] operation.
|
270
|
+
#
|
271
|
+
#
|
272
|
+
#
|
273
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_DescribeBotAlias.html
|
262
274
|
# @return [String]
|
263
275
|
#
|
264
276
|
# @!attribute [rw] bot_alias_name
|
@@ -541,6 +553,7 @@ module Aws::LexModelsV2
|
|
541
553
|
# nlu_intent_confidence_threshold: 1.0,
|
542
554
|
# voice_settings: {
|
543
555
|
# voice_id: "VoiceId", # required
|
556
|
+
# engine: "standard", # accepts standard, neural
|
544
557
|
# },
|
545
558
|
# }
|
546
559
|
#
|
@@ -631,8 +644,12 @@ module Aws::LexModelsV2
|
|
631
644
|
include Aws::Structure
|
632
645
|
end
|
633
646
|
|
634
|
-
# Summary information about bot locales returned by the
|
635
|
-
# operation.
|
647
|
+
# Summary information about bot locales returned by the
|
648
|
+
# [ListBotLocales][1] operation.
|
649
|
+
#
|
650
|
+
#
|
651
|
+
#
|
652
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_ListBotLocales.html
|
636
653
|
#
|
637
654
|
# @!attribute [rw] locale_id
|
638
655
|
# The language and locale of the bot locale.
|
@@ -700,11 +717,21 @@ module Aws::LexModelsV2
|
|
700
717
|
include Aws::Structure
|
701
718
|
end
|
702
719
|
|
703
|
-
# Summary information about a bot returned by the ListBots
|
720
|
+
# Summary information about a bot returned by the [ListBots][1]
|
721
|
+
# operation.
|
722
|
+
#
|
723
|
+
#
|
724
|
+
#
|
725
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_ListBots.html
|
704
726
|
#
|
705
727
|
# @!attribute [rw] bot_id
|
706
728
|
# The unique identifier assigned to the bot. Use this ID to get
|
707
|
-
# detailed information about the bot with the DescribeBot
|
729
|
+
# detailed information about the bot with the [DescribeBot][1]
|
730
|
+
# operation.
|
731
|
+
#
|
732
|
+
#
|
733
|
+
#
|
734
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_DescribeBot.html
|
708
735
|
# @return [String]
|
709
736
|
#
|
710
737
|
# @!attribute [rw] bot_name
|
@@ -791,7 +818,11 @@ module Aws::LexModelsV2
|
|
791
818
|
end
|
792
819
|
|
793
820
|
# Summary information about a bot version returned by the
|
794
|
-
# ListBotVersions operation.
|
821
|
+
# [ListBotVersions][1] operation.
|
822
|
+
#
|
823
|
+
#
|
824
|
+
#
|
825
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_ListBotVersions.html
|
795
826
|
#
|
796
827
|
# @!attribute [rw] bot_name
|
797
828
|
# The name of the bot associated with the version.
|
@@ -838,7 +869,11 @@ module Aws::LexModelsV2
|
|
838
869
|
#
|
839
870
|
# @!attribute [rw] bot_id
|
840
871
|
# The identifier of the bot to build. The identifier is returned in
|
841
|
-
# the response from the operation.
|
872
|
+
# the response from the [CreateBot][1] operation.
|
873
|
+
#
|
874
|
+
#
|
875
|
+
#
|
876
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_CreateBot.html
|
842
877
|
# @return [String]
|
843
878
|
#
|
844
879
|
# @!attribute [rw] bot_version
|
@@ -932,8 +967,12 @@ module Aws::LexModelsV2
|
|
932
967
|
include Aws::Structure
|
933
968
|
end
|
934
969
|
|
935
|
-
# Provides summary information about a built-in intent for the
|
936
|
-
# ListBuiltInIntents operation.
|
970
|
+
# Provides summary information about a built-in intent for the [
|
971
|
+
# ListBuiltInIntents ][1] operation.
|
972
|
+
#
|
973
|
+
#
|
974
|
+
#
|
975
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_ListBuiltInIntents.html
|
937
976
|
#
|
938
977
|
# @!attribute [rw] intent_signature
|
939
978
|
# The signature of the built-in intent. Use this to specify the parent
|
@@ -980,8 +1019,12 @@ module Aws::LexModelsV2
|
|
980
1019
|
include Aws::Structure
|
981
1020
|
end
|
982
1021
|
|
983
|
-
# Provides summary information about a built-in slot type for the
|
984
|
-
# ListBuiltInSlotTypes operation.
|
1022
|
+
# Provides summary information about a built-in slot type for the [
|
1023
|
+
# ListBuiltInSlotTypes ][1] operation.
|
1024
|
+
#
|
1025
|
+
#
|
1026
|
+
#
|
1027
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_ListBuiltInSlotTypes.html
|
985
1028
|
#
|
986
1029
|
# @!attribute [rw] slot_type_signature
|
987
1030
|
# The signature of the built-in slot type. Use this to specify the
|
@@ -1214,7 +1257,12 @@ module Aws::LexModelsV2
|
|
1214
1257
|
#
|
1215
1258
|
# @!attribute [rw] bot_version
|
1216
1259
|
# The version of the bot that this alias points to. You can use the
|
1217
|
-
# operation to change the bot version associated
|
1260
|
+
# [UpdateBotAlias][1] operation to change the bot version associated
|
1261
|
+
# with the alias.
|
1262
|
+
#
|
1263
|
+
#
|
1264
|
+
#
|
1265
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_UpdateBotAlias.html
|
1218
1266
|
# @return [String]
|
1219
1267
|
#
|
1220
1268
|
# @!attribute [rw] bot_alias_locale_settings
|
@@ -1339,6 +1387,7 @@ module Aws::LexModelsV2
|
|
1339
1387
|
# nlu_intent_confidence_threshold: 1.0, # required
|
1340
1388
|
# voice_settings: {
|
1341
1389
|
# voice_id: "VoiceId", # required
|
1390
|
+
# engine: "standard", # accepts standard, neural
|
1342
1391
|
# },
|
1343
1392
|
# }
|
1344
1393
|
#
|
@@ -1750,8 +1799,12 @@ module Aws::LexModelsV2
|
|
1750
1799
|
#
|
1751
1800
|
# @!attribute [rw] export_status
|
1752
1801
|
# The status of the export. When the status is `Completed`, you can
|
1753
|
-
# use the operation to get the pre-signed S3 URL
|
1754
|
-
# bot or bot locale.
|
1802
|
+
# use the [DescribeExport][1] operation to get the pre-signed S3 URL
|
1803
|
+
# link to your exported bot or bot locale.
|
1804
|
+
#
|
1805
|
+
#
|
1806
|
+
#
|
1807
|
+
# [1]: https://docs.aws.amazon.com/latest/dg/API_DescribeExport.html
|
1755
1808
|
# @return [String]
|
1756
1809
|
#
|
1757
1810
|
# @!attribute [rw] creation_date_time
|
@@ -3232,7 +3285,11 @@ module Aws::LexModelsV2
|
|
3232
3285
|
|
3233
3286
|
# @!attribute [rw] import_id
|
3234
3287
|
# An identifier for a unique import job. Use it when you call the
|
3235
|
-
# operation.
|
3288
|
+
# [StartImport][1] operation.
|
3289
|
+
#
|
3290
|
+
#
|
3291
|
+
#
|
3292
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_StartImport.html
|
3236
3293
|
# @return [String]
|
3237
3294
|
#
|
3238
3295
|
# @!attribute [rw] upload_url
|
@@ -3572,8 +3629,14 @@ module Aws::LexModelsV2
|
|
3572
3629
|
#
|
3573
3630
|
# @!attribute [rw] export_status
|
3574
3631
|
# The current status of the deletion. When the deletion is complete,
|
3575
|
-
# the export will no longer be returned by the
|
3576
|
-
#
|
3632
|
+
# the export will no longer be returned by the [ListExports][1]
|
3633
|
+
# operation and calls to the [ DescribeExport][2] operation with the
|
3634
|
+
# export identifier will fail.
|
3635
|
+
#
|
3636
|
+
#
|
3637
|
+
#
|
3638
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_ListExports.html
|
3639
|
+
# [2]: https://docs.aws.amazon.com/lexv2/latest/dg/API_DescribeExport.html
|
3577
3640
|
# @return [String]
|
3578
3641
|
#
|
3579
3642
|
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/DeleteExportResponse AWS API Documentation
|
@@ -3610,8 +3673,14 @@ module Aws::LexModelsV2
|
|
3610
3673
|
#
|
3611
3674
|
# @!attribute [rw] import_status
|
3612
3675
|
# The current status of the deletion. When the deletion is complete,
|
3613
|
-
# the import will no longer be returned by the
|
3614
|
-
#
|
3676
|
+
# the import will no longer be returned by the [ListImports][1]
|
3677
|
+
# operation and calls to the [DescribeImport][2] operation with the
|
3678
|
+
# import identifier will fail.
|
3679
|
+
#
|
3680
|
+
#
|
3681
|
+
#
|
3682
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_ListImports.html
|
3683
|
+
# [2]: https://docs.aws.amazon.com/lexv2/latest/dg/API_DescribeImport.html
|
3615
3684
|
# @return [String]
|
3616
3685
|
#
|
3617
3686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/DeleteImportResponse AWS API Documentation
|
@@ -3901,7 +3970,13 @@ module Aws::LexModelsV2
|
|
3901
3970
|
#
|
3902
3971
|
# @!attribute [rw] session_id
|
3903
3972
|
# The unique identifier of the session with the user. The ID is
|
3904
|
-
# returned in the response from the and
|
3973
|
+
# returned in the response from the [RecognizeText][1] and
|
3974
|
+
# [RecognizeUtterance][2] operations.
|
3975
|
+
#
|
3976
|
+
#
|
3977
|
+
#
|
3978
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_runtime_RecognizeText.html
|
3979
|
+
# [2]: https://docs.aws.amazon.com/lexv2/latest/dg/API_runtime_RecognizeUtterance.html
|
3905
3980
|
# @return [String]
|
3906
3981
|
#
|
3907
3982
|
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/DeleteUtterancesRequest AWS API Documentation
|
@@ -4906,7 +4981,11 @@ module Aws::LexModelsV2
|
|
4906
4981
|
include Aws::Structure
|
4907
4982
|
end
|
4908
4983
|
|
4909
|
-
# Filters the response form the operation
|
4984
|
+
# Filters the response form the [ListExports][1] operation
|
4985
|
+
#
|
4986
|
+
#
|
4987
|
+
#
|
4988
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_ListExports.html
|
4910
4989
|
#
|
4911
4990
|
# @note When making an API call, you may pass ExportFilter
|
4912
4991
|
# data as a hash:
|
@@ -5737,7 +5816,11 @@ module Aws::LexModelsV2
|
|
5737
5816
|
include Aws::Structure
|
5738
5817
|
end
|
5739
5818
|
|
5740
|
-
# Filters the response from the operation.
|
5819
|
+
# Filters the response from the [ListImports][1] operation.
|
5820
|
+
#
|
5821
|
+
#
|
5822
|
+
#
|
5823
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_ListImports.html
|
5741
5824
|
#
|
5742
5825
|
# @note When making an API call, you may pass ImportFilter
|
5743
5826
|
# data as a hash:
|
@@ -5802,6 +5885,7 @@ module Aws::LexModelsV2
|
|
5802
5885
|
# nlu_intent_confidence_threshold: 1.0,
|
5803
5886
|
# voice_settings: {
|
5804
5887
|
# voice_id: "VoiceId", # required
|
5888
|
+
# engine: "standard", # accepts standard, neural
|
5805
5889
|
# },
|
5806
5890
|
# },
|
5807
5891
|
# }
|
@@ -9179,6 +9263,7 @@ module Aws::LexModelsV2
|
|
9179
9263
|
# nlu_intent_confidence_threshold: 1.0,
|
9180
9264
|
# voice_settings: {
|
9181
9265
|
# voice_id: "VoiceId", # required
|
9266
|
+
# engine: "standard", # accepts standard, neural
|
9182
9267
|
# },
|
9183
9268
|
# },
|
9184
9269
|
# },
|
@@ -9188,7 +9273,11 @@ module Aws::LexModelsV2
|
|
9188
9273
|
#
|
9189
9274
|
# @!attribute [rw] import_id
|
9190
9275
|
# The unique identifier for the import. It is included in the response
|
9191
|
-
# from the operation.
|
9276
|
+
# from the [CreateUploadUrl][1] operation.
|
9277
|
+
#
|
9278
|
+
#
|
9279
|
+
#
|
9280
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_CreateUploadUrl.html
|
9192
9281
|
# @return [String]
|
9193
9282
|
#
|
9194
9283
|
# @!attribute [rw] resource_specification
|
@@ -9664,6 +9753,7 @@ module Aws::LexModelsV2
|
|
9664
9753
|
# nlu_intent_confidence_threshold: 1.0, # required
|
9665
9754
|
# voice_settings: {
|
9666
9755
|
# voice_id: "VoiceId", # required
|
9756
|
+
# engine: "standard", # accepts standard, neural
|
9667
9757
|
# },
|
9668
9758
|
# }
|
9669
9759
|
#
|
@@ -9797,7 +9887,11 @@ module Aws::LexModelsV2
|
|
9797
9887
|
#
|
9798
9888
|
# @!attribute [rw] bot_id
|
9799
9889
|
# The unique identifier of the bot to update. This identifier is
|
9800
|
-
# returned by the CreateBot operation.
|
9890
|
+
# returned by the [CreateBot][1] operation.
|
9891
|
+
#
|
9892
|
+
#
|
9893
|
+
#
|
9894
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/API_CreateBot.html
|
9801
9895
|
# @return [String]
|
9802
9896
|
#
|
9803
9897
|
# @!attribute [rw] bot_name
|
@@ -11337,16 +11431,28 @@ module Aws::LexModelsV2
|
|
11337
11431
|
#
|
11338
11432
|
# {
|
11339
11433
|
# voice_id: "VoiceId", # required
|
11434
|
+
# engine: "standard", # accepts standard, neural
|
11340
11435
|
# }
|
11341
11436
|
#
|
11342
11437
|
# @!attribute [rw] voice_id
|
11343
11438
|
# The identifier of the Amazon Polly voice to use.
|
11344
11439
|
# @return [String]
|
11345
11440
|
#
|
11441
|
+
# @!attribute [rw] engine
|
11442
|
+
# Indicates the type of Amazon Polly voice that Amazon Lex should use
|
11443
|
+
# for voice interaction with the user. For more information, see
|
11444
|
+
# [Voices in Amazon Polly][1].
|
11445
|
+
#
|
11446
|
+
#
|
11447
|
+
#
|
11448
|
+
# [1]: https://docs.aws.amazon.com/polly/latest/dg/voicelist.html
|
11449
|
+
# @return [String]
|
11450
|
+
#
|
11346
11451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/VoiceSettings AWS API Documentation
|
11347
11452
|
#
|
11348
11453
|
class VoiceSettings < Struct.new(
|
11349
|
-
:voice_id
|
11454
|
+
:voice_id,
|
11455
|
+
:engine)
|
11350
11456
|
SENSITIVE = []
|
11351
11457
|
include Aws::Structure
|
11352
11458
|
end
|
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.15.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-11-
|
11
|
+
date: 2021-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|