aws-sdk-lexmodelsv2 1.47.0 → 1.49.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.
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-lexmodelsv2/customizations'
53
53
  # @!group service
54
54
  module Aws::LexModelsV2
55
55
 
56
- GEM_VERSION = '1.47.0'
56
+ GEM_VERSION = '1.49.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -309,6 +309,21 @@ module Aws
309
309
  ) -> _CreateBotLocaleResponseSuccess
310
310
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBotLocaleResponseSuccess
311
311
 
312
+ interface _CreateBotReplicaResponseSuccess
313
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateBotReplicaResponse]
314
+ def bot_id: () -> ::String
315
+ def replica_region: () -> ::String
316
+ def source_region: () -> ::String
317
+ def creation_date_time: () -> ::Time
318
+ def bot_replica_status: () -> ("Enabling" | "Enabled" | "Deleting" | "Failed")
319
+ end
320
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#create_bot_replica-instance_method
321
+ def create_bot_replica: (
322
+ bot_id: ::String,
323
+ replica_region: ::String
324
+ ) -> _CreateBotReplicaResponseSuccess
325
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBotReplicaResponseSuccess
326
+
312
327
  interface _CreateBotVersionResponseSuccess
313
328
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateBotVersionResponse]
314
329
  def bot_id: () -> ::String
@@ -381,6 +396,7 @@ module Aws
381
396
  def locale_id: () -> ::String
382
397
  def creation_date_time: () -> ::Time
383
398
  def initial_response_setting: () -> Types::InitialResponseSetting
399
+ def qn_a_intent_configuration: () -> Types::QnAIntentConfiguration
384
400
  end
385
401
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#create_intent-instance_method
386
402
  def create_intent: (
@@ -3884,6 +3900,32 @@ module Aws
3884
3900
  }?
3885
3901
  }
3886
3902
  }?
3903
+ },
3904
+ ?qn_a_intent_configuration: {
3905
+ data_source_configuration: {
3906
+ opensearch_configuration: {
3907
+ domain_endpoint: ::String,
3908
+ index_name: ::String,
3909
+ exact_response: bool?,
3910
+ exact_response_fields: {
3911
+ question_field: ::String,
3912
+ answer_field: ::String
3913
+ }?,
3914
+ include_fields: Array[::String]?
3915
+ }?,
3916
+ kendra_configuration: {
3917
+ kendra_index: ::String,
3918
+ query_filter_string_enabled: bool?,
3919
+ query_filter_string: ::String?,
3920
+ exact_response: bool?
3921
+ }?,
3922
+ bedrock_knowledge_store_configuration: {
3923
+ bedrock_knowledge_base_arn: ::String
3924
+ }?
3925
+ }?,
3926
+ bedrock_model_configuration: {
3927
+ model_arn: ::String
3928
+ }?
3887
3929
  }
3888
3930
  ) -> _CreateIntentResponseSuccess
3889
3931
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntentResponseSuccess
@@ -5786,6 +5828,19 @@ module Aws
5786
5828
  ) -> _DeleteBotLocaleResponseSuccess
5787
5829
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBotLocaleResponseSuccess
5788
5830
 
5831
+ interface _DeleteBotReplicaResponseSuccess
5832
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBotReplicaResponse]
5833
+ def bot_id: () -> ::String
5834
+ def replica_region: () -> ::String
5835
+ def bot_replica_status: () -> ("Enabling" | "Enabled" | "Deleting" | "Failed")
5836
+ end
5837
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#delete_bot_replica-instance_method
5838
+ def delete_bot_replica: (
5839
+ bot_id: ::String,
5840
+ replica_region: ::String
5841
+ ) -> _DeleteBotReplicaResponseSuccess
5842
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBotReplicaResponseSuccess
5843
+
5789
5844
  interface _DeleteBotVersionResponseSuccess
5790
5845
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBotVersionResponse]
5791
5846
  def bot_id: () -> ::String
@@ -6003,6 +6058,22 @@ module Aws
6003
6058
  ) -> _DescribeBotRecommendationResponseSuccess
6004
6059
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBotRecommendationResponseSuccess
6005
6060
 
