aws-sdk-lexmodelsv2 1.69.0 → 1.70.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: c484c35d57cbb51ed488482177a8bbac34bf89858a8c5b719857162f61763f74
4
- data.tar.gz: 115086d9de0b6accbc419ec705477b92841fb0db056d3a3e16e513fbec233bf1
3
+ metadata.gz: b215c42cce040bd492c077b84b8f151b7ab1c227a01017138e19c64980adbf1e
4
+ data.tar.gz: 3ac4d8a31e740cf7512d5b70c9ef67071382313e10a6f4179e9777fe626d4e27
5
5
  SHA512:
6
- metadata.gz: 3ccaca5dda2be4fd942a153c9f422177dd9e5082aebfc19566e8aca0afb106266a9aa4b2008aef91671fe5fc9aa8d0fd3f94e306c4350326568f231737080f32
7
- data.tar.gz: 9fe3b535cc87afc0acbb5a0d20b119db6b1987109166fa0b26e9959be2e461523e0da7ae5a1cfafd004751d029717fbe7bed3a9ef62b01d05d9c8e328d8bc478
6
+ metadata.gz: e5573bf3c37e3b04f8ff2bbe1e95cd9ba01b2614f65a4886bfcc149f0e191462e4c597b72ec103bb1c22990528a8e74f70b0a0ea3aeec6ff133fe48a48c587b5
7
+ data.tar.gz: b820a39c593a799692ed03a0840ceccae7dae63e4624236f9531bfce903697c33127ff5022c2b8081d00c8b1e06a8e306b35770a9b4081ea5f0f8bdd0c1c9039
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2025-04-02)
5
+ ------------------
6
+
7
+ * Feature - Release feature of errorlogging for lex bot, customer can config this feature in bot version to generate log for error exception which helps debug
8
+
4
9
  1.69.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.69.0
1
+ 1.70.0
@@ -784,6 +784,9 @@ module Aws::LexModelsV2
784
784
  # @option params [Array<Types::BotMember>] :bot_members
785
785
  # The list of bot members in a network to be created.
786
786
  #
787
+ # @option params [Types::ErrorLogSettings] :error_log_settings
788
+ # Specifies the configuration for error logging during bot creation.
789
+ #
787
790
  # @return [Types::CreateBotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
788
791
  #
789
792
  # * {Types::CreateBotResponse#bot_id #bot_id} => String
@@ -798,6 +801,7 @@ module Aws::LexModelsV2
798
801
  # * {Types::CreateBotResponse#test_bot_alias_tags #test_bot_alias_tags} => Hash&lt;String,String&gt;
799
802
  # * {Types::CreateBotResponse#bot_type #bot_type} => String
800
803
  # * {Types::CreateBotResponse#bot_members #bot_members} => Array&lt;Types::BotMember&gt;
804
+ # * {Types::CreateBotResponse#error_log_settings #error_log_settings} => Types::ErrorLogSettings
801
805
  #
802
806
  # @example Request syntax with placeholder values
803
807
  #
@@ -825,6 +829,9 @@ module Aws::LexModelsV2
825
829
  # bot_member_version: "BotVersion", # required
826
830
  # },
827
831
  # ],
832
+ # error_log_settings: {
833
+ # enabled: false, # required
834
+ # },
828
835
  # })
829
836
  #
830
837
  # @example Response structure
@@ -848,6 +855,7 @@ module Aws::LexModelsV2
848
855
  # resp.bot_members[0].bot_member_alias_id #=> String
849
856
  # resp.bot_members[0].bot_member_alias_name #=> String
850
857
  # resp.bot_members[0].bot_member_version #=> String
858
+ # resp.error_log_settings.enabled #=> Boolean
851
859
  #
852
860
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateBot AWS API Documentation
853
861
  #
@@ -1506,6 +1514,9 @@ module Aws::LexModelsV2
1506
1514
  # another intent to invoke. If you specify this field, you can't
1507
1515
  # specify the `kendraConfiguration` field.
1508
1516
  #
1517
+ # @option params [Types::QInConnectIntentConfiguration] :q_in_connect_intent_configuration
1518
+ # Qinconnect intent configuration details for the create intent request.
1519
+ #
1509
1520
  # @return [Types::CreateIntentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1510
1521
  #
1511
1522
  # * {Types::CreateIntentResponse#intent_id #intent_id} => String
@@ -1526,6 +1537,7 @@ module Aws::LexModelsV2
1526
1537
  # * {Types::CreateIntentResponse#creation_date_time #creation_date_time} => Time
1527
1538
  # * {Types::CreateIntentResponse#initial_response_setting #initial_response_setting} => Types::InitialResponseSetting
1528
1539
  # * {Types::CreateIntentResponse#qn_a_intent_configuration #qn_a_intent_configuration} => Types::QnAIntentConfiguration
1540
+ # * {Types::CreateIntentResponse#q_in_connect_intent_configuration #q_in_connect_intent_configuration} => Types::QInConnectIntentConfiguration
1529
1541
  #
1530
1542
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateIntent AWS API Documentation
1531
1543
  #
@@ -3401,6 +3413,7 @@ module Aws::LexModelsV2
3401
3413
  # * {Types::DescribeBotResponse#bot_type #bot_type} => String
3402
3414
  # * {Types::DescribeBotResponse#bot_members #bot_members} => Array&lt;Types::BotMember&gt;
3403
3415
  # * {Types::DescribeBotResponse#failure_reasons #failure_reasons} => Array&lt;String&gt;
3416
+ # * {Types::DescribeBotResponse#error_log_settings #error_log_settings} => Types::ErrorLogSettings
3404
3417
  #
3405
3418
  # @example Request syntax with placeholder values
3406
3419
  #
@@ -3428,6 +3441,7 @@ module Aws::LexModelsV2
3428
3441
  # resp.bot_members[0].bot_member_version #=> String
3429
3442
  # resp.failure_reasons #=> Array
3430
3443
  # resp.failure_reasons[0] #=> String
3444
+ # resp.error_log_settings.enabled #=> Boolean
3431
3445
  #
3432
3446
  #
3433
3447
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4021,6 +4035,7 @@ module Aws::LexModelsV2
4021
4035
  # resp.resource_specification.bot_import_specification.bot_name #=> String
4022
4036
  # resp.resource_specification.bot_import_specification.role_arn #=> String
4023
4037
  # resp.resource_specification.bot_import_specification.data_privacy.child_directed #=> Boolean
4038
+ # resp.resource_specification.bot_import_specification.error_log_settings.enabled #=> Boolean
4024
4039
  # resp.resource_specification.bot_import_specification.idle_session_ttl_in_seconds #=> Integer
4025
4040
  # resp.resource_specification.bot_import_specification.bot_tags #=> Hash
4026
4041
  # resp.resource_specification.bot_import_specification.bot_tags["TagKey"] #=> String
@@ -4111,6 +4126,7 @@ module Aws::LexModelsV2
4111
4126
  # * {Types::DescribeIntentResponse#last_updated_date_time #last_updated_date_time} => Time
4112
4127
  # * {Types::DescribeIntentResponse#initial_response_setting #initial_response_setting} => Types::InitialResponseSetting
4113
4128
  # * {Types::DescribeIntentResponse#qn_a_intent_configuration #qn_a_intent_configuration} => Types::QnAIntentConfiguration
4129
+ # * {Types::DescribeIntentResponse#q_in_connect_intent_configuration #q_in_connect_intent_configuration} => Types::QInConnectIntentConfiguration
4114
4130
  #
4115
4131
  # @example Request syntax with placeholder values
4116
4132
  #
@@ -8437,6 +8453,9 @@ module Aws::LexModelsV2
8437
8453
  # data_privacy: { # required
8438
8454
  # child_directed: false, # required
8439
8455
  # },
8456
+ # error_log_settings: {
8457
+ # enabled: false, # required
8458
+ # },
8440
8459
  # idle_session_ttl_in_seconds: 1,
8441
8460
  # bot_tags: {
8442
8461
  # "TagKey" => "TagValue",
@@ -8489,6 +8508,7 @@ module Aws::LexModelsV2
8489
8508
  # resp.resource_specification.bot_import_specification.bot_name #=> String
8490
8509
  # resp.resource_specification.bot_import_specification.role_arn #=> String
8491
8510
  # resp.resource_specification.bot_import_specification.data_privacy.child_directed #=> Boolean
8511
+ # resp.resource_specification.bot_import_specification.error_log_settings.enabled #=> Boolean
8492
8512
  # resp.resource_specification.bot_import_specification.idle_session_ttl_in_seconds #=> Integer
8493
8513
  # resp.resource_specification.bot_import_specification.bot_tags #=> Hash
8494
8514
  # resp.resource_specification.bot_import_specification.bot_tags["TagKey"] #=> String
@@ -8837,6 +8857,11 @@ module Aws::LexModelsV2
8837
8857
  # The list of bot members in the network associated with the update
8838
8858
  # action.
8839
8859
  #
8860
+ # @option params [Types::ErrorLogSettings] :error_log_settings
8861
+ # Allows you to modify how Amazon Lex logs errors during bot
8862
+ # interactions, including destinations for error logs and the types of
8863
+ # errors to be captured.
8864
+ #
8840
8865
  # @return [Types::UpdateBotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8841
8866
  #
8842
8867
  # * {Types::UpdateBotResponse#bot_id #bot_id} => String
@@ -8850,6 +8875,7 @@ module Aws::LexModelsV2
8850
8875
  # * {Types::UpdateBotResponse#last_updated_date_time #last_updated_date_time} => Time
8851
8876
  # * {Types::UpdateBotResponse#bot_type #bot_type} => String
8852
8877
  # * {Types::UpdateBotResponse#bot_members #bot_members} => Array&lt;Types::BotMember&gt;
8878
+ # * {Types::UpdateBotResponse#error_log_settings #error_log_settings} => Types::ErrorLogSettings
8853
8879
  #
8854
8880
  # @example Request syntax with placeholder values
8855
8881
  #
@@ -8872,6 +8898,9 @@ module Aws::LexModelsV2
8872
8898
  # bot_member_version: "BotVersion", # required
8873
8899
  # },
8874
8900
  # ],
8901
+ # error_log_settings: {
8902
+ # enabled: false, # required
8903
+ # },
8875
8904
  # })
8876
8905
  #
8877
8906
  # @example Response structure
@@ -8892,6 +8921,7 @@ module Aws::LexModelsV2
8892
8921
  # resp.bot_members[0].bot_member_alias_id #=> String
8893
8922
  # resp.bot_members[0].bot_member_alias_name #=> String
8894
8923
  # resp.bot_members[0].bot_member_version #=> String
8924
+ # resp.error_log_settings.enabled #=> Boolean
8895
8925
  #
8896
8926
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/UpdateBot AWS API Documentation
8897
8927
  #
@@ -9399,6 +9429,9 @@ module Aws::LexModelsV2
9399
9429
  # another intent to invoke. If you specify this field, you can't
9400
9430
  # specify the `kendraConfiguration` field.
9401
9431
  #
9432
+ # @option params [Types::QInConnectIntentConfiguration] :q_in_connect_intent_configuration
9433
+ # Qinconnect intent configuration details for the update intent request.
9434
+ #
9402
9435
  # @return [Types::UpdateIntentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9403
9436
  #
9404
9437
  # * {Types::UpdateIntentResponse#intent_id #intent_id} => String
@@ -9421,6 +9454,7 @@ module Aws::LexModelsV2
9421
9454
  # * {Types::UpdateIntentResponse#last_updated_date_time #last_updated_date_time} => Time
9422
9455
  # * {Types::UpdateIntentResponse#initial_response_setting #initial_response_setting} => Types::InitialResponseSetting
9423
9456
  # * {Types::UpdateIntentResponse#qn_a_intent_configuration #qn_a_intent_configuration} => Types::QnAIntentConfiguration
9457
+ # * {Types::UpdateIntentResponse#q_in_connect_intent_configuration #q_in_connect_intent_configuration} => Types::QInConnectIntentConfiguration
9424
9458
  #
9425
9459
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/UpdateIntent AWS API Documentation
9426
9460
  #
@@ -10521,7 +10555,7 @@ module Aws::LexModelsV2
10521
10555
  tracer: tracer
10522
10556
  )
10523
10557
  context[:gem_name] = 'aws-sdk-lexmodelsv2'
10524
- context[:gem_version] = '1.69.0'
10558
+ context[:gem_version] = '1.70.0'
10525
10559
  Seahorse::Client::Request.new(handlers, context)
10526
10560
  end
10527
10561
 
@@ -389,6 +389,7 @@ module Aws::LexModelsV2
389
389
  Enabled = Shapes::BooleanShape.new(name: 'Enabled')
390
390
  EncryptionSetting = Shapes::StructureShape.new(name: 'EncryptionSetting')
391
391
  ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
392
+ ErrorLogSettings = Shapes::StructureShape.new(name: 'ErrorLogSettings')
392
393
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
393
394
  ExactResponseFields = Shapes::StructureShape.new(name: 'ExactResponseFields')
394
395
  ExceptionMessage = Shapes::StringShape.new(name: 'ExceptionMessage')