6061
+ interface _DescribeBotReplicaResponseSuccess
6062
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBotReplicaResponse]
6063
+ def bot_id: () -> ::String
6064
+ def replica_region: () -> ::String
6065
+ def source_region: () -> ::String
6066
+ def creation_date_time: () -> ::Time
6067
+ def bot_replica_status: () -> ("Enabling" | "Enabled" | "Deleting" | "Failed")
6068
+ def failure_reasons: () -> ::Array[::String]
6069
+ end
6070
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#describe_bot_replica-instance_method
6071
+ def describe_bot_replica: (
6072
+ bot_id: ::String,
6073
+ replica_region: ::String
6074
+ ) -> _DescribeBotReplicaResponseSuccess
6075
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBotReplicaResponseSuccess
6076
+
6006
6077
  interface _DescribeBotResourceGenerationResponseSuccess
6007
6078
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBotResourceGenerationResponse]
6008
6079
  def bot_id: () -> ::String
@@ -6122,6 +6193,7 @@ module Aws
6122
6193
  def creation_date_time: () -> ::Time
6123
6194
  def last_updated_date_time: () -> ::Time
6124
6195
  def initial_response_setting: () -> Types::InitialResponseSetting
6196
+ def qn_a_intent_configuration: () -> Types::QnAIntentConfiguration
6125
6197
  end
6126
6198
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#describe_intent-instance_method
6127
6199
  def describe_intent: (
@@ -6341,6 +6413,23 @@ module Aws
6341
6413
  ) -> _ListAggregatedUtterancesResponseSuccess
6342
6414
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAggregatedUtterancesResponseSuccess
6343
6415
 
6416
+ interface _ListBotAliasReplicasResponseSuccess
6417
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBotAliasReplicasResponse]
6418
+ def bot_id: () -> ::String
6419
+ def source_region: () -> ::String
6420
+ def replica_region: () -> ::String
6421
+ def bot_alias_replica_summaries: () -> ::Array[Types::BotAliasReplicaSummary]
6422
+ def next_token: () -> ::String
6423
+ end
6424
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#list_bot_alias_replicas-instance_method
6425
+ def list_bot_alias_replicas: (
6426
+ bot_id: ::String,
6427
+ replica_region: ::String,
6428
+ ?max_results: ::Integer,
6429
+ ?next_token: ::String
6430
+ ) -> _ListBotAliasReplicasResponseSuccess
6431
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotAliasReplicasResponseSuccess
6432
+
6344
6433
  interface _ListBotAliasesResponseSuccess
6345
6434
  include ::Seahorse::Client::_ResponseSuccess[Types::ListBotAliasesResponse]
6346
6435
  def bot_alias_summaries: () -> ::Array[Types::BotAliasSummary]
@@ -6400,6 +6489,18 @@ module Aws
6400
6489
  ) -> _ListBotRecommendationsResponseSuccess
6401
6490
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotRecommendationsResponseSuccess
6402
6491
 
6492
+ interface _ListBotReplicasResponseSuccess
6493
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBotReplicasResponse]
6494
+ def bot_id: () -> ::String
6495
+ def source_region: () -> ::String
6496
+ def bot_replica_summaries: () -> ::Array[Types::BotReplicaSummary]
6497
+ end
6498
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#list_bot_replicas-instance_method
6499
+ def list_bot_replicas: (
6500
+ bot_id: ::String
6501
+ ) -> _ListBotReplicasResponseSuccess
6502
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotReplicasResponseSuccess
6503
+
6403
6504
  interface _ListBotResourceGenerationsResponseSuccess
6404
6505
  include ::Seahorse::Client::_ResponseSuccess[Types::ListBotResourceGenerationsResponse]
6405
6506
  def bot_id: () -> ::String
@@ -6422,6 +6523,27 @@ module Aws
6422
6523
  ) -> _ListBotResourceGenerationsResponseSuccess
6423
6524
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotResourceGenerationsResponseSuccess
6424
6525
 
6526
+ interface _ListBotVersionReplicasResponseSuccess
6527
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBotVersionReplicasResponse]
6528
+ def bot_id: () -> ::String
6529
+ def source_region: () -> ::String
6530
+ def replica_region: () -> ::String
6531
+ def bot_version_replica_summaries: () -> ::Array[Types::BotVersionReplicaSummary]
6532
+ def next_token: () -> ::String
6533
+ end
6534
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#list_bot_version_replicas-instance_method
6535
+ def list_bot_version_replicas: (
6536
+ bot_id: ::String,
6537
+ replica_region: ::String,
6538
+ ?max_results: ::Integer,
6539
+ ?next_token: ::String,
6540
+ ?sort_by: {
6541
+ attribute: ("BotVersion"),
6542
+ order: ("Ascending" | "Descending")
6543
+ }
6544
+ ) -> _ListBotVersionReplicasResponseSuccess
6545
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotVersionReplicasResponseSuccess
6546
+
6425
6547
  interface _ListBotVersionsResponseSuccess
6426
6548
  include ::Seahorse::Client::_ResponseSuccess[Types::ListBotVersionsResponse]
6427
6549
  def bot_id: () -> ::String
@@ -7469,6 +7591,7 @@ module Aws
7469
7591
  def creation_date_time: () -> ::Time
7470
7592
  def last_updated_date_time: () -> ::Time
7471
7593
  def initial_response_setting: () -> Types::InitialResponseSetting
7594
+ def qn_a_intent_configuration: () -> Types::QnAIntentConfiguration
7472
7595
  end
7473
7596
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#update_intent-instance_method
7474
7597
  def update_intent: (
@@ -10979,6 +11102,32 @@ module Aws
10979
11102
  }?
10980
11103
  }
10981
11104
  }?
11105
+ },
11106
+ ?qn_a_intent_configuration: {
11107
+ data_source_configuration: {
11108
+ opensearch_configuration: {
11109
+ domain_endpoint: ::String,
11110
+ index_name: ::String,
11111
+ exact_response: bool?,
11112
+ exact_response_fields: {
11113
+ question_field: ::String,
11114
+ answer_field: ::String
11115
+ }?,
11116
+ include_fields: Array[::String]?
11117
+ }?,
11118
+ kendra_configuration: {
11119
+ kendra_index: ::String,
11120
+ query_filter_string_enabled: bool?,
11121
+ query_filter_string: ::String?,
11122
+ exact_response: bool?
11123
+ }?,
11124
+ bedrock_knowledge_store_configuration: {
11125
+ bedrock_knowledge_base_arn: ::String
11126
+ }?
11127
+ }?,
11128
+ bedrock_model_configuration: {
11129
+ model_arn: ::String
11130
+ }?
10982
11131
  }
10983
11132
  ) -> _UpdateIntentResponseSuccess
10984
11133
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIntentResponseSuccess
data/sig/types.rbs CHANGED
@@ -344,6 +344,11 @@ module Aws::LexModelsV2
344
344
  SENSITIVE: []
345
345
  end
346
346
 
347
+ class BedrockKnowledgeStoreConfiguration
348
+ attr_accessor bedrock_knowledge_base_arn: ::String
349
+ SENSITIVE: []
350
+ end
351
+
347
352
  class BedrockModelSpecification
348
353
  attr_accessor model_arn: ::String
349
354
  SENSITIVE: []
@@ -362,6 +367,16 @@ module Aws::LexModelsV2
362
367
  SENSITIVE: []
363
368
  end
364
369
 
370
+ class BotAliasReplicaSummary
371
+ attr_accessor bot_alias_id: ::String
372
+ attr_accessor bot_alias_replication_status: ("Creating" | "Updating" | "Available" | "Deleting" | "Failed")
373
+ attr_accessor bot_version: ::String
374
+ attr_accessor creation_date_time: ::Time
375
+ attr_accessor last_updated_date_time: ::Time
376
+ attr_accessor failure_reasons: ::Array[::String]
377
+ SENSITIVE: []
378
+ end
379
+
365
380
  class BotAliasSummary
366
381
  attr_accessor bot_alias_id: ::String
367
382
  attr_accessor bot_alias_name: ::String
@@ -478,6 +493,14 @@ module Aws::LexModelsV2
478
493
  SENSITIVE: []
479
494
  end
480
495
 