@@ -599,6 +600,9 @@ module Aws::LexModelsV2
599
600
  PromptAttemptsSpecificationMap = Shapes::MapShape.new(name: 'PromptAttemptsSpecificationMap')
600
601
  PromptMaxRetries = Shapes::IntegerShape.new(name: 'PromptMaxRetries')
601
602
  PromptSpecification = Shapes::StructureShape.new(name: 'PromptSpecification')
603
+ QInConnectAssistantARN = Shapes::StringShape.new(name: 'QInConnectAssistantARN')
604
+ QInConnectAssistantConfiguration = Shapes::StructureShape.new(name: 'QInConnectAssistantConfiguration')
605
+ QInConnectIntentConfiguration = Shapes::StructureShape.new(name: 'QInConnectIntentConfiguration')
602
606
  QnAIntentConfiguration = Shapes::StructureShape.new(name: 'QnAIntentConfiguration')
603
607
  QnAKendraConfiguration = Shapes::StructureShape.new(name: 'QnAKendraConfiguration')
604
608
  QueryFilterString = Shapes::StringShape.new(name: 'QueryFilterString')
@@ -1215,6 +1219,7 @@ module Aws::LexModelsV2
1215
1219
  BotImportSpecification.add_member(:bot_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "botName"))
1216
1220
  BotImportSpecification.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
1217
1221
  BotImportSpecification.add_member(:data_privacy, Shapes::ShapeRef.new(shape: DataPrivacy, required: true, location_name: "dataPrivacy"))
1222
+ BotImportSpecification.add_member(:error_log_settings, Shapes::ShapeRef.new(shape: ErrorLogSettings, location_name: "errorLogSettings"))
1218
1223
  BotImportSpecification.add_member(:idle_session_ttl_in_seconds, Shapes::ShapeRef.new(shape: SessionTTL, location_name: "idleSessionTTLInSeconds"))
1219
1224
  BotImportSpecification.add_member(:bot_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "botTags"))
1220
1225
  BotImportSpecification.add_member(:test_bot_alias_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "testBotAliasTags"))
@@ -1527,6 +1532,7 @@ module Aws::LexModelsV2
1527
1532
  CreateBotRequest.add_member(:test_bot_alias_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "testBotAliasTags"))
1528
1533
  CreateBotRequest.add_member(:bot_type, Shapes::ShapeRef.new(shape: BotType, location_name: "botType"))
1529
1534
  CreateBotRequest.add_member(:bot_members, Shapes::ShapeRef.new(shape: BotMembers, location_name: "botMembers"))
1535
+ CreateBotRequest.add_member(:error_log_settings, Shapes::ShapeRef.new(shape: ErrorLogSettings, location_name: "errorLogSettings"))
1530
1536
  CreateBotRequest.struct_class = Types::CreateBotRequest
1531
1537
 
1532
1538
  CreateBotResponse.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, location_name: "botId"))
@@ -1541,6 +1547,7 @@ module Aws::LexModelsV2
1541
1547
  CreateBotResponse.add_member(:test_bot_alias_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "testBotAliasTags"))
1542
1548
  CreateBotResponse.add_member(:bot_type, Shapes::ShapeRef.new(shape: BotType, location_name: "botType"))
1543
1549
  CreateBotResponse.add_member(:bot_members, Shapes::ShapeRef.new(shape: BotMembers, location_name: "botMembers"))
1550
+ CreateBotResponse.add_member(:error_log_settings, Shapes::ShapeRef.new(shape: ErrorLogSettings, location_name: "errorLogSettings"))
1544
1551
  CreateBotResponse.struct_class = Types::CreateBotResponse
1545
1552
 
1546
1553
  CreateBotVersionRequest.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "botId"))
@@ -1586,6 +1593,7 @@ module Aws::LexModelsV2
1586
1593
  CreateIntentRequest.add_member(:locale_id, Shapes::ShapeRef.new(shape: LocaleId, required: true, location: "uri", location_name: "localeId"))
1587
1594
  CreateIntentRequest.add_member(:initial_response_setting, Shapes::ShapeRef.new(shape: InitialResponseSetting, location_name: "initialResponseSetting"))
1588
1595
  CreateIntentRequest.add_member(:qn_a_intent_configuration, Shapes::ShapeRef.new(shape: QnAIntentConfiguration, location_name: "qnAIntentConfiguration"))
1596
+ CreateIntentRequest.add_member(:q_in_connect_intent_configuration, Shapes::ShapeRef.new(shape: QInConnectIntentConfiguration, location_name: "qInConnectIntentConfiguration"))
1589
1597
  CreateIntentRequest.struct_class = Types::CreateIntentRequest
1590
1598
 
1591
1599
  CreateIntentResponse.add_member(:intent_id, Shapes::ShapeRef.new(shape: Id, location_name: "intentId"))
@@ -1606,6 +1614,7 @@ module Aws::LexModelsV2
1606
1614
  CreateIntentResponse.add_member(:creation_date_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationDateTime"))
1607
1615
  CreateIntentResponse.add_member(:initial_response_setting, Shapes::ShapeRef.new(shape: InitialResponseSetting, location_name: "initialResponseSetting"))
1608
1616
  CreateIntentResponse.add_member(:qn_a_intent_configuration, Shapes::ShapeRef.new(shape: QnAIntentConfiguration, location_name: "qnAIntentConfiguration"))
1617
+ CreateIntentResponse.add_member(:q_in_connect_intent_configuration, Shapes::ShapeRef.new(shape: QInConnectIntentConfiguration, location_name: "qInConnectIntentConfiguration"))
1609
1618
  CreateIntentResponse.struct_class = Types::CreateIntentResponse
1610
1619
 
1611
1620
  CreateResourcePolicyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location: "uri", location_name: "resourceArn"))
@@ -1975,6 +1984,7 @@ module Aws::LexModelsV2
1975
1984
  DescribeBotResponse.add_member(:bot_type, Shapes::ShapeRef.new(shape: BotType, location_name: "botType"))
1976
1985
  DescribeBotResponse.add_member(:bot_members, Shapes::ShapeRef.new(shape: BotMembers, location_name: "botMembers"))
1977
1986
  DescribeBotResponse.add_member(:failure_reasons, Shapes::ShapeRef.new(shape: FailureReasons, location_name: "failureReasons"))
1987
+ DescribeBotResponse.add_member(:error_log_settings, Shapes::ShapeRef.new(shape: ErrorLogSettings, location_name: "errorLogSettings"))
1978
1988
  DescribeBotResponse.struct_class = Types::DescribeBotResponse
1979
1989
 
1980
1990
  DescribeBotVersionRequest.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "botId"))