496
+ class BotReplicaSummary
497
+ attr_accessor replica_region: ::String
498
+ attr_accessor creation_date_time: ::Time
499
+ attr_accessor bot_replica_status: ("Enabling" | "Enabled" | "Deleting" | "Failed")
500
+ attr_accessor failure_reasons: ::Array[::String]
501
+ SENSITIVE: []
502
+ end
503
+
481
504
  class BotSortBy
482
505
  attr_accessor attribute: ("BotName")
483
506
  attr_accessor order: ("Ascending" | "Descending")
@@ -500,6 +523,20 @@ module Aws::LexModelsV2
500
523
  SENSITIVE: []
501
524
  end
502
525
 
526
+ class BotVersionReplicaSortBy
527
+ attr_accessor attribute: ("BotVersion")
528
+ attr_accessor order: ("Ascending" | "Descending")
529
+ SENSITIVE: []
530
+ end
531
+
532
+ class BotVersionReplicaSummary
533
+ attr_accessor bot_version: ::String
534
+ attr_accessor bot_version_replication_status: ("Creating" | "Available" | "Deleting" | "Failed")
535
+ attr_accessor creation_date_time: ::Time
536
+ attr_accessor failure_reasons: ::Array[::String]
537
+ SENSITIVE: []
538
+ end
539
+
503
540
  class BotVersionSortBy
504
541
  attr_accessor attribute: ("BotVersion")
505
542
  attr_accessor order: ("Ascending" | "Descending")
@@ -719,6 +756,21 @@ module Aws::LexModelsV2
719
756
  SENSITIVE: []
720
757
  end
721
758
 
759
+ class CreateBotReplicaRequest
760
+ attr_accessor bot_id: ::String
761
+ attr_accessor replica_region: ::String
762
+ SENSITIVE: []
763
+ end
764
+
765
+ class CreateBotReplicaResponse
766
+ attr_accessor bot_id: ::String
767
+ attr_accessor replica_region: ::String
768
+ attr_accessor source_region: ::String
769
+ attr_accessor creation_date_time: ::Time
770
+ attr_accessor bot_replica_status: ("Enabling" | "Enabled" | "Deleting" | "Failed")
771
+ SENSITIVE: []
772
+ end
773
+
722
774
  class CreateBotRequest
723
775
  attr_accessor bot_name: ::String
724
776
  attr_accessor description: ::String
@@ -797,6 +849,7 @@ module Aws::LexModelsV2
797
849
  attr_accessor bot_version: ::String
798
850
  attr_accessor locale_id: ::String
799
851
  attr_accessor initial_response_setting: Types::InitialResponseSetting
852
+ attr_accessor qn_a_intent_configuration: Types::QnAIntentConfiguration
800
853
  SENSITIVE: []
801
854
  end
802
855
 
@@ -818,6 +871,7 @@ module Aws::LexModelsV2
818
871
  attr_accessor locale_id: ::String
819
872
  attr_accessor creation_date_time: ::Time
820
873
  attr_accessor initial_response_setting: Types::InitialResponseSetting
874
+ attr_accessor qn_a_intent_configuration: Types::QnAIntentConfiguration
821
875
  SENSITIVE: []
822
876
  end
823
877
 
@@ -980,6 +1034,13 @@ module Aws::LexModelsV2
980
1034
  SENSITIVE: []
981
1035
  end
982
1036
 
1037
+ class DataSourceConfiguration
1038
+ attr_accessor opensearch_configuration: Types::OpensearchConfiguration
1039
+ attr_accessor kendra_configuration: Types::QnAKendraConfiguration
1040
+ attr_accessor bedrock_knowledge_store_configuration: Types::BedrockKnowledgeStoreConfiguration
1041
+ SENSITIVE: []
1042
+ end
1043
+
983
1044
  class DateRangeFilter
984
1045
  attr_accessor start_date_time: ::Time
985
1046
  attr_accessor end_date_time: ::Time
@@ -1021,6 +1082,19 @@ module Aws::LexModelsV2
1021
1082
  SENSITIVE: []
1022
1083
  end
1023
1084
 
1085
+ class DeleteBotReplicaRequest
1086
+ attr_accessor bot_id: ::String
1087
+ attr_accessor replica_region: ::String
1088
+ SENSITIVE: []
1089
+ end
1090
+
1091
+ class DeleteBotReplicaResponse
1092
+ attr_accessor bot_id: ::String
1093
+ attr_accessor replica_region: ::String
1094
+ attr_accessor bot_replica_status: ("Enabling" | "Enabled" | "Deleting" | "Failed")
1095
+ SENSITIVE: []
1096
+ end
1097
+
1024
1098
  class DeleteBotRequest
1025
1099
  attr_accessor bot_id: ::String
1026
1100
  attr_accessor skip_resource_in_use_check: bool
@@ -1224,6 +1298,22 @@ module Aws::LexModelsV2
1224
1298
  SENSITIVE: []
1225
1299
  end
1226
1300
 
1301
+ class DescribeBotReplicaRequest
1302
+ attr_accessor bot_id: ::String
1303
+ attr_accessor replica_region: ::String
1304
+ SENSITIVE: []
1305
+ end
1306
+
1307
+ class DescribeBotReplicaResponse
1308
+ attr_accessor bot_id: ::String
1309
+ attr_accessor replica_region: ::String
1310
+ attr_accessor source_region: ::String
1311
+ attr_accessor creation_date_time: ::Time
1312
+ attr_accessor bot_replica_status: ("Enabling" | "Enabled" | "Deleting" | "Failed")
1313
+ attr_accessor failure_reasons: ::Array[::String]
1314
+ SENSITIVE: []
1315
+ end
1316
+
1227
1317
  class DescribeBotRequest
1228
1318
  attr_accessor bot_id: ::String
1229
1319
  SENSITIVE: []
@@ -1371,6 +1461,7 @@ module Aws::LexModelsV2
1371
1461
  attr_accessor creation_date_time: ::Time
1372
1462
  attr_accessor last_updated_date_time: ::Time
1373
1463
  attr_accessor initial_response_setting: Types::InitialResponseSetting
1464
+ attr_accessor qn_a_intent_configuration: Types::QnAIntentConfiguration
1374
1465
  SENSITIVE: []
1375
1466
  end
1376
1467
 
@@ -1560,6 +1651,12 @@ module Aws::LexModelsV2
1560
1651
  SENSITIVE: [:bot_locale_export_password, :associated_transcripts_password]
1561
1652
  end
1562
1653
 
1654
+ class ExactResponseFields
1655
+ attr_accessor question_field: ::String
1656
+ attr_accessor answer_field: ::String
1657
+ SENSITIVE: []
1658
+ end
1659
+
1563
1660
  class ExecutionErrorDetails
1564
1661
  attr_accessor error_code: ::String
1565
1662
  attr_accessor error_message: ::String
@@ -1906,6 +2003,23 @@ module Aws::LexModelsV2
1906
2003
  SENSITIVE: []
1907
2004
  end
1908
2005
 
2006
+ class ListBotAliasReplicasRequest
2007
+ attr_accessor bot_id: ::String
2008
+ attr_accessor replica_region: ::String
2009
+ attr_accessor max_results: ::Integer
2010
+ attr_accessor next_token: ::String
2011
+ SENSITIVE: []
2012
+ end
2013
+
2014
+ class ListBotAliasReplicasResponse
2015
+ attr_accessor bot_id: ::String
2016
+ attr_accessor source_region: ::String
2017
+ attr_accessor replica_region: ::String
2018
+ attr_accessor bot_alias_replica_summaries: ::Array[Types::BotAliasReplicaSummary]
2019
+ attr_accessor next_token: ::String
2020
+ SENSITIVE: []
2021
+ end
2022
+
1909
2023
  class ListBotAliasesRequest
1910
2024
  attr_accessor bot_id: ::String
1911
2025
  attr_accessor max_results: ::Integer
@@ -1956,6 +2070,18 @@ module Aws::LexModelsV2
1956
2070
  SENSITIVE: []
1957
2071
  end
1958
2072
 
2073
+ class ListBotReplicasRequest
2074
+ attr_accessor bot_id: ::String
2075
+ SENSITIVE: []
2076
+ end
2077
+
2078
+ class ListBotReplicasResponse
2079
+ attr_accessor bot_id: ::String
2080
+ attr_accessor source_region: ::String
2081
+ attr_accessor bot_replica_summaries: ::Array[Types::BotReplicaSummary]
2082
+ SENSITIVE: []
2083
+ end
2084
+
1959
2085
  class ListBotResourceGenerationsRequest