@@ -2062,6 +2072,7 @@ module Aws::LexModelsV2
2062
2072
  DescribeIntentResponse.add_member(:last_updated_date_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdatedDateTime"))
2063
2073
  DescribeIntentResponse.add_member(:initial_response_setting, Shapes::ShapeRef.new(shape: InitialResponseSetting, location_name: "initialResponseSetting"))
2064
2074
  DescribeIntentResponse.add_member(:qn_a_intent_configuration, Shapes::ShapeRef.new(shape: QnAIntentConfiguration, location_name: "qnAIntentConfiguration"))
2075
+ DescribeIntentResponse.add_member(:q_in_connect_intent_configuration, Shapes::ShapeRef.new(shape: QInConnectIntentConfiguration, location_name: "qInConnectIntentConfiguration"))
2065
2076
  DescribeIntentResponse.struct_class = Types::DescribeIntentResponse
2066
2077
 
2067
2078
  DescribeResourcePolicyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location: "uri", location_name: "resourceArn"))
@@ -2208,6 +2219,9 @@ module Aws::LexModelsV2
2208
2219
  EncryptionSetting.add_member(:associated_transcripts_password, Shapes::ShapeRef.new(shape: FilePassword, location_name: "associatedTranscriptsPassword"))
2209
2220
  EncryptionSetting.struct_class = Types::EncryptionSetting
2210
2221
 
2222
+ ErrorLogSettings.add_member(:enabled, Shapes::ShapeRef.new(shape: BoxedBoolean, required: true, location_name: "enabled"))
2223
+ ErrorLogSettings.struct_class = Types::ErrorLogSettings
2224
+
2211
2225
  ExactResponseFields.add_member(:question_field, Shapes::ShapeRef.new(shape: QuestionField, required: true, location_name: "questionField"))
2212
2226
  ExactResponseFields.add_member(:answer_field, Shapes::ShapeRef.new(shape: AnswerField, required: true, location_name: "answerField"))
2213
2227
  ExactResponseFields.struct_class = Types::ExactResponseFields
@@ -2996,6 +3010,12 @@ module Aws::LexModelsV2
2996
3010
  PromptSpecification.add_member(:prompt_attempts_specification, Shapes::ShapeRef.new(shape: PromptAttemptsSpecificationMap, location_name: "promptAttemptsSpecification"))
2997
3011
  PromptSpecification.struct_class = Types::PromptSpecification
2998
3012
 
3013
+ QInConnectAssistantConfiguration.add_member(:assistant_arn, Shapes::ShapeRef.new(shape: QInConnectAssistantARN, required: true, location_name: "assistantArn"))
3014
+ QInConnectAssistantConfiguration.struct_class = Types::QInConnectAssistantConfiguration
3015
+
3016
+ QInConnectIntentConfiguration.add_member(:q_in_connect_assistant_configuration, Shapes::ShapeRef.new(shape: QInConnectAssistantConfiguration, location_name: "qInConnectAssistantConfiguration"))
3017
+ QInConnectIntentConfiguration.struct_class = Types::QInConnectIntentConfiguration
3018
+
2999
3019
  QnAIntentConfiguration.add_member(:data_source_configuration, Shapes::ShapeRef.new(shape: DataSourceConfiguration, location_name: "dataSourceConfiguration"))
3000
3020
  QnAIntentConfiguration.add_member(:bedrock_model_configuration, Shapes::ShapeRef.new(shape: BedrockModelSpecification, location_name: "bedrockModelConfiguration"))
3001
3021
  QnAIntentConfiguration.struct_class = Types::QnAIntentConfiguration
@@ -3599,6 +3619,7 @@ module Aws::LexModelsV2
3599
3619
  UpdateBotRequest.add_member(:idle_session_ttl_in_seconds, Shapes::ShapeRef.new(shape: SessionTTL, required: true, location_name: "idleSessionTTLInSeconds"))
3600
3620
  UpdateBotRequest.add_member(:bot_type, Shapes::ShapeRef.new(shape: BotType, location_name: "botType"))
3601
3621
  UpdateBotRequest.add_member(:bot_members, Shapes::ShapeRef.new(shape: BotMembers, location_name: "botMembers"))
3622
+ UpdateBotRequest.add_member(:error_log_settings, Shapes::ShapeRef.new(shape: ErrorLogSettings, location_name: "errorLogSettings"))
3602
3623
  UpdateBotRequest.struct_class = Types::UpdateBotRequest
3603
3624
 
3604
3625
  UpdateBotResponse.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, location_name: "botId"))
@@ -3612,6 +3633,7 @@ module Aws::LexModelsV2
3612
3633
  UpdateBotResponse.add_member(:last_updated_date_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdatedDateTime"))
3613
3634
  UpdateBotResponse.add_member(:bot_type, Shapes::ShapeRef.new(shape: BotType, location_name: "botType"))
3614
3635
  UpdateBotResponse.add_member(:bot_members, Shapes::ShapeRef.new(shape: BotMembers, location_name: "botMembers"))
3636
+ UpdateBotResponse.add_member(:error_log_settings, Shapes::ShapeRef.new(shape: ErrorLogSettings, location_name: "errorLogSettings"))
3615
3637
  UpdateBotResponse.struct_class = Types::UpdateBotResponse
3616
3638
 
3617
3639
  UpdateCustomVocabularyItemsList.member = Shapes::ShapeRef.new(shape: CustomVocabularyItem)
@@ -3646,6 +3668,7 @@ module Aws::LexModelsV2
3646
3668
  UpdateIntentRequest.add_member(:locale_id, Shapes::ShapeRef.new(shape: LocaleId, required: true, location: "uri", location_name: "localeId"))
3647
3669
  UpdateIntentRequest.add_member(:initial_response_setting, Shapes::ShapeRef.new(shape: InitialResponseSetting, location_name: "initialResponseSetting"))
3648
3670
  UpdateIntentRequest.add_member(:qn_a_intent_configuration, Shapes::ShapeRef.new(shape: QnAIntentConfiguration, location_name: "qnAIntentConfiguration"))
3671
+ UpdateIntentRequest.add_member(:q_in_connect_intent_configuration, Shapes::ShapeRef.new(shape: QInConnectIntentConfiguration, location_name: "qInConnectIntentConfiguration"))
3649
3672
  UpdateIntentRequest.struct_class = Types::UpdateIntentRequest
3650
3673
 
3651
3674
  UpdateIntentResponse.add_member(:intent_id, Shapes::ShapeRef.new(shape: Id, location_name: "intentId"))
@@ -3668,6 +3691,7 @@ module Aws::LexModelsV2
3668
3691
  UpdateIntentResponse.add_member(:last_updated_date_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdatedDateTime"))
3669
3692
  UpdateIntentResponse.add_member(:initial_response_setting, Shapes::ShapeRef.new(shape: InitialResponseSetting, location_name: "initialResponseSetting"))
3670
3693
  UpdateIntentResponse.add_member(:qn_a_intent_configuration, Shapes::ShapeRef.new(shape: QnAIntentConfiguration, location_name: "qnAIntentConfiguration"))
3694
+ UpdateIntentResponse.add_member(:q_in_connect_intent_configuration, Shapes::ShapeRef.new(shape: QInConnectIntentConfiguration, location_name: "qInConnectIntentConfiguration"))
3671
3695
  UpdateIntentResponse.struct_class = Types::UpdateIntentResponse
3672
3696
 
3673
3697
  UpdateResourcePolicyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location: "uri", location_name: "resourceArn"))