1960
2086
  attr_accessor bot_id: ::String
1961
2087
  attr_accessor bot_version: ::String
@@ -1975,6 +2101,24 @@ module Aws::LexModelsV2
1975
2101
  SENSITIVE: []
1976
2102
  end
1977
2103
 
2104
+ class ListBotVersionReplicasRequest
2105
+ attr_accessor bot_id: ::String
2106
+ attr_accessor replica_region: ::String
2107
+ attr_accessor max_results: ::Integer
2108
+ attr_accessor next_token: ::String
2109
+ attr_accessor sort_by: Types::BotVersionReplicaSortBy
2110
+ SENSITIVE: []
2111
+ end
2112
+
2113
+ class ListBotVersionReplicasResponse
2114
+ attr_accessor bot_id: ::String
2115
+ attr_accessor source_region: ::String
2116
+ attr_accessor replica_region: ::String
2117
+ attr_accessor bot_version_replica_summaries: ::Array[Types::BotVersionReplicaSummary]
2118
+ attr_accessor next_token: ::String
2119
+ SENSITIVE: []
2120
+ end
2121
+
1978
2122
  class ListBotVersionsRequest
1979
2123
  attr_accessor bot_id: ::String
1980
2124
  attr_accessor sort_by: Types::BotVersionSortBy
@@ -2399,6 +2543,15 @@ module Aws::LexModelsV2
2399
2543
  SENSITIVE: []
2400
2544
  end
2401
2545
 
2546
+ class OpensearchConfiguration
2547
+ attr_accessor domain_endpoint: ::String
2548
+ attr_accessor index_name: ::String
2549
+ attr_accessor exact_response: bool
2550
+ attr_accessor exact_response_fields: Types::ExactResponseFields
2551
+ attr_accessor include_fields: ::Array[::String]
2552
+ SENSITIVE: []
2553
+ end
2554
+
2402
2555
  class OutputContext
2403
2556
  attr_accessor name: ::String
2404
2557
  attr_accessor time_to_live_in_seconds: ::Integer
@@ -2489,6 +2642,20 @@ module Aws::LexModelsV2
2489
2642
  SENSITIVE: []
2490
2643
  end
2491
2644
 
2645
+ class QnAIntentConfiguration
2646
+ attr_accessor data_source_configuration: Types::DataSourceConfiguration
2647
+ attr_accessor bedrock_model_configuration: Types::BedrockModelSpecification
2648
+ SENSITIVE: []
2649
+ end
2650
+
2651
+ class QnAKendraConfiguration
2652
+ attr_accessor kendra_index: ::String
2653
+ attr_accessor query_filter_string_enabled: bool
2654
+ attr_accessor query_filter_string: ::String
2655
+ attr_accessor exact_response: bool
2656
+ SENSITIVE: []
2657
+ end
2658
+
2492
2659
  class RecommendedIntentSummary
2493
2660
  attr_accessor intent_id: ::String
2494
2661
  attr_accessor intent_name: ::String
@@ -3254,6 +3421,7 @@ module Aws::LexModelsV2
3254
3421
  attr_accessor bot_version: ::String
3255
3422
  attr_accessor locale_id: ::String
3256
3423
  attr_accessor initial_response_setting: Types::InitialResponseSetting
3424
+ attr_accessor qn_a_intent_configuration: Types::QnAIntentConfiguration
3257
3425
  SENSITIVE: []
3258
3426
  end
3259
3427
 
@@ -3277,6 +3445,7 @@ module Aws::LexModelsV2
3277
3445
  attr_accessor creation_date_time: ::Time
3278
3446
  attr_accessor last_updated_date_time: ::Time
3279
3447
  attr_accessor initial_response_setting: Types::InitialResponseSetting
3448
+ attr_accessor qn_a_intent_configuration: Types::QnAIntentConfiguration
3280
3449
  SENSITIVE: []
3281
3450
  end
3282
3451
 
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.47.0
4
+ version: 1.49.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-02-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core