@@ -2161,6 +2161,11 @@ module Aws::LexModelsV2
2161
2161
  # Lex handles special cases of securing the data for your bot.
2162
2162
  # @return [Types::DataPrivacy]
2163
2163
  #
2164
+ # @!attribute [rw] error_log_settings
2165
+ # Allows you to configure destinations where error logs will be
2166
+ # published during the bot import process.
2167
+ # @return [Types::ErrorLogSettings]
2168
+ #
2164
2169
  # @!attribute [rw] idle_session_ttl_in_seconds
2165
2170
  # The time, in seconds, that Amazon Lex should keep information about
2166
2171
  # a user's conversation with the bot.
@@ -2191,6 +2196,7 @@ module Aws::LexModelsV2
2191
2196
  :bot_name,
2192
2197
  :role_arn,
2193
2198
  :data_privacy,
2199
+ :error_log_settings,
2194
2200
  :idle_session_ttl_in_seconds,
2195
2201
  :bot_tags,
2196
2202
  :test_bot_alias_tags)
@@ -3692,6 +3698,10 @@ module Aws::LexModelsV2
3692
3698
  # The list of bot members in a network to be created.
3693
3699
  # @return [Array<Types::BotMember>]
3694
3700
  #
3701
+ # @!attribute [rw] error_log_settings
3702
+ # Specifies the configuration for error logging during bot creation.
3703
+ # @return [Types::ErrorLogSettings]
3704
+ #
3695
3705
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateBotRequest AWS API Documentation
3696
3706
  #
3697
3707
  class CreateBotRequest < Struct.new(
@@ -3703,7 +3713,8 @@ module Aws::LexModelsV2
3703
3713
  :bot_tags,
3704
3714
  :test_bot_alias_tags,
3705
3715
  :bot_type,
3706
- :bot_members)
3716
+ :bot_members,
3717
+ :error_log_settings)
3707
3718
  SENSITIVE = []
3708
3719
  include Aws::Structure
3709
3720
  end
@@ -3760,6 +3771,11 @@ module Aws::LexModelsV2
3760
3771
  # The list of bots in a network that was created.
3761
3772
  # @return [Array<Types::BotMember>]
3762
3773
  #
3774
+ # @!attribute [rw] error_log_settings
3775
+ # Specifies configuration settings for delivering error logs to
3776
+ # Cloudwatch Logs in an Amazon Lex bot response.
3777
+ # @return [Types::ErrorLogSettings]
3778
+ #
3763
3779
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateBotResponse AWS API Documentation
3764
3780
  #
3765
3781
  class CreateBotResponse < Struct.new(
@@ -3774,7 +3790,8 @@ module Aws::LexModelsV2
3774
3790
  :bot_tags,
3775
3791
  :test_bot_alias_tags,
3776
3792
  :bot_type,
3777
- :bot_members)
3793
+ :bot_members,
3794
+ :error_log_settings)
3778
3795
  SENSITIVE = []
3779
3796
  include Aws::Structure
3780
3797
  end
@@ -4041,6 +4058,11 @@ module Aws::LexModelsV2
4041
4058
  # specify the `kendraConfiguration` field.
4042
4059
  # @return [Types::QnAIntentConfiguration]
4043
4060
  #
4061
+ # @!attribute [rw] q_in_connect_intent_configuration
4062
+ # Qinconnect intent configuration details for the create intent
4063
+ # request.
4064
+ # @return [Types::QInConnectIntentConfiguration]
4065
+ #
4044
4066
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateIntentRequest AWS API Documentation
4045
4067
  #
4046
4068
  class CreateIntentRequest < Struct.new(
@@ -4059,7 +4081,8 @@ module Aws::LexModelsV2
4059
4081
  :bot_version,
4060
4082
  :locale_id,
4061
4083
  :initial_response_setting,
4062
- :qn_a_intent_configuration)
4084
+ :qn_a_intent_configuration,
4085
+ :q_in_connect_intent_configuration)
4063
4086
  SENSITIVE = []
4064
4087
  include Aws::Structure
4065
4088
  end
@@ -4139,6 +4162,11 @@ module Aws::LexModelsV2
4139
4162
  # `Amazon.QnAIntent`.
4140
4163
  # @return [Types::QnAIntentConfiguration]
4141
4164
  #
4165
+ # @!attribute [rw] q_in_connect_intent_configuration
4166
+ # Qinconnect intent configuration details for the create intent
4167
+ # response.
4168
+ # @return [Types::QInConnectIntentConfiguration]
4169
+ #
4142
4170
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateIntentResponse AWS API Documentation
4143
4171
  #
4144
4172
  class CreateIntentResponse < Struct.new(
@@ -4159,7 +4187,8 @@ module Aws::LexModelsV2
4159
4187
  :locale_id,
4160
4188
  :creation_date_time,
4161
4189
  :initial_response_setting,
4162
- :qn_a_intent_configuration)
4190
+ :qn_a_intent_configuration,
4191
+ :q_in_connect_intent_configuration)
4163
4192
  SENSITIVE = []
4164
4193
  include Aws::Structure
4165
4194
  end
@@ -6136,6 +6165,12 @@ module Aws::LexModelsV2
6136
6165
  # the bot couldn't be built.
6137
6166
  # @return [Array<String>]
6138
6167
  #
6168
+ # @!attribute [rw] error_log_settings
6169
+ # Contains the configuration for error logging that specifies where
6170
+ # and how bot errors are recorded, including destinations like
6171
+ # CloudWatch Logs.
6172
+ # @return [Types::ErrorLogSettings]
6173
+ #
6139
6174
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/DescribeBotResponse AWS API Documentation
6140
6175
  #
6141
6176
  class DescribeBotResponse < Struct.new(
@@ -6150,7 +6185,8 @@ module Aws::LexModelsV2
6150
6185
  :last_updated_date_time,
6151
6186
  :bot_type,
6152
6187
  :bot_members,
6153
- :failure_reasons)
6188
+ :failure_reasons,
6189
+ :error_log_settings)
6154
6190
  SENSITIVE = []
6155
6191
  include Aws::Structure
6156
6192
  end
@@ -6569,6 +6605,11 @@ module Aws::LexModelsV2
6569
6605
  # Details about the configuration of the built-in `Amazon.QnAIntent`.
6570
6606
  # @return [Types::QnAIntentConfiguration]
6571
6607
  #
6608
+ # @!attribute [rw] q_in_connect_intent_configuration
6609
+ # Qinconnect intent configuration details for the describe intent
6610
+ # response.
6611
+ # @return [Types::QInConnectIntentConfiguration]
6612
+ #
6572
6613
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/DescribeIntentResponse AWS API Documentation
6573
6614
  #
6574
6615
  class DescribeIntentResponse < Struct.new(
@@ -6591,7 +6632,8 @@ module Aws::LexModelsV2
6591
6632
  :creation_date_time,
6592
6633
  :last_updated_date_time,
6593
6634
  :initial_response_setting,
6594
- :qn_a_intent_configuration)
6635
+ :qn_a_intent_configuration,
6636
+ :q_in_connect_intent_configuration)
6595
6637
  SENSITIVE = []
6596
6638
  include Aws::Structure
6597
6639
  end
@@ -7331,6 +7373,21 @@ module Aws::LexModelsV2
7331
7373
  include Aws::Structure
7332
7374
  end
7333
7375
 
7376
+ # Settings parameters for the error logs, whether it is enabled or
7377
+ # disabled.
7378
+ #
7379
+ # @!attribute [rw] enabled
7380
+ # Settings parameters for the error logs, when it is enabled.
7381
+ # @return [Boolean]
7382
+ #
7383
+ # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/ErrorLogSettings AWS API Documentation
7384
+ #
7385
+ class ErrorLogSettings < Struct.new(
7386
+ :enabled)
7387
+ SENSITIVE = []
7388
+ include Aws::Structure
7389
+ end
7390
+
7334
7391
  # Contains the names of the fields used for an exact response to the
7335
7392
  # user.
7336
7393
  #
@@ -11570,6 +11627,35 @@ module Aws::LexModelsV2
11570
11627
  include Aws::Structure
11571
11628
  end
11572
11629
 
11630
+ # The configuration details of the Qinconnect assistant.
11631
+ #
11632
+ # @!attribute [rw] assistant_arn
11633
+ # The assistant Arn details of the Qinconnect assistant configuration.
11634
+ # @return [String]
11635
+ #
11636
+ # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/QInConnectAssistantConfiguration AWS API Documentation
11637
+ #
11638
+ class QInConnectAssistantConfiguration < Struct.new(
11639
+ :assistant_arn)
11640
+ SENSITIVE = []
11641
+ include Aws::Structure
11642
+ end
11643
+
11644
+ # The configuration details of the Qinconnect intent.
11645
+ #
11646
+ # @!attribute [rw] q_in_connect_assistant_configuration
11647
+ # The Qinconnect assistant configuration details of the Qinconnect
11648
+ # intent.
11649
+ # @return [Types::QInConnectAssistantConfiguration]
11650
+ #
11651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/QInConnectIntentConfiguration AWS API Documentation
11652
+ #
11653
+ class QInConnectIntentConfiguration < Struct.new(
11654
+ :q_in_connect_assistant_configuration)
11655
+ SENSITIVE = []
11656
+ include Aws::Structure
11657
+ end
11658
+
11573
11659
  # Details about the the configuration of the built-in
11574
11660
  # `Amazon.QnAIntent`.
11575
11661
  #
@@ -14588,6 +14674,12 @@ module Aws::LexModelsV2
14588
14674
  # action.
14589
14675
  # @return [Array<Types::BotMember>]
14590
14676
  #
14677
+ # @!attribute [rw] error_log_settings
14678
+ # Allows you to modify how Amazon Lex logs errors during bot
14679
+ # interactions, including destinations for error logs and the types of
14680
+ # errors to be captured.
14681
+ # @return [Types::ErrorLogSettings]
14682
+ #
14591
14683
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/UpdateBotRequest AWS API Documentation
14592
14684
  #
14593
14685
  class UpdateBotRequest < Struct.new(
@@ -14598,7 +14690,8 @@ module Aws::LexModelsV2
14598
14690
  :data_privacy,
14599
14691
  :idle_session_ttl_in_seconds,
14600
14692
  :bot_type,
14601
- :bot_members)
14693
+ :bot_members,
14694
+ :error_log_settings)
14602
14695
  SENSITIVE = []
14603
14696
  include Aws::Structure
14604
14697
  end
@@ -14651,6 +14744,11 @@ module Aws::LexModelsV2
14651
14744
  # The list of bot members in the network that was updated.
14652
14745
  # @return [Array<Types::BotMember>]
14653
14746
  #
14747
+ # @!attribute [rw] error_log_settings
14748
+ # Settings for managing error logs within the response of an update
14749
+ # bot operation.
14750
+ # @return [Types::ErrorLogSettings]
14751
+ #
14654
14752
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/UpdateBotResponse AWS API Documentation
14655
14753
  #
14656
14754
  class UpdateBotResponse < Struct.new(
@@ -14664,7 +14762,8 @@ module Aws::LexModelsV2
14664
14762
  :creation_date_time,
14665
14763
  :last_updated_date_time,
14666
14764
  :bot_type,
14667
- :bot_members)
14765
+ :bot_members,
14766
+ :error_log_settings)
14668
14767
  SENSITIVE = []
14669
14768
  include Aws::Structure
14670
14769
  end
@@ -14817,6 +14916,11 @@ module Aws::LexModelsV2
14817
14916
  # specify the `kendraConfiguration` field.
14818
14917
  # @return [Types::QnAIntentConfiguration]
14819
14918
  #
14919
+ # @!attribute [rw] q_in_connect_intent_configuration
14920
+ # Qinconnect intent configuration details for the update intent
14921
+ # request.
14922
+ # @return [Types::QInConnectIntentConfiguration]
14923
+ #
14820
14924
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/UpdateIntentRequest AWS API Documentation
14821
14925
  #
14822
14926
  class UpdateIntentRequest < Struct.new(
@@ -14837,7 +14941,8 @@ module Aws::LexModelsV2
14837
14941
  :bot_version,
14838
14942
  :locale_id,
14839
14943
  :initial_response_setting,
14840
- :qn_a_intent_configuration)
14944
+ :qn_a_intent_configuration,
14945
+ :q_in_connect_intent_configuration)
14841
14946
  SENSITIVE = []
14842
14947
  include Aws::Structure
14843
14948
  end
@@ -14932,6 +15037,11 @@ module Aws::LexModelsV2
14932
15037
  # Details about the configuration of the built-in `Amazon.QnAIntent`.
14933
15038
  # @return [Types::QnAIntentConfiguration]
14934
15039
  #
15040
+ # @!attribute [rw] q_in_connect_intent_configuration
15041
+ # Qinconnect intent configuration details for the update intent
15042
+ # response.
15043
+ # @return [Types::QInConnectIntentConfiguration]
15044
+ #
14935
15045
  # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/UpdateIntentResponse AWS API Documentation
14936
15046
  #
14937
15047
  class UpdateIntentResponse < Struct.new(
@@ -14954,7 +15064,8 @@ module Aws::LexModelsV2
14954
15064
  :creation_date_time,
14955
15065
  :last_updated_date_time,
14956
15066
  :initial_response_setting,
14957
- :qn_a_intent_configuration)
15067
+ :qn_a_intent_configuration,
15068
+ :q_in_connect_intent_configuration)
14958
15069
  SENSITIVE = []
14959
15070
  include Aws::Structure
14960
15071
  end
@@ -55,7 +55,7 @@ module Aws::LexModelsV2
55
55
  autoload :EndpointProvider, 'aws-sdk-lexmodelsv2/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-lexmodelsv2/endpoints'
57
57
 
58
- GEM_VERSION = '1.69.0'
58
+ GEM_VERSION = '1.70.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -175,6 +175,7 @@ module Aws
175
175
  def test_bot_alias_tags: () -> ::Hash[::String, ::String]
176
176
  def bot_type: () -> ("Bot" | "BotNetwork")
177
177
  def bot_members: () -> ::Array[Types::BotMember]
178
+ def error_log_settings: () -> Types::ErrorLogSettings
178
179
  end
179
180
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#create_bot-instance_method
180
181
  def create_bot: (
@@ -196,7 +197,10 @@ module Aws
196
197
  bot_member_alias_name: ::String,
197
198
  bot_member_version: ::String
198
199
  },
199
- ]
200
+ ],
201
+ ?error_log_settings: {
202
+ enabled: bool
203
+ }
200
204
  ) -> _CreateBotResponseSuccess
201
205
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBotResponseSuccess
202
206
 
@@ -420,6 +424,7 @@ module Aws
420
424
  def creation_date_time: () -> ::Time
421
425
  def initial_response_setting: () -> Types::InitialResponseSetting
422
426
  def qn_a_intent_configuration: () -> Types::QnAIntentConfiguration
427
+ def q_in_connect_intent_configuration: () -> Types::QInConnectIntentConfiguration
423
428
  end
424
429
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#create_intent-instance_method
425
430
  def create_intent: (
@@ -3959,6 +3964,11 @@ module Aws
3959
3964
  trace_status: ("ENABLED" | "DISABLED")?,
3960
3965
  custom_prompt: ::String?
3961
3966
  }?
3967
+ },
3968
+ ?q_in_connect_intent_configuration: {
3969
+ q_in_connect_assistant_configuration: {
3970
+ assistant_arn: ::String
3971
+ }?
3962
3972
  }
3963
3973
  ) -> _CreateIntentResponseSuccess
3964
3974
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntentResponseSuccess
@@ -6010,6 +6020,7 @@ module Aws
6010
6020
  def bot_type: () -> ("Bot" | "BotNetwork")
6011
6021
  def bot_members: () -> ::Array[Types::BotMember]
6012
6022
  def failure_reasons: () -> ::Array[::String]
6023
+ def error_log_settings: () -> Types::ErrorLogSettings
6013
6024
  end
6014
6025
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#describe_bot-instance_method
6015
6026
  def describe_bot: (
@@ -6227,6 +6238,7 @@ module Aws
6227
6238
  def last_updated_date_time: () -> ::Time
6228
6239
  def initial_response_setting: () -> Types::InitialResponseSetting
6229
6240
  def qn_a_intent_configuration: () -> Types::QnAIntentConfiguration
6241
+ def q_in_connect_intent_configuration: () -> Types::QInConnectIntentConfiguration
6230
6242
  end
6231
6243
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#describe_intent-instance_method
6232
6244
  def describe_intent: (
@@ -7267,6 +7279,9 @@ module Aws
7267
7279
  data_privacy: {
7268
7280
  child_directed: bool
7269
7281
  },
7282
+ error_log_settings: {
7283
+ enabled: bool
7284
+ }?,
7270
7285
  idle_session_ttl_in_seconds: ::Integer?,
7271
7286
  bot_tags: Hash[::String, ::String]?,
7272
7287
  test_bot_alias_tags: Hash[::String, ::String]?
@@ -7420,6 +7435,7 @@ module Aws
7420
7435
  def last_updated_date_time: () -> ::Time
7421
7436
  def bot_type: () -> ("Bot" | "BotNetwork")
7422
7437
  def bot_members: () -> ::Array[Types::BotMember]
7438
+ def error_log_settings: () -> Types::ErrorLogSettings
7423
7439
  end
7424
7440
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#update_bot-instance_method
7425
7441
  def update_bot: (
@@ -7440,7 +7456,10 @@ module Aws
7440
7456
  bot_member_alias_name: ::String,
7441
7457
  bot_member_version: ::String
7442
7458
  },
7443
- ]
7459
+ ],
7460
+ ?error_log_settings: {
7461
+ enabled: bool
7462
+ }
7444
7463
  ) -> _UpdateBotResponseSuccess
7445
7464
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBotResponseSuccess
7446
7465
 
@@ -7643,6 +7662,7 @@ module Aws
7643
7662
  def last_updated_date_time: () -> ::Time
7644
7663
  def initial_response_setting: () -> Types::InitialResponseSetting
7645
7664
  def qn_a_intent_configuration: () -> Types::QnAIntentConfiguration
7665
+ def q_in_connect_intent_configuration: () -> Types::QInConnectIntentConfiguration
7646
7666
  end
7647
7667
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#update_intent-instance_method
7648
7668
  def update_intent: (
@@ -11189,6 +11209,11 @@ module Aws
11189
11209
  trace_status: ("ENABLED" | "DISABLED")?,
11190
11210
  custom_prompt: ::String?
11191
11211
  }?
11212
+ },
11213
+ ?q_in_connect_intent_configuration: {
11214
+ q_in_connect_assistant_configuration: {
11215
+ assistant_arn: ::String
11216
+ }?
11192
11217
  }
11193
11218
  ) -> _UpdateIntentResponseSuccess
11194
11219
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIntentResponseSuccess
data/sig/types.rbs CHANGED
@@ -428,6 +428,7 @@ module Aws::LexModelsV2
428
428
  attr_accessor bot_name: ::String
429
429
  attr_accessor role_arn: ::String
430
430
  attr_accessor data_privacy: Types::DataPrivacy
431
+ attr_accessor error_log_settings: Types::ErrorLogSettings
431
432
  attr_accessor idle_session_ttl_in_seconds: ::Integer
432
433
  attr_accessor bot_tags: ::Hash[::String, ::String]
433
434
  attr_accessor test_bot_alias_tags: ::Hash[::String, ::String]
@@ -797,6 +798,7 @@ module Aws::LexModelsV2
797
798
  attr_accessor test_bot_alias_tags: ::Hash[::String, ::String]
798
799
  attr_accessor bot_type: ("Bot" | "BotNetwork")
799
800
  attr_accessor bot_members: ::Array[Types::BotMember]
801
+ attr_accessor error_log_settings: Types::ErrorLogSettings
800
802
  SENSITIVE: []
801
803
  end
802
804
 
@@ -813,6 +815,7 @@ module Aws::LexModelsV2
813
815
  attr_accessor test_bot_alias_tags: ::Hash[::String, ::String]
814
816
  attr_accessor bot_type: ("Bot" | "BotNetwork")
815
817
  attr_accessor bot_members: ::Array[Types::BotMember]
818
+ attr_accessor error_log_settings: Types::ErrorLogSettings
816
819
  SENSITIVE: []
817
820
  end
818
821
 
@@ -866,6 +869,7 @@ module Aws::LexModelsV2
866
869
  attr_accessor locale_id: ::String
867
870
  attr_accessor initial_response_setting: Types::InitialResponseSetting
868
871
  attr_accessor qn_a_intent_configuration: Types::QnAIntentConfiguration
872
+ attr_accessor q_in_connect_intent_configuration: Types::QInConnectIntentConfiguration
869
873
  SENSITIVE: []
870
874
  end
871
875
 
@@ -888,6 +892,7 @@ module Aws::LexModelsV2
888
892
  attr_accessor creation_date_time: ::Time
889
893
  attr_accessor initial_response_setting: Types::InitialResponseSetting
890
894
  attr_accessor qn_a_intent_configuration: Types::QnAIntentConfiguration
895
+ attr_accessor q_in_connect_intent_configuration: Types::QInConnectIntentConfiguration
891
896
  SENSITIVE: []
892
897
  end
893
898
 
@@ -1371,6 +1376,7 @@ module Aws::LexModelsV2
1371
1376
  attr_accessor bot_type: ("Bot" | "BotNetwork")
1372
1377
  attr_accessor bot_members: ::Array[Types::BotMember]
1373
1378
  attr_accessor failure_reasons: ::Array[::String]
1379
+ attr_accessor error_log_settings: Types::ErrorLogSettings
1374
1380
  SENSITIVE: []
1375
1381
  end
1376
1382
 
@@ -1478,6 +1484,7 @@ module Aws::LexModelsV2
1478
1484
  attr_accessor last_updated_date_time: ::Time
1479
1485
  attr_accessor initial_response_setting: Types::InitialResponseSetting
1480
1486
  attr_accessor qn_a_intent_configuration: Types::QnAIntentConfiguration
1487
+ attr_accessor q_in_connect_intent_configuration: Types::QInConnectIntentConfiguration
1481
1488
  SENSITIVE: []
1482
1489
  end
1483
1490
 
@@ -1667,6 +1674,11 @@ module Aws::LexModelsV2
1667
1674
  SENSITIVE: [:bot_locale_export_password, :associated_transcripts_password]
1668
1675
  end
1669
1676
 
1677
+ class ErrorLogSettings
1678
+ attr_accessor enabled: bool
1679
+ SENSITIVE: []
1680
+ end
1681
+
1670
1682
  class ExactResponseFields
1671
1683
  attr_accessor question_field: ::String
1672
1684
  attr_accessor answer_field: ::String
@@ -2658,6 +2670,16 @@ module Aws::LexModelsV2
2658
2670
  SENSITIVE: []
2659
2671
  end
2660
2672
 
2673
+ class QInConnectAssistantConfiguration
2674
+ attr_accessor assistant_arn: ::String
2675
+ SENSITIVE: []
2676
+ end
2677
+
2678
+ class QInConnectIntentConfiguration
2679
+ attr_accessor q_in_connect_assistant_configuration: Types::QInConnectAssistantConfiguration
2680
+ SENSITIVE: []
2681
+ end
2682
+
2661
2683
  class QnAIntentConfiguration
2662
2684
  attr_accessor data_source_configuration: Types::DataSourceConfiguration
2663
2685
  attr_accessor bedrock_model_configuration: Types::BedrockModelSpecification
@@ -3385,6 +3407,7 @@ module Aws::LexModelsV2
3385
3407
  attr_accessor idle_session_ttl_in_seconds: ::Integer
3386
3408
  attr_accessor bot_type: ("Bot" | "BotNetwork")
3387
3409
  attr_accessor bot_members: ::Array[Types::BotMember]
3410
+ attr_accessor error_log_settings: Types::ErrorLogSettings
3388
3411
  SENSITIVE: []
3389
3412
  end
3390
3413
 
@@ -3400,6 +3423,7 @@ module Aws::LexModelsV2
3400
3423
  attr_accessor last_updated_date_time: ::Time
3401
3424
  attr_accessor bot_type: ("Bot" | "BotNetwork")
3402
3425
  attr_accessor bot_members: ::Array[Types::BotMember]
3426
+ attr_accessor error_log_settings: Types::ErrorLogSettings
3403
3427
  SENSITIVE: []
3404
3428
  end
3405
3429
 
@@ -3438,6 +3462,7 @@ module Aws::LexModelsV2
3438
3462
  attr_accessor locale_id: ::String
3439
3463
  attr_accessor initial_response_setting: Types::InitialResponseSetting
3440
3464
  attr_accessor qn_a_intent_configuration: Types::QnAIntentConfiguration
3465
+ attr_accessor q_in_connect_intent_configuration: Types::QInConnectIntentConfiguration
3441
3466
  SENSITIVE: []
3442
3467
  end
3443
3468
 
@@ -3462,6 +3487,7 @@ module Aws::LexModelsV2
3462
3487
  attr_accessor last_updated_date_time: ::Time
3463
3488
  attr_accessor initial_response_setting: Types::InitialResponseSetting
3464
3489
  attr_accessor qn_a_intent_configuration: Types::QnAIntentConfiguration
3490
+ attr_accessor q_in_connect_intent_configuration: Types::QInConnectIntentConfiguration
3465
3491
  SENSITIVE: []
3466
3492
  end
3467
3493
 
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.69.0
4
+ version: 1.70.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: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core