aws-sdk-qconnect 1.61.0 → 1.62.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-qconnect/client.rb +187 -24
- data/lib/aws-sdk-qconnect/client_api.rb +58 -1
- data/lib/aws-sdk-qconnect/types.rb +216 -22
- data/lib/aws-sdk-qconnect.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/params.rbs +42 -2
- data/sig/types.rbs +60 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3e6173cc6073010bf947ac7e501b3795fb962a30589869e2a1c6d76e232ba78
|
|
4
|
+
data.tar.gz: 0f8d8ed615916b084719da960161be16be27af0fb2b48d4c4d7e6e535aad2650
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf1134ddeae6cf83bee273457b6c4ea8208d11b1f8b4006f0e7f640dc744dc681abf9df0ca9da1379ac9697c78c4605003977101007f4b89543f55787549fc6d
|
|
7
|
+
data.tar.gz: 14c6a86a9b6f74eb1aa5f14ec084838701e268dee897a3722f36628c97254d96d0597b717d30f5e68aac972973cf040fe6c965f69a54a93c04b25cd8e3a785e4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.62.0 (2026-09-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Connect AI Agents now support multi-agent orchestration and structured JSON input and output messaging for orchestration agents.
|
|
8
|
+
|
|
4
9
|
1.61.0 (2026-09-11)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.62.0
|
|
@@ -791,7 +791,7 @@ module Aws::QConnect
|
|
|
791
791
|
# ],
|
|
792
792
|
# },
|
|
793
793
|
# orchestration_ai_agent_configuration: {
|
|
794
|
-
# orchestration_ai_prompt_id: "UuidWithQualifier",
|
|
794
|
+
# orchestration_ai_prompt_id: "UuidWithQualifier",
|
|
795
795
|
# orchestration_ai_guardrail_id: "UuidWithQualifier",
|
|
796
796
|
# tool_configurations: [
|
|
797
797
|
# {
|
|
@@ -837,8 +837,42 @@ module Aws::QConnect
|
|
|
837
837
|
# },
|
|
838
838
|
# },
|
|
839
839
|
# ],
|
|
840
|
+
# multi_agent_configurations: [
|
|
841
|
+
# {
|
|
842
|
+
# delegate_agent_configuration: {
|
|
843
|
+
# agent_target: { # required
|
|
844
|
+
# ai_agent_id: "NonEmptyString",
|
|
845
|
+
# application_id: "NonEmptyString",
|
|
846
|
+
# },
|
|
847
|
+
# instruction: {
|
|
848
|
+
# instruction: "String",
|
|
849
|
+
# examples: ["String"],
|
|
850
|
+
# },
|
|
851
|
+
# },
|
|
852
|
+
# handoff_agent_configuration: {
|
|
853
|
+
# agent_target: { # required
|
|
854
|
+
# ai_agent_id: "NonEmptyString",
|
|
855
|
+
# application_id: "NonEmptyString",
|
|
856
|
+
# },
|
|
857
|
+
# instruction: {
|
|
858
|
+
# instruction: "String",
|
|
859
|
+
# examples: ["String"],
|
|
860
|
+
# },
|
|
861
|
+
# audio_streaming_enabled: false,
|
|
862
|
+
# immediate_handoff: false,
|
|
863
|
+
# },
|
|
864
|
+
# },
|
|
865
|
+
# ],
|
|
840
866
|
# connect_instance_arn: "GenericArn",
|
|
841
867
|
# locale: "NonEmptyString",
|
|
868
|
+
# input_schemas: [
|
|
869
|
+
# {
|
|
870
|
+
# },
|
|
871
|
+
# ],
|
|
872
|
+
# output_schemas: [
|
|
873
|
+
# {
|
|
874
|
+
# },
|
|
875
|
+
# ],
|
|
842
876
|
# },
|
|
843
877
|
# note_taking_ai_agent_configuration: {
|
|
844
878
|
# note_taking_ai_prompt_id: "UuidWithQualifier",
|
|
@@ -989,8 +1023,23 @@ module Aws::QConnect
|
|
|
989
1023
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
990
1024
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
991
1025
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
1026
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations #=> Array
|
|
1027
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.agent_target.ai_agent_id #=> String
|
|
1028
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.agent_target.application_id #=> String
|
|
1029
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.instruction #=> String
|
|
1030
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.examples #=> Array
|
|
1031
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.examples[0] #=> String
|
|
1032
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.agent_target.ai_agent_id #=> String
|
|
1033
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.agent_target.application_id #=> String
|
|
1034
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.instruction #=> String
|
|
1035
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.examples #=> Array
|
|
1036
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.examples[0] #=> String
|
|
1037
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.audio_streaming_enabled #=> Boolean
|
|
1038
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.immediate_handoff #=> Boolean
|
|
992
1039
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
993
1040
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
1041
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.input_schemas #=> Array
|
|
1042
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.output_schemas #=> Array
|
|
994
1043
|
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
995
1044
|
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
996
1045
|
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
@@ -1189,8 +1238,23 @@ module Aws::QConnect
|
|
|
1189
1238
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
1190
1239
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
1191
1240
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
1241
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations #=> Array
|
|
1242
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.agent_target.ai_agent_id #=> String
|
|
1243
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.agent_target.application_id #=> String
|
|
1244
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.instruction #=> String
|
|
1245
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.examples #=> Array
|
|
1246
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.examples[0] #=> String
|
|
1247
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.agent_target.ai_agent_id #=> String
|
|
1248
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.agent_target.application_id #=> String
|
|
1249
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.instruction #=> String
|
|
1250
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.examples #=> Array
|
|
1251
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.examples[0] #=> String
|
|
1252
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.audio_streaming_enabled #=> Boolean
|
|
1253
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.immediate_handoff #=> Boolean
|
|
1192
1254
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
1193
1255
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
1256
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.input_schemas #=> Array
|
|
1257
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.output_schemas #=> Array
|
|
1194
1258
|
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
1195
1259
|
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
1196
1260
|
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
@@ -1981,7 +2045,7 @@ module Aws::QConnect
|
|
|
1981
2045
|
# resources.
|
|
1982
2046
|
#
|
|
1983
2047
|
# For more information, see [Integrate Amazon Q in Connect with
|
|
1984
|
-
# step-by-step guides][2] in the *
|
|
2048
|
+
# step-by-step guides][2] in the *Connect Customer Administrator Guide*.
|
|
1985
2049
|
#
|
|
1986
2050
|
#
|
|
1987
2051
|
#
|
|
@@ -2976,7 +3040,7 @@ module Aws::QConnect
|
|
|
2976
3040
|
# Whether the quick response is active.
|
|
2977
3041
|
#
|
|
2978
3042
|
# @option params [Array<String>] :channels
|
|
2979
|
-
# The
|
|
3043
|
+
# The Connect Customer channels this quick response applies to.
|
|
2980
3044
|
#
|
|
2981
3045
|
# @option params [String] :language
|
|
2982
3046
|
# The language code value for the language in which the quick response
|
|
@@ -3064,7 +3128,7 @@ module Aws::QConnect
|
|
|
3064
3128
|
end
|
|
3065
3129
|
|
|
3066
3130
|
# Creates a session. A session is a contextual container used for
|
|
3067
|
-
# generating recommendations.
|
|
3131
|
+
# generating recommendations. Connect Customer creates a new Amazon Q in
|
|
3068
3132
|
# Connect session for each contact on which Amazon Q in Connect is
|
|
3069
3133
|
# enabled.
|
|
3070
3134
|
#
|
|
@@ -3103,9 +3167,9 @@ module Aws::QConnect
|
|
|
3103
3167
|
# Session.
|
|
3104
3168
|
#
|
|
3105
3169
|
# @option params [String] :contact_arn
|
|
3106
|
-
# The Amazon Resource Name (ARN) of the email contact in
|
|
3107
|
-
# Used to retrieve email content and establish session context
|
|
3108
|
-
# AI-powered email assistance.
|
|
3170
|
+
# The Amazon Resource Name (ARN) of the email contact in Connect
|
|
3171
|
+
# Customer. Used to retrieve email content and establish session context
|
|
3172
|
+
# for AI-powered email assistance.
|
|
3109
3173
|
#
|
|
3110
3174
|
# @option params [Array<Types::OrchestratorConfigurationEntry>] :orchestrator_configuration_list
|
|
3111
3175
|
# The list of orchestrator configurations for the session being created.
|
|
@@ -3509,7 +3573,7 @@ module Aws::QConnect
|
|
|
3509
3573
|
#
|
|
3510
3574
|
# For more information about content associations--what they are and
|
|
3511
3575
|
# when they are used--see [Integrate Amazon Q in Connect with
|
|
3512
|
-
# step-by-step guides][1] in the *
|
|
3576
|
+
# step-by-step guides][1] in the *Connect Customer Administrator Guide*.
|
|
3513
3577
|
#
|
|
3514
3578
|
#
|
|
3515
3579
|
#
|
|
@@ -3857,8 +3921,23 @@ module Aws::QConnect
|
|
|
3857
3921
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
3858
3922
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
3859
3923
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
3924
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations #=> Array
|
|
3925
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.agent_target.ai_agent_id #=> String
|
|
3926
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.agent_target.application_id #=> String
|
|
3927
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.instruction #=> String
|
|
3928
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.examples #=> Array
|
|
3929
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.examples[0] #=> String
|
|
3930
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.agent_target.ai_agent_id #=> String
|
|
3931
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.agent_target.application_id #=> String
|
|
3932
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.instruction #=> String
|
|
3933
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.examples #=> Array
|
|
3934
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.examples[0] #=> String
|
|
3935
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.audio_streaming_enabled #=> Boolean
|
|
3936
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.immediate_handoff #=> Boolean
|
|
3860
3937
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
3861
3938
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
3939
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.input_schemas #=> Array
|
|
3940
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.output_schemas #=> Array
|
|
3862
3941
|
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
3863
3942
|
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
3864
3943
|
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
@@ -4152,7 +4231,7 @@ module Aws::QConnect
|
|
|
4152
4231
|
#
|
|
4153
4232
|
# For more information about content associations--what they are and
|
|
4154
4233
|
# when they are used--see [Integrate Amazon Q in Connect with
|
|
4155
|
-
# step-by-step guides][1] in the *
|
|
4234
|
+
# step-by-step guides][1] in the *Connect Customer Administrator Guide*.
|
|
4156
4235
|
#
|
|
4157
4236
|
#
|
|
4158
4237
|
#
|
|
@@ -4575,7 +4654,7 @@ module Aws::QConnect
|
|
|
4575
4654
|
#
|
|
4576
4655
|
# @example Response structure
|
|
4577
4656
|
#
|
|
4578
|
-
# resp.type #=> String, one of "TEXT", "TOOL_USE_RESULT"
|
|
4657
|
+
# resp.type #=> String, one of "TEXT", "TOOL_USE_RESULT", "DATA"
|
|
4579
4658
|
# resp.response.value.text.value #=> String
|
|
4580
4659
|
# resp.response.value.text.citations #=> Array
|
|
4581
4660
|
# resp.response.value.text.citations[0].content_id #=> String
|
|
@@ -4666,8 +4745,8 @@ module Aws::QConnect
|
|
|
4666
4745
|
|
|
4667
4746
|
# This API will be discontinued starting June 1, 2024. To receive
|
|
4668
4747
|
# generative responses after March 1, 2024, you will need to create a
|
|
4669
|
-
# new Assistant in the
|
|
4670
|
-
# in Connect JavaScript library (amazon-q-connectjs) into your
|
|
4748
|
+
# new Assistant in the Connect Customer console and integrate the Amazon
|
|
4749
|
+
# Q in Connect JavaScript library (amazon-q-connectjs) into your
|
|
4671
4750
|
# applications.
|
|
4672
4751
|
#
|
|
4673
4752
|
# Retrieves recommendations for the specified session. To avoid
|
|
@@ -5054,8 +5133,23 @@ module Aws::QConnect
|
|
|
5054
5133
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
5055
5134
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
5056
5135
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
5136
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations #=> Array
|
|
5137
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.agent_target.ai_agent_id #=> String
|
|
5138
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.agent_target.application_id #=> String
|
|
5139
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.instruction #=> String
|
|
5140
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.examples #=> Array
|
|
5141
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.examples[0] #=> String
|
|
5142
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.agent_target.ai_agent_id #=> String
|
|
5143
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.agent_target.application_id #=> String
|
|
5144
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.instruction #=> String
|
|
5145
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.examples #=> Array
|
|
5146
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.examples[0] #=> String
|
|
5147
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.audio_streaming_enabled #=> Boolean
|
|
5148
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.immediate_handoff #=> Boolean
|
|
5057
5149
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
5058
5150
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
5151
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.input_schemas #=> Array
|
|
5152
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.output_schemas #=> Array
|
|
5059
5153
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
5060
5154
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
5061
5155
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
@@ -5248,8 +5342,23 @@ module Aws::QConnect
|
|
|
5248
5342
|
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
5249
5343
|
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
5250
5344
|
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
5345
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations #=> Array
|
|
5346
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.agent_target.ai_agent_id #=> String
|
|
5347
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.agent_target.application_id #=> String
|
|
5348
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.instruction #=> String
|
|
5349
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.examples #=> Array
|
|
5350
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.examples[0] #=> String
|
|
5351
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.agent_target.ai_agent_id #=> String
|
|
5352
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.agent_target.application_id #=> String
|
|
5353
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.instruction #=> String
|
|
5354
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.examples #=> Array
|
|
5355
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.examples[0] #=> String
|
|
5356
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.audio_streaming_enabled #=> Boolean
|
|
5357
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.immediate_handoff #=> Boolean
|
|
5251
5358
|
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
5252
5359
|
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
5360
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.input_schemas #=> Array
|
|
5361
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.output_schemas #=> Array
|
|
5253
5362
|
# resp.ai_agent_summaries[0].configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
5254
5363
|
# resp.ai_agent_summaries[0].configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
5255
5364
|
# resp.ai_agent_summaries[0].configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
@@ -5635,7 +5744,7 @@ module Aws::QConnect
|
|
|
5635
5744
|
#
|
|
5636
5745
|
# For more information about content associations--what they are and
|
|
5637
5746
|
# when they are used--see [Integrate Amazon Q in Connect with
|
|
5638
|
-
# step-by-step guides][1] in the *
|
|
5747
|
+
# step-by-step guides][1] in the *Connect Customer Administrator Guide*.
|
|
5639
5748
|
#
|
|
5640
5749
|
#
|
|
5641
5750
|
#
|
|
@@ -6249,6 +6358,9 @@ module Aws::QConnect
|
|
|
6249
6358
|
# resp.spans[0].attributes.ai_agent_version #=> Integer
|
|
6250
6359
|
# resp.spans[0].attributes.ai_agent_invoker #=> String
|
|
6251
6360
|
# resp.spans[0].attributes.ai_agent_orchestrator_use_case #=> String
|
|
6361
|
+
# resp.spans[0].attributes.interaction_mode #=> String, one of "DELEGATE", "HANDOFF"
|
|
6362
|
+
# resp.spans[0].attributes.target_agent_id #=> String
|
|
6363
|
+
# resp.spans[0].attributes.return_reason #=> String, one of "COMPLETE", "COMPLETE_WITH_ERROR", "ESCALATE", "OUT_OF_DOMAIN"
|
|
6252
6364
|
# resp.spans[0].attributes.request_model #=> String
|
|
6253
6365
|
# resp.spans[0].attributes.request_max_tokens #=> Integer
|
|
6254
6366
|
# resp.spans[0].attributes.temperature #=> Float
|
|
@@ -6471,8 +6583,8 @@ module Aws::QConnect
|
|
|
6471
6583
|
|
|
6472
6584
|
# This API will be discontinued starting June 1, 2024. To receive
|
|
6473
6585
|
# generative responses after March 1, 2024, you will need to create a
|
|
6474
|
-
# new Assistant in the
|
|
6475
|
-
# in Connect JavaScript library (amazon-q-connectjs) into your
|
|
6586
|
+
# new Assistant in the Connect Customer console and integrate the Amazon
|
|
6587
|
+
# Q in Connect JavaScript library (amazon-q-connectjs) into your
|
|
6476
6588
|
# applications.
|
|
6477
6589
|
#
|
|
6478
6590
|
# Performs a manual search against the specified assistant. To retrieve
|
|
@@ -7186,8 +7298,8 @@ module Aws::QConnect
|
|
|
7186
7298
|
# The maximum number of results to return per page.
|
|
7187
7299
|
#
|
|
7188
7300
|
# @option params [Hash<String,String>] :attributes
|
|
7189
|
-
# The [user-defined
|
|
7190
|
-
# when search results are returned.
|
|
7301
|
+
# The [user-defined Connect Customer contact attributes][1] to be
|
|
7302
|
+
# resolved when search results are returned.
|
|
7191
7303
|
#
|
|
7192
7304
|
#
|
|
7193
7305
|
#
|
|
@@ -7391,7 +7503,7 @@ module Aws::QConnect
|
|
|
7391
7503
|
# resp = client.send_message({
|
|
7392
7504
|
# assistant_id: "UuidOrArn", # required
|
|
7393
7505
|
# session_id: "UuidOrArn", # required
|
|
7394
|
-
# type: "TEXT", # required, accepts TEXT, TOOL_USE_RESULT
|
|
7506
|
+
# type: "TEXT", # required, accepts TEXT, TOOL_USE_RESULT, DATA
|
|
7395
7507
|
# message: { # required
|
|
7396
7508
|
# value: { # required
|
|
7397
7509
|
# text: {
|
|
@@ -7421,6 +7533,8 @@ module Aws::QConnect
|
|
|
7421
7533
|
# input_schema: {
|
|
7422
7534
|
# },
|
|
7423
7535
|
# },
|
|
7536
|
+
# data: {
|
|
7537
|
+
# },
|
|
7424
7538
|
# },
|
|
7425
7539
|
# },
|
|
7426
7540
|
# ai_agent_id: "UuidOrArnOrEitherWithQualifier",
|
|
@@ -7943,7 +8057,7 @@ module Aws::QConnect
|
|
|
7943
8057
|
# ],
|
|
7944
8058
|
# },
|
|
7945
8059
|
# orchestration_ai_agent_configuration: {
|
|
7946
|
-
# orchestration_ai_prompt_id: "UuidWithQualifier",
|
|
8060
|
+
# orchestration_ai_prompt_id: "UuidWithQualifier",
|
|
7947
8061
|
# orchestration_ai_guardrail_id: "UuidWithQualifier",
|
|
7948
8062
|
# tool_configurations: [
|
|
7949
8063
|
# {
|
|
@@ -7989,8 +8103,42 @@ module Aws::QConnect
|
|
|
7989
8103
|
# },
|
|
7990
8104
|
# },
|
|
7991
8105
|
# ],
|
|
8106
|
+
# multi_agent_configurations: [
|
|
8107
|
+
# {
|
|
8108
|
+
# delegate_agent_configuration: {
|
|
8109
|
+
# agent_target: { # required
|
|
8110
|
+
# ai_agent_id: "NonEmptyString",
|
|
8111
|
+
# application_id: "NonEmptyString",
|
|
8112
|
+
# },
|
|
8113
|
+
# instruction: {
|
|
8114
|
+
# instruction: "String",
|
|
8115
|
+
# examples: ["String"],
|
|
8116
|
+
# },
|
|
8117
|
+
# },
|
|
8118
|
+
# handoff_agent_configuration: {
|
|
8119
|
+
# agent_target: { # required
|
|
8120
|
+
# ai_agent_id: "NonEmptyString",
|
|
8121
|
+
# application_id: "NonEmptyString",
|
|
8122
|
+
# },
|
|
8123
|
+
# instruction: {
|
|
8124
|
+
# instruction: "String",
|
|
8125
|
+
# examples: ["String"],
|
|
8126
|
+
# },
|
|
8127
|
+
# audio_streaming_enabled: false,
|
|
8128
|
+
# immediate_handoff: false,
|
|
8129
|
+
# },
|
|
8130
|
+
# },
|
|
8131
|
+
# ],
|
|
7992
8132
|
# connect_instance_arn: "GenericArn",
|
|
7993
8133
|
# locale: "NonEmptyString",
|
|
8134
|
+
# input_schemas: [
|
|
8135
|
+
# {
|
|
8136
|
+
# },
|
|
8137
|
+
# ],
|
|
8138
|
+
# output_schemas: [
|
|
8139
|
+
# {
|
|
8140
|
+
# },
|
|
8141
|
+
# ],
|
|
7994
8142
|
# },
|
|
7995
8143
|
# note_taking_ai_agent_configuration: {
|
|
7996
8144
|
# note_taking_ai_prompt_id: "UuidWithQualifier",
|
|
@@ -8137,8 +8285,23 @@ module Aws::QConnect
|
|
|
8137
8285
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
8138
8286
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
8139
8287
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
8288
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations #=> Array
|
|
8289
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.agent_target.ai_agent_id #=> String
|
|
8290
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.agent_target.application_id #=> String
|
|
8291
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.instruction #=> String
|
|
8292
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.examples #=> Array
|
|
8293
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].delegate_agent_configuration.instruction.examples[0] #=> String
|
|
8294
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.agent_target.ai_agent_id #=> String
|
|
8295
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.agent_target.application_id #=> String
|
|
8296
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.instruction #=> String
|
|
8297
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.examples #=> Array
|
|
8298
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.instruction.examples[0] #=> String
|
|
8299
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.audio_streaming_enabled #=> Boolean
|
|
8300
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.multi_agent_configurations[0].handoff_agent_configuration.immediate_handoff #=> Boolean
|
|
8140
8301
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
8141
8302
|
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
8303
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.input_schemas #=> Array
|
|
8304
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.output_schemas #=> Array
|
|
8142
8305
|
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
8143
8306
|
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
8144
8307
|
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
@@ -9272,7 +9435,7 @@ module Aws::QConnect
|
|
|
9272
9435
|
# Whether the quick response is active.
|
|
9273
9436
|
#
|
|
9274
9437
|
# @option params [Array<String>] :channels
|
|
9275
|
-
# The
|
|
9438
|
+
# The Connect Customer contact channels this quick response applies to.
|
|
9276
9439
|
# The supported contact channel types include `Chat`.
|
|
9277
9440
|
#
|
|
9278
9441
|
# @option params [String] :language
|
|
@@ -9345,9 +9508,9 @@ module Aws::QConnect
|
|
|
9345
9508
|
end
|
|
9346
9509
|
|
|
9347
9510
|
# Updates a session. A session is a contextual container used for
|
|
9348
|
-
# generating recommendations.
|
|
9349
|
-
# Q in Connect session for each contact on which Amazon Q in
|
|
9350
|
-
# enabled.
|
|
9511
|
+
# generating recommendations. Connect Customer updates the existing
|
|
9512
|
+
# Amazon Q in Connect session for each contact on which Amazon Q in
|
|
9513
|
+
# Connect is enabled.
|
|
9351
9514
|
#
|
|
9352
9515
|
# @option params [required, String] :assistant_id
|
|
9353
9516
|
# The identifier of the Amazon Q in Connect assistant. Can be either the
|
|
@@ -9536,7 +9699,7 @@ module Aws::QConnect
|
|
|
9536
9699
|
tracer: tracer
|
|
9537
9700
|
)
|
|
9538
9701
|
context[:gem_name] = 'aws-sdk-qconnect'
|
|
9539
|
-
context[:gem_version] = '1.
|
|
9702
|
+
context[:gem_version] = '1.62.0'
|
|
9540
9703
|
Seahorse::Client::Request.new(handlers, context)
|
|
9541
9704
|
end
|
|
9542
9705
|
|
|
@@ -54,6 +54,7 @@ module Aws::QConnect
|
|
|
54
54
|
ActivateMessageTemplateRequest = Shapes::StructureShape.new(name: 'ActivateMessageTemplateRequest')
|
|
55
55
|
ActivateMessageTemplateResponse = Shapes::StructureShape.new(name: 'ActivateMessageTemplateResponse')
|
|
56
56
|
AgentAttributes = Shapes::StructureShape.new(name: 'AgentAttributes')
|
|
57
|
+
AgentTarget = Shapes::UnionShape.new(name: 'AgentTarget')
|
|
57
58
|
AmazonConnectGuideAssociationData = Shapes::StructureShape.new(name: 'AmazonConnectGuideAssociationData')
|
|
58
59
|
AndConditions = Shapes::ListShape.new(name: 'AndConditions')
|
|
59
60
|
Annotation = Shapes::StructureShape.new(name: 'Annotation')
|
|
@@ -166,6 +167,7 @@ module Aws::QConnect
|
|
|
166
167
|
DataSummaryList = Shapes::ListShape.new(name: 'DataSummaryList')
|
|
167
168
|
DeactivateMessageTemplateRequest = Shapes::StructureShape.new(name: 'DeactivateMessageTemplateRequest')
|
|
168
169
|
DeactivateMessageTemplateResponse = Shapes::StructureShape.new(name: 'DeactivateMessageTemplateResponse')
|
|
170
|
+
DelegateAgentConfiguration = Shapes::StructureShape.new(name: 'DelegateAgentConfiguration')
|
|
169
171
|
DeleteAIAgentRequest = Shapes::StructureShape.new(name: 'DeleteAIAgentRequest')
|
|
170
172
|
DeleteAIAgentResponse = Shapes::StructureShape.new(name: 'DeleteAIAgentResponse')
|
|
171
173
|
DeleteAIAgentVersionRequest = Shapes::StructureShape.new(name: 'DeleteAIAgentVersionRequest')
|
|
@@ -300,6 +302,7 @@ module Aws::QConnect
|
|
|
300
302
|
GuardrailWordConfig = Shapes::StructureShape.new(name: 'GuardrailWordConfig')
|
|
301
303
|
GuardrailWordText = Shapes::StringShape.new(name: 'GuardrailWordText')
|
|
302
304
|
GuardrailWordsConfig = Shapes::ListShape.new(name: 'GuardrailWordsConfig')
|
|
305
|
+
HandoffAgentConfiguration = Shapes::StructureShape.new(name: 'HandoffAgentConfiguration')
|
|
303
306
|
Headers = Shapes::MapShape.new(name: 'Headers')
|
|
304
307
|
HierarchicalChunkingConfiguration = Shapes::StructureShape.new(name: 'HierarchicalChunkingConfiguration')
|
|
305
308
|
HierarchicalChunkingConfigurationOverlapTokensInteger = Shapes::IntegerShape.new(name: 'HierarchicalChunkingConfigurationOverlapTokensInteger')
|
|
@@ -317,6 +320,7 @@ module Aws::QConnect
|
|
|
317
320
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
|
318
321
|
IntentDetectedDataDetails = Shapes::StructureShape.new(name: 'IntentDetectedDataDetails')
|
|
319
322
|
IntentInputData = Shapes::StructureShape.new(name: 'IntentInputData')
|
|
323
|
+
InteractionMode = Shapes::StringShape.new(name: 'InteractionMode')
|
|
320
324
|
JSONDocument = Shapes::DocumentShape.new(name: 'JSONDocument', document: true)
|
|
321
325
|
KnowledgeBaseAssociationConfigurationData = Shapes::StructureShape.new(name: 'KnowledgeBaseAssociationConfigurationData')
|
|
322
326
|
KnowledgeBaseAssociationData = Shapes::StructureShape.new(name: 'KnowledgeBaseAssociationData')
|
|
@@ -416,6 +420,10 @@ module Aws::QConnect
|
|
|
416
420
|
ModelLifecycle = Shapes::StringShape.new(name: 'ModelLifecycle')
|
|
417
421
|
ModelSummary = Shapes::StructureShape.new(name: 'ModelSummary')
|
|
418
422
|
ModelSummaryList = Shapes::ListShape.new(name: 'ModelSummaryList')
|
|
423
|
+
MultiAgentConfiguration = Shapes::UnionShape.new(name: 'MultiAgentConfiguration')
|
|
424
|
+
MultiAgentConfigurationList = Shapes::ListShape.new(name: 'MultiAgentConfigurationList')
|
|
425
|
+
MultiAgentExampleList = Shapes::ListShape.new(name: 'MultiAgentExampleList')
|
|
426
|
+
MultiAgentInstruction = Shapes::StructureShape.new(name: 'MultiAgentInstruction')
|
|
419
427
|
Name = Shapes::StringShape.new(name: 'Name')
|
|
420
428
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
421
429
|
NonEmptySensitiveString = Shapes::StringShape.new(name: 'NonEmptySensitiveString')
|
|
@@ -433,6 +441,8 @@ module Aws::QConnect
|
|
|
433
441
|
OrCondition = Shapes::UnionShape.new(name: 'OrCondition')
|
|
434
442
|
OrConditions = Shapes::ListShape.new(name: 'OrConditions')
|
|
435
443
|
OrchestrationAIAgentConfiguration = Shapes::StructureShape.new(name: 'OrchestrationAIAgentConfiguration')
|
|
444
|
+
OrchestrationAIAgentConfigurationInputSchemasList = Shapes::ListShape.new(name: 'OrchestrationAIAgentConfigurationInputSchemasList')
|
|
445
|
+
OrchestrationAIAgentConfigurationOutputSchemasList = Shapes::ListShape.new(name: 'OrchestrationAIAgentConfigurationOutputSchemasList')
|
|
436
446
|
OrchestratorConfigurationEntry = Shapes::StructureShape.new(name: 'OrchestratorConfigurationEntry')
|
|
437
447
|
OrchestratorConfigurationList = Shapes::ListShape.new(name: 'OrchestratorConfigurationList')
|
|
438
448
|
Order = Shapes::StringShape.new(name: 'Order')
|
|
@@ -523,6 +533,7 @@ module Aws::QConnect
|
|
|
523
533
|
RetrieveResponse = Shapes::StructureShape.new(name: 'RetrieveResponse')
|
|
524
534
|
RetrieveResult = Shapes::StructureShape.new(name: 'RetrieveResult')
|
|
525
535
|
RetrieveResultList = Shapes::ListShape.new(name: 'RetrieveResultList')
|
|
536
|
+
ReturnReason = Shapes::StringShape.new(name: 'ReturnReason')
|
|
526
537
|
RuntimeSessionData = Shapes::StructureShape.new(name: 'RuntimeSessionData')
|
|
527
538
|
RuntimeSessionDataList = Shapes::ListShape.new(name: 'RuntimeSessionDataList')
|
|
528
539
|
RuntimeSessionDataValue = Shapes::UnionShape.new(name: 'RuntimeSessionDataValue')
|
|
@@ -889,6 +900,14 @@ module Aws::QConnect
|
|
|
889
900
|
AgentAttributes.add_member(:last_name, Shapes::ShapeRef.new(shape: MessageTemplateAttributeValue, location_name: "lastName"))
|
|
890
901
|
AgentAttributes.struct_class = Types::AgentAttributes
|
|
891
902
|
|
|
903
|
+
AgentTarget.add_member(:ai_agent_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "aiAgentId"))
|
|
904
|
+
AgentTarget.add_member(:application_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "applicationId"))
|
|
905
|
+
AgentTarget.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
906
|
+
AgentTarget.add_member_subclass(:ai_agent_id, Types::AgentTarget::AiAgentId)
|
|
907
|
+
AgentTarget.add_member_subclass(:application_id, Types::AgentTarget::ApplicationId)
|
|
908
|
+
AgentTarget.add_member_subclass(:unknown, Types::AgentTarget::Unknown)
|
|
909
|
+
AgentTarget.struct_class = Types::AgentTarget
|
|
910
|
+
|
|
892
911
|
AmazonConnectGuideAssociationData.add_member(:flow_id, Shapes::ShapeRef.new(shape: GenericArn, location_name: "flowId"))
|
|
893
912
|
AmazonConnectGuideAssociationData.struct_class = Types::AmazonConnectGuideAssociationData
|
|
894
913
|
|
|
@@ -1463,6 +1482,10 @@ module Aws::QConnect
|
|
|
1463
1482
|
DeactivateMessageTemplateResponse.add_member(:version_number, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "versionNumber"))
|
|
1464
1483
|
DeactivateMessageTemplateResponse.struct_class = Types::DeactivateMessageTemplateResponse
|
|
1465
1484
|
|
|
1485
|
+
DelegateAgentConfiguration.add_member(:agent_target, Shapes::ShapeRef.new(shape: AgentTarget, required: true, location_name: "agentTarget"))
|
|
1486
|
+
DelegateAgentConfiguration.add_member(:instruction, Shapes::ShapeRef.new(shape: MultiAgentInstruction, location_name: "instruction"))
|
|
1487
|
+
DelegateAgentConfiguration.struct_class = Types::DelegateAgentConfiguration
|
|
1488
|
+
|
|
1466
1489
|
DeleteAIAgentRequest.add_member(:assistant_id, Shapes::ShapeRef.new(shape: UuidOrArn, required: true, location: "uri", location_name: "assistantId"))
|
|
1467
1490
|
DeleteAIAgentRequest.add_member(:ai_agent_id, Shapes::ShapeRef.new(shape: UuidOrArnOrEitherWithQualifier, required: true, location: "uri", location_name: "aiAgentId"))
|
|
1468
1491
|
DeleteAIAgentRequest.struct_class = Types::DeleteAIAgentRequest
|
|
@@ -1857,6 +1880,12 @@ module Aws::QConnect
|
|
|
1857
1880
|
|
|
1858
1881
|
GuardrailWordsConfig.member = Shapes::ShapeRef.new(shape: GuardrailWordConfig)
|
|
1859
1882
|
|
|
1883
|
+
HandoffAgentConfiguration.add_member(:agent_target, Shapes::ShapeRef.new(shape: AgentTarget, required: true, location_name: "agentTarget"))
|
|
1884
|
+
HandoffAgentConfiguration.add_member(:instruction, Shapes::ShapeRef.new(shape: MultiAgentInstruction, location_name: "instruction"))
|
|
1885
|
+
HandoffAgentConfiguration.add_member(:audio_streaming_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "audioStreamingEnabled"))
|
|
1886
|
+
HandoffAgentConfiguration.add_member(:immediate_handoff, Shapes::ShapeRef.new(shape: Boolean, location_name: "immediateHandoff"))
|
|
1887
|
+
HandoffAgentConfiguration.struct_class = Types::HandoffAgentConfiguration
|
|
1888
|
+
|
|
1860
1889
|
Headers.key = Shapes::ShapeRef.new(shape: NonEmptyString)
|
|
1861
1890
|
Headers.value = Shapes::ShapeRef.new(shape: NonEmptyString)
|
|
1862
1891
|
|
|
@@ -2156,9 +2185,11 @@ module Aws::QConnect
|
|
|
2156
2185
|
|
|
2157
2186
|
MessageData.add_member(:text, Shapes::ShapeRef.new(shape: TextMessage, location_name: "text"))
|
|
2158
2187
|
MessageData.add_member(:tool_use_result, Shapes::ShapeRef.new(shape: ToolUseResultData, location_name: "toolUseResult"))
|
|
2188
|
+
MessageData.add_member(:data, Shapes::ShapeRef.new(shape: JSONDocument, location_name: "data"))
|
|
2159
2189
|
MessageData.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
2160
2190
|
MessageData.add_member_subclass(:text, Types::MessageData::Text)
|
|
2161
2191
|
MessageData.add_member_subclass(:tool_use_result, Types::MessageData::ToolUseResult)
|
|
2192
|
+
MessageData.add_member_subclass(:data, Types::MessageData::Data)
|
|
2162
2193
|
MessageData.add_member_subclass(:unknown, Types::MessageData::Unknown)
|
|
2163
2194
|
MessageData.struct_class = Types::MessageData
|
|
2164
2195
|
|
|
@@ -2341,6 +2372,22 @@ module Aws::QConnect
|
|
|
2341
2372
|
|
|
2342
2373
|
ModelSummaryList.member = Shapes::ShapeRef.new(shape: ModelSummary)
|
|
2343
2374
|
|
|
2375
|
+
MultiAgentConfiguration.add_member(:delegate_agent_configuration, Shapes::ShapeRef.new(shape: DelegateAgentConfiguration, location_name: "delegateAgentConfiguration"))
|
|
2376
|
+
MultiAgentConfiguration.add_member(:handoff_agent_configuration, Shapes::ShapeRef.new(shape: HandoffAgentConfiguration, location_name: "handoffAgentConfiguration"))
|
|
2377
|
+
MultiAgentConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
2378
|
+
MultiAgentConfiguration.add_member_subclass(:delegate_agent_configuration, Types::MultiAgentConfiguration::DelegateAgentConfiguration)
|
|
2379
|
+
MultiAgentConfiguration.add_member_subclass(:handoff_agent_configuration, Types::MultiAgentConfiguration::HandoffAgentConfiguration)
|
|
2380
|
+
MultiAgentConfiguration.add_member_subclass(:unknown, Types::MultiAgentConfiguration::Unknown)
|
|
2381
|
+
MultiAgentConfiguration.struct_class = Types::MultiAgentConfiguration
|
|
2382
|
+
|
|
2383
|
+
MultiAgentConfigurationList.member = Shapes::ShapeRef.new(shape: MultiAgentConfiguration)
|
|
2384
|
+
|
|
2385
|
+
MultiAgentExampleList.member = Shapes::ShapeRef.new(shape: String)
|
|
2386
|
+
|
|
2387
|
+
MultiAgentInstruction.add_member(:instruction, Shapes::ShapeRef.new(shape: String, location_name: "instruction"))
|
|
2388
|
+
MultiAgentInstruction.add_member(:examples, Shapes::ShapeRef.new(shape: MultiAgentExampleList, location_name: "examples"))
|
|
2389
|
+
MultiAgentInstruction.struct_class = Types::MultiAgentInstruction
|
|
2390
|
+
|
|
2344
2391
|
NoteTakingAIAgentConfiguration.add_member(:note_taking_ai_prompt_id, Shapes::ShapeRef.new(shape: UuidWithQualifier, location_name: "noteTakingAIPromptId"))
|
|
2345
2392
|
NoteTakingAIAgentConfiguration.add_member(:note_taking_ai_guardrail_id, Shapes::ShapeRef.new(shape: UuidWithQualifier, location_name: "noteTakingAIGuardrailId"))
|
|
2346
2393
|
NoteTakingAIAgentConfiguration.add_member(:locale, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "locale"))
|
|
@@ -2380,13 +2427,20 @@ module Aws::QConnect
|
|
|
2380
2427
|
|
|
2381
2428
|
OrConditions.member = Shapes::ShapeRef.new(shape: OrCondition)
|
|
2382
2429
|
|
|
2383
|
-
OrchestrationAIAgentConfiguration.add_member(:orchestration_ai_prompt_id, Shapes::ShapeRef.new(shape: UuidWithQualifier,
|
|
2430
|
+
OrchestrationAIAgentConfiguration.add_member(:orchestration_ai_prompt_id, Shapes::ShapeRef.new(shape: UuidWithQualifier, location_name: "orchestrationAIPromptId"))
|
|
2384
2431
|
OrchestrationAIAgentConfiguration.add_member(:orchestration_ai_guardrail_id, Shapes::ShapeRef.new(shape: UuidWithQualifier, location_name: "orchestrationAIGuardrailId"))
|
|
2385
2432
|
OrchestrationAIAgentConfiguration.add_member(:tool_configurations, Shapes::ShapeRef.new(shape: ToolConfigurationList, location_name: "toolConfigurations"))
|
|
2433
|
+
OrchestrationAIAgentConfiguration.add_member(:multi_agent_configurations, Shapes::ShapeRef.new(shape: MultiAgentConfigurationList, location_name: "multiAgentConfigurations"))
|
|
2386
2434
|
OrchestrationAIAgentConfiguration.add_member(:connect_instance_arn, Shapes::ShapeRef.new(shape: GenericArn, location_name: "connectInstanceArn"))
|
|
2387
2435
|
OrchestrationAIAgentConfiguration.add_member(:locale, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "locale"))
|
|
2436
|
+
OrchestrationAIAgentConfiguration.add_member(:input_schemas, Shapes::ShapeRef.new(shape: OrchestrationAIAgentConfigurationInputSchemasList, location_name: "inputSchemas"))
|
|
2437
|
+
OrchestrationAIAgentConfiguration.add_member(:output_schemas, Shapes::ShapeRef.new(shape: OrchestrationAIAgentConfigurationOutputSchemasList, location_name: "outputSchemas"))
|
|
2388
2438
|
OrchestrationAIAgentConfiguration.struct_class = Types::OrchestrationAIAgentConfiguration
|
|
2389
2439
|
|
|
2440
|
+
OrchestrationAIAgentConfigurationInputSchemasList.member = Shapes::ShapeRef.new(shape: JSONDocument)
|
|
2441
|
+
|
|
2442
|
+
OrchestrationAIAgentConfigurationOutputSchemasList.member = Shapes::ShapeRef.new(shape: JSONDocument)
|
|
2443
|
+
|
|
2390
2444
|
OrchestratorConfigurationEntry.add_member(:ai_agent_id, Shapes::ShapeRef.new(shape: UuidOrArnOrEitherWithQualifier, location_name: "aiAgentId"))
|
|
2391
2445
|
OrchestratorConfigurationEntry.add_member(:orchestrator_use_case, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "orchestratorUseCase"))
|
|
2392
2446
|
OrchestratorConfigurationEntry.struct_class = Types::OrchestratorConfigurationEntry
|
|
@@ -2920,6 +2974,9 @@ module Aws::QConnect
|
|
|
2920
2974
|
SpanAttributes.add_member(:ai_agent_version, Shapes::ShapeRef.new(shape: Integer, location_name: "aiAgentVersion"))
|
|
2921
2975
|
SpanAttributes.add_member(:ai_agent_invoker, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "aiAgentInvoker"))
|
|
2922
2976
|
SpanAttributes.add_member(:ai_agent_orchestrator_use_case, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "aiAgentOrchestratorUseCase"))
|
|
2977
|
+
SpanAttributes.add_member(:interaction_mode, Shapes::ShapeRef.new(shape: InteractionMode, location_name: "interactionMode"))
|
|
2978
|
+
SpanAttributes.add_member(:target_agent_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "targetAgentId"))
|
|
2979
|
+
SpanAttributes.add_member(:return_reason, Shapes::ShapeRef.new(shape: ReturnReason, location_name: "returnReason"))
|
|
2923
2980
|
SpanAttributes.add_member(:request_model, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestModel"))
|
|
2924
2981
|
SpanAttributes.add_member(:request_max_tokens, Shapes::ShapeRef.new(shape: Integer, location_name: "requestMaxTokens"))
|
|
2925
2982
|
SpanAttributes.add_member(:temperature, Shapes::ShapeRef.new(shape: SpanAttributesTemperatureFloat, location_name: "temperature"))
|
|
@@ -934,6 +934,38 @@ module Aws::QConnect
|
|
|
934
934
|
include Aws::Structure
|
|
935
935
|
end
|
|
936
936
|
|
|
937
|
+
# A union that identifies a collaborator agent to engage. Specify either
|
|
938
|
+
# an Amazon Connect AI Agent or a third-party agent.
|
|
939
|
+
#
|
|
940
|
+
# @note AgentTarget is a union - when making an API calls you must set exactly one of the members.
|
|
941
|
+
#
|
|
942
|
+
# @note AgentTarget is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AgentTarget corresponding to the set member.
|
|
943
|
+
#
|
|
944
|
+
# @!attribute [rw] ai_agent_id
|
|
945
|
+
# The identifier of an Amazon Connect AI Agent to use as the
|
|
946
|
+
# collaborator agent.
|
|
947
|
+
# @return [String]
|
|
948
|
+
#
|
|
949
|
+
# @!attribute [rw] application_id
|
|
950
|
+
# The identifier of a third-party agent to use as the collaborator
|
|
951
|
+
# agent.
|
|
952
|
+
# @return [String]
|
|
953
|
+
#
|
|
954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/AgentTarget AWS API Documentation
|
|
955
|
+
#
|
|
956
|
+
class AgentTarget < Struct.new(
|
|
957
|
+
:ai_agent_id,
|
|
958
|
+
:application_id,
|
|
959
|
+
:unknown)
|
|
960
|
+
SENSITIVE = []
|
|
961
|
+
include Aws::Structure
|
|
962
|
+
include Aws::Structure::Union
|
|
963
|
+
|
|
964
|
+
class AiAgentId < AgentTarget; end
|
|
965
|
+
class ApplicationId < AgentTarget; end
|
|
966
|
+
class Unknown < AgentTarget; end
|
|
967
|
+
end
|
|
968
|
+
|
|
937
969
|
# Content association data for a [step-by-step guide][1].
|
|
938
970
|
#
|
|
939
971
|
#
|
|
@@ -941,7 +973,7 @@ module Aws::QConnect
|
|
|
941
973
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/step-by-step-guided-experiences.html
|
|
942
974
|
#
|
|
943
975
|
# @!attribute [rw] flow_id
|
|
944
|
-
# The Amazon Resource Name (ARN) of an
|
|
976
|
+
# The Amazon Resource Name (ARN) of an Connect Customer flow.
|
|
945
977
|
# Step-by-step guides are a type of flow.
|
|
946
978
|
# @return [String]
|
|
947
979
|
#
|
|
@@ -1712,7 +1744,7 @@ module Aws::QConnect
|
|
|
1712
1744
|
# @note Configuration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Configuration corresponding to the set member.
|
|
1713
1745
|
#
|
|
1714
1746
|
# @!attribute [rw] connect_configuration
|
|
1715
|
-
# The configuration information of the
|
|
1747
|
+
# The configuration information of the Connect Customer data source.
|
|
1716
1748
|
# @return [Types::ConnectConfiguration]
|
|
1717
1749
|
#
|
|
1718
1750
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/Configuration AWS API Documentation
|
|
@@ -1744,10 +1776,10 @@ module Aws::QConnect
|
|
|
1744
1776
|
include Aws::Structure
|
|
1745
1777
|
end
|
|
1746
1778
|
|
|
1747
|
-
# The configuration information of the
|
|
1779
|
+
# The configuration information of the Connect Customer data source.
|
|
1748
1780
|
#
|
|
1749
1781
|
# @!attribute [rw] instance_id
|
|
1750
|
-
# The identifier of the
|
|
1782
|
+
# The identifier of the Connect Customer instance. You can find the
|
|
1751
1783
|
# instanceId in the ARN of the instance.
|
|
1752
1784
|
# @return [String]
|
|
1753
1785
|
#
|
|
@@ -3225,7 +3257,7 @@ module Aws::QConnect
|
|
|
3225
3257
|
# @return [Boolean]
|
|
3226
3258
|
#
|
|
3227
3259
|
# @!attribute [rw] channels
|
|
3228
|
-
# The
|
|
3260
|
+
# The Connect Customer channels this quick response applies to.
|
|
3229
3261
|
# @return [Array<String>]
|
|
3230
3262
|
#
|
|
3231
3263
|
# @!attribute [rw] language
|
|
@@ -3328,8 +3360,8 @@ module Aws::QConnect
|
|
|
3328
3360
|
# @return [Hash<String,Types::AIAgentConfigurationData>]
|
|
3329
3361
|
#
|
|
3330
3362
|
# @!attribute [rw] contact_arn
|
|
3331
|
-
# The Amazon Resource Name (ARN) of the email contact in
|
|
3332
|
-
#
|
|
3363
|
+
# The Amazon Resource Name (ARN) of the email contact in Connect
|
|
3364
|
+
# Customer. Used to retrieve email content and establish session
|
|
3333
3365
|
# context for AI-powered email assistance.
|
|
3334
3366
|
# @return [String]
|
|
3335
3367
|
#
|
|
@@ -3862,6 +3894,27 @@ module Aws::QConnect
|
|
|
3862
3894
|
include Aws::Structure
|
|
3863
3895
|
end
|
|
3864
3896
|
|
|
3897
|
+
# A collaborator agent configuration in which the Orchestration AI Agent
|
|
3898
|
+
# invokes the collaborator, resuming when the collaborator returns.
|
|
3899
|
+
#
|
|
3900
|
+
# @!attribute [rw] agent_target
|
|
3901
|
+
# The collaborator agent to delegate to.
|
|
3902
|
+
# @return [Types::AgentTarget]
|
|
3903
|
+
#
|
|
3904
|
+
# @!attribute [rw] instruction
|
|
3905
|
+
# The instruction that tells the Orchestration AI Agent when and how
|
|
3906
|
+
# to delegate to this collaborator agent.
|
|
3907
|
+
# @return [Types::MultiAgentInstruction]
|
|
3908
|
+
#
|
|
3909
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/DelegateAgentConfiguration AWS API Documentation
|
|
3910
|
+
#
|
|
3911
|
+
class DelegateAgentConfiguration < Struct.new(
|
|
3912
|
+
:agent_target,
|
|
3913
|
+
:instruction)
|
|
3914
|
+
SENSITIVE = [:instruction]
|
|
3915
|
+
include Aws::Structure
|
|
3916
|
+
end
|
|
3917
|
+
|
|
3865
3918
|
# @!attribute [rw] assistant_id
|
|
3866
3919
|
# The identifier of the Amazon Q in Connect assistant. Can be either
|
|
3867
3920
|
# the ID or the ARN. URLs cannot contain the ARN.
|
|
@@ -5391,8 +5444,8 @@ module Aws::QConnect
|
|
|
5391
5444
|
# Connect users.
|
|
5392
5445
|
#
|
|
5393
5446
|
# * When setting `criteria` to `RoutingProfileArn`, you need to
|
|
5394
|
-
# provide a list of ARNs of [
|
|
5395
|
-
# values of this parameter.
|
|
5447
|
+
# provide a list of ARNs of [Connect Customer routing profiles][1]
|
|
5448
|
+
# as values of this parameter.
|
|
5396
5449
|
#
|
|
5397
5450
|
# ^
|
|
5398
5451
|
#
|
|
@@ -5692,7 +5745,8 @@ module Aws::QConnect
|
|
|
5692
5745
|
#
|
|
5693
5746
|
# The SIN is formatted as three groups of three digits, such as
|
|
5694
5747
|
# <i> 123-456-789</i>. A SIN can be validated through a simple
|
|
5695
|
-
# check-digit process called the
|
|
5748
|
+
# check-digit process called the Luhn algorithm. For more
|
|
5749
|
+
# information, see [Luhn algorithm][2] on the Wikipedia website.
|
|
5696
5750
|
# * **UK Specific**
|
|
5697
5751
|
#
|
|
5698
5752
|
# * **UK\_NATIONAL\_HEALTH\_SERVICE\_NUMBER**
|
|
@@ -5845,6 +5899,42 @@ module Aws::QConnect
|
|
|
5845
5899
|
include Aws::Structure
|
|
5846
5900
|
end
|
|
5847
5901
|
|
|
5902
|
+
# A collaborator agent configuration in which the Orchestration AI Agent
|
|
5903
|
+
# transfers control of the conversation to the collaborator agent.
|
|
5904
|
+
#
|
|
5905
|
+
# @!attribute [rw] agent_target
|
|
5906
|
+
# The collaborator agent to hand off to.
|
|
5907
|
+
# @return [Types::AgentTarget]
|
|
5908
|
+
#
|
|
5909
|
+
# @!attribute [rw] instruction
|
|
5910
|
+
# The instruction that tells the Orchestration AI Agent when and how
|
|
5911
|
+
# to hand off to this collaborator agent.
|
|
5912
|
+
# @return [Types::MultiAgentInstruction]
|
|
5913
|
+
#
|
|
5914
|
+
# @!attribute [rw] audio_streaming_enabled
|
|
5915
|
+
# Specifies whether the caller's audio is streamed directly to the
|
|
5916
|
+
# collaborator agent and the collaborator's audio response is played
|
|
5917
|
+
# back during the handoff. This applies only to voice handoffs.
|
|
5918
|
+
# @return [Boolean]
|
|
5919
|
+
#
|
|
5920
|
+
# @!attribute [rw] immediate_handoff
|
|
5921
|
+
# Specifies whether the conversation is handed off to this
|
|
5922
|
+
# collaborator agent immediately on the first turn, without any
|
|
5923
|
+
# orchestration reasoning. At most one handoff in an AI Agent's
|
|
5924
|
+
# configuration can set this to `true`.
|
|
5925
|
+
# @return [Boolean]
|
|
5926
|
+
#
|
|
5927
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/HandoffAgentConfiguration AWS API Documentation
|
|
5928
|
+
#
|
|
5929
|
+
class HandoffAgentConfiguration < Struct.new(
|
|
5930
|
+
:agent_target,
|
|
5931
|
+
:instruction,
|
|
5932
|
+
:audio_streaming_enabled,
|
|
5933
|
+
:immediate_handoff)
|
|
5934
|
+
SENSITIVE = [:instruction]
|
|
5935
|
+
include Aws::Structure
|
|
5936
|
+
end
|
|
5937
|
+
|
|
5848
5938
|
# Settings for hierarchical document chunking for a data source.
|
|
5849
5939
|
# Hierarchical chunking splits documents into layers of chunks where the
|
|
5850
5940
|
# first layer contains large chunks, and the second layer contains
|
|
@@ -7307,18 +7397,26 @@ module Aws::QConnect
|
|
|
7307
7397
|
# The result of tool usage in the message.
|
|
7308
7398
|
# @return [Types::ToolUseResultData]
|
|
7309
7399
|
#
|
|
7400
|
+
# @!attribute [rw] data
|
|
7401
|
+
# The message data as a structured JSON document. This is the payload
|
|
7402
|
+
# for a message of type `DATA`, and must be a JSON object at the root
|
|
7403
|
+
# level.
|
|
7404
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
7405
|
+
#
|
|
7310
7406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/MessageData AWS API Documentation
|
|
7311
7407
|
#
|
|
7312
7408
|
class MessageData < Struct.new(
|
|
7313
7409
|
:text,
|
|
7314
7410
|
:tool_use_result,
|
|
7411
|
+
:data,
|
|
7315
7412
|
:unknown)
|
|
7316
|
-
SENSITIVE = []
|
|
7413
|
+
SENSITIVE = [:data]
|
|
7317
7414
|
include Aws::Structure
|
|
7318
7415
|
include Aws::Structure::Union
|
|
7319
7416
|
|
|
7320
7417
|
class Text < MessageData; end
|
|
7321
7418
|
class ToolUseResult < MessageData; end
|
|
7419
|
+
class Data < MessageData; end
|
|
7322
7420
|
class Unknown < MessageData; end
|
|
7323
7421
|
end
|
|
7324
7422
|
|
|
@@ -8125,6 +8223,61 @@ module Aws::QConnect
|
|
|
8125
8223
|
include Aws::Structure
|
|
8126
8224
|
end
|
|
8127
8225
|
|
|
8226
|
+
# A union that configures a single collaborator agent for an
|
|
8227
|
+
# Orchestration AI Agent, as either a delegate or a handoff.
|
|
8228
|
+
#
|
|
8229
|
+
# @note MultiAgentConfiguration is a union - when making an API calls you must set exactly one of the members.
|
|
8230
|
+
#
|
|
8231
|
+
# @note MultiAgentConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MultiAgentConfiguration corresponding to the set member.
|
|
8232
|
+
#
|
|
8233
|
+
# @!attribute [rw] delegate_agent_configuration
|
|
8234
|
+
# Configures the collaborator agent as a delegate that the
|
|
8235
|
+
# Orchestration AI Agent invokes while retaining control of the
|
|
8236
|
+
# conversation.
|
|
8237
|
+
# @return [Types::DelegateAgentConfiguration]
|
|
8238
|
+
#
|
|
8239
|
+
# @!attribute [rw] handoff_agent_configuration
|
|
8240
|
+
# Configures the collaborator agent as a handoff target that the
|
|
8241
|
+
# Orchestration AI Agent transfers control of the conversation to.
|
|
8242
|
+
# @return [Types::HandoffAgentConfiguration]
|
|
8243
|
+
#
|
|
8244
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/MultiAgentConfiguration AWS API Documentation
|
|
8245
|
+
#
|
|
8246
|
+
class MultiAgentConfiguration < Struct.new(
|
|
8247
|
+
:delegate_agent_configuration,
|
|
8248
|
+
:handoff_agent_configuration,
|
|
8249
|
+
:unknown)
|
|
8250
|
+
SENSITIVE = []
|
|
8251
|
+
include Aws::Structure
|
|
8252
|
+
include Aws::Structure::Union
|
|
8253
|
+
|
|
8254
|
+
class DelegateAgentConfiguration < MultiAgentConfiguration; end
|
|
8255
|
+
class HandoffAgentConfiguration < MultiAgentConfiguration; end
|
|
8256
|
+
class Unknown < MultiAgentConfiguration; end
|
|
8257
|
+
end
|
|
8258
|
+
|
|
8259
|
+
# The instruction that guides how the Orchestration AI Agent works with
|
|
8260
|
+
# a collaborator agent.
|
|
8261
|
+
#
|
|
8262
|
+
# @!attribute [rw] instruction
|
|
8263
|
+
# The natural-language instruction that tells the Orchestration AI
|
|
8264
|
+
# Agent when and how to engage the collaborator agent.
|
|
8265
|
+
# @return [String]
|
|
8266
|
+
#
|
|
8267
|
+
# @!attribute [rw] examples
|
|
8268
|
+
# Example interactions that illustrate when the Orchestration AI Agent
|
|
8269
|
+
# should engage the collaborator agent.
|
|
8270
|
+
# @return [Array<String>]
|
|
8271
|
+
#
|
|
8272
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/MultiAgentInstruction AWS API Documentation
|
|
8273
|
+
#
|
|
8274
|
+
class MultiAgentInstruction < Struct.new(
|
|
8275
|
+
:instruction,
|
|
8276
|
+
:examples)
|
|
8277
|
+
SENSITIVE = []
|
|
8278
|
+
include Aws::Structure
|
|
8279
|
+
end
|
|
8280
|
+
|
|
8128
8281
|
# The configuration for AI Agents of type `NOTE_TAKING`.
|
|
8129
8282
|
#
|
|
8130
8283
|
# @!attribute [rw] note_taking_ai_prompt_id
|
|
@@ -8288,6 +8441,12 @@ module Aws::QConnect
|
|
|
8288
8441
|
# The tool configurations used by the Orchestration AI Agent.
|
|
8289
8442
|
# @return [Array<Types::ToolConfiguration>]
|
|
8290
8443
|
#
|
|
8444
|
+
# @!attribute [rw] multi_agent_configurations
|
|
8445
|
+
# The collaborator agents that the Orchestration AI Agent can work
|
|
8446
|
+
# with. Each entry defines another agent that the orchestrator either
|
|
8447
|
+
# delegates to or hands the conversation off to.
|
|
8448
|
+
# @return [Array<Types::MultiAgentConfiguration>]
|
|
8449
|
+
#
|
|
8291
8450
|
# @!attribute [rw] connect_instance_arn
|
|
8292
8451
|
# The Amazon Resource Name (ARN) of the Amazon Connect instance used
|
|
8293
8452
|
# by the Orchestration AI Agent.
|
|
@@ -8297,15 +8456,31 @@ module Aws::QConnect
|
|
|
8297
8456
|
# The locale setting for the Orchestration AI Agent.
|
|
8298
8457
|
# @return [String]
|
|
8299
8458
|
#
|
|
8459
|
+
# @!attribute [rw] input_schemas
|
|
8460
|
+
# The JSON schemas that define the structure of the structured data
|
|
8461
|
+
# input accepted by the Orchestration AI Agent. The data in a `DATA`
|
|
8462
|
+
# message sent to the agent is validated against these schemas. You
|
|
8463
|
+
# can specify at most one schema.
|
|
8464
|
+
# @return [Array<Hash,Array,String,Numeric,Boolean>]
|
|
8465
|
+
#
|
|
8466
|
+
# @!attribute [rw] output_schemas
|
|
8467
|
+
# The JSON schemas that define the structure of the structured output
|
|
8468
|
+
# generated by the Orchestration AI Agent. You can specify at most one
|
|
8469
|
+
# schema.
|
|
8470
|
+
# @return [Array<Hash,Array,String,Numeric,Boolean>]
|
|
8471
|
+
#
|
|
8300
8472
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/OrchestrationAIAgentConfiguration AWS API Documentation
|
|
8301
8473
|
#
|
|
8302
8474
|
class OrchestrationAIAgentConfiguration < Struct.new(
|
|
8303
8475
|
:orchestration_ai_prompt_id,
|
|
8304
8476
|
:orchestration_ai_guardrail_id,
|
|
8305
8477
|
:tool_configurations,
|
|
8478
|
+
:multi_agent_configurations,
|
|
8306
8479
|
:connect_instance_arn,
|
|
8307
|
-
:locale
|
|
8308
|
-
|
|
8480
|
+
:locale,
|
|
8481
|
+
:input_schemas,
|
|
8482
|
+
:output_schemas)
|
|
8483
|
+
SENSITIVE = [:input_schemas, :output_schemas]
|
|
8309
8484
|
include Aws::Structure
|
|
8310
8485
|
end
|
|
8311
8486
|
|
|
@@ -9076,8 +9251,8 @@ module Aws::QConnect
|
|
|
9076
9251
|
# @return [Boolean]
|
|
9077
9252
|
#
|
|
9078
9253
|
# @!attribute [rw] channels
|
|
9079
|
-
# The
|
|
9080
|
-
# The supported contact channel types include `Chat`.
|
|
9254
|
+
# The Connect Customer contact channels this quick response applies
|
|
9255
|
+
# to. The supported contact channel types include `Chat`.
|
|
9081
9256
|
# @return [Array<String>]
|
|
9082
9257
|
#
|
|
9083
9258
|
# @!attribute [rw] language
|
|
@@ -9390,8 +9565,8 @@ module Aws::QConnect
|
|
|
9390
9565
|
# @return [String]
|
|
9391
9566
|
#
|
|
9392
9567
|
# @!attribute [rw] channels
|
|
9393
|
-
# The
|
|
9394
|
-
# The supported contact channel types include `Chat`.
|
|
9568
|
+
# The Connect Customer contact channels this quick response applies
|
|
9569
|
+
# to. The supported contact channel types include `Chat`.
|
|
9395
9570
|
# @return [Array<String>]
|
|
9396
9571
|
#
|
|
9397
9572
|
# @!attribute [rw] language
|
|
@@ -9499,8 +9674,8 @@ module Aws::QConnect
|
|
|
9499
9674
|
# @return [Boolean]
|
|
9500
9675
|
#
|
|
9501
9676
|
# @!attribute [rw] channels
|
|
9502
|
-
# The
|
|
9503
|
-
# The supported contact channel types include `Chat`.
|
|
9677
|
+
# The Connect Customer contact channels this quick response applies
|
|
9678
|
+
# to. The supported contact channel types include `Chat`.
|
|
9504
9679
|
# @return [Array<String>]
|
|
9505
9680
|
#
|
|
9506
9681
|
# @!attribute [rw] tags
|
|
@@ -10242,7 +10417,7 @@ module Aws::QConnect
|
|
|
10242
10417
|
# @return [Integer]
|
|
10243
10418
|
#
|
|
10244
10419
|
# @!attribute [rw] attributes
|
|
10245
|
-
# The [user-defined
|
|
10420
|
+
# The [user-defined Connect Customer contact attributes][1] to be
|
|
10246
10421
|
# resolved when search results are returned.
|
|
10247
10422
|
#
|
|
10248
10423
|
#
|
|
@@ -10884,6 +11059,22 @@ module Aws::QConnect
|
|
|
10884
11059
|
# AI agent orchestrator use case
|
|
10885
11060
|
# @return [String]
|
|
10886
11061
|
#
|
|
11062
|
+
# @!attribute [rw] interaction_mode
|
|
11063
|
+
# How the orchestrator engaged the collaborator agent. Present on
|
|
11064
|
+
# spans that invoke a collaborator agent.
|
|
11065
|
+
# @return [String]
|
|
11066
|
+
#
|
|
11067
|
+
# @!attribute [rw] target_agent_id
|
|
11068
|
+
# Identifier of the collaborator agent being invoked. For first-party
|
|
11069
|
+
# collaborators this is the Amazon Connect AI agent ID; for
|
|
11070
|
+
# third-party collaborators this is the external application ID.
|
|
11071
|
+
# @return [String]
|
|
11072
|
+
#
|
|
11073
|
+
# @!attribute [rw] return_reason
|
|
11074
|
+
# Reason a sub-agent returned control to the calling agent. Present on
|
|
11075
|
+
# return\_to\_agent spans.
|
|
11076
|
+
# @return [String]
|
|
11077
|
+
#
|
|
10887
11078
|
# @!attribute [rw] request_model
|
|
10888
11079
|
# LLM model ID for request (e.g., anthropic.claude-3-sonnet)
|
|
10889
11080
|
# @return [String]
|
|
@@ -10988,6 +11179,9 @@ module Aws::QConnect
|
|
|
10988
11179
|
:ai_agent_version,
|
|
10989
11180
|
:ai_agent_invoker,
|
|
10990
11181
|
:ai_agent_orchestrator_use_case,
|
|
11182
|
+
:interaction_mode,
|
|
11183
|
+
:target_agent_id,
|
|
11184
|
+
:return_reason,
|
|
10991
11185
|
:request_model,
|
|
10992
11186
|
:request_max_tokens,
|
|
10993
11187
|
:temperature,
|
|
@@ -12408,8 +12602,8 @@ module Aws::QConnect
|
|
|
12408
12602
|
# @return [Boolean]
|
|
12409
12603
|
#
|
|
12410
12604
|
# @!attribute [rw] channels
|
|
12411
|
-
# The
|
|
12412
|
-
# The supported contact channel types include `Chat`.
|
|
12605
|
+
# The Connect Customer contact channels this quick response applies
|
|
12606
|
+
# to. The supported contact channel types include `Chat`.
|
|
12413
12607
|
# @return [Array<String>]
|
|
12414
12608
|
#
|
|
12415
12609
|
# @!attribute [rw] language
|
data/lib/aws-sdk-qconnect.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -765,7 +765,7 @@ module Aws
|
|
|
765
765
|
|
|
766
766
|
interface _GetNextMessageResponseSuccess
|
|
767
767
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetNextMessageResponse]
|
|
768
|
-
def type: () -> ("TEXT" | "TOOL_USE_RESULT")
|
|
768
|
+
def type: () -> ("TEXT" | "TOOL_USE_RESULT" | "DATA")
|
|
769
769
|
def response: () -> Types::MessageOutput
|
|
770
770
|
def request_message_id: () -> ::String
|
|
771
771
|
def conversation_state: () -> Types::ConversationState
|
|
@@ -1326,7 +1326,7 @@ module Aws
|
|
|
1326
1326
|
def send_message: (
|
|
1327
1327
|
assistant_id: ::String,
|
|
1328
1328
|
session_id: ::String,
|
|
1329
|
-
type: ("TEXT" | "TOOL_USE_RESULT"),
|
|
1329
|
+
type: ("TEXT" | "TOOL_USE_RESULT" | "DATA"),
|
|
1330
1330
|
message: {
|
|
1331
1331
|
value: {
|
|
1332
1332
|
text: {
|
|
@@ -1355,6 +1355,8 @@ module Aws
|
|
|
1355
1355
|
},
|
|
1356
1356
|
input_schema: {
|
|
1357
1357
|
}?
|
|
1358
|
+
}?,
|
|
1359
|
+
data: {
|
|
1358
1360
|
}?
|
|
1359
1361
|
}
|
|
1360
1362
|
},
|
data/sig/params.rbs
CHANGED
|
@@ -57,13 +57,24 @@ module Aws
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
type orchestration_ai_agent_configuration = {
|
|
60
|
-
orchestration_ai_prompt_id: ::String
|
|
60
|
+
orchestration_ai_prompt_id: ::String?,
|
|
61
61
|
orchestration_ai_guardrail_id: ::String?,
|
|
62
62
|
tool_configurations: Array[
|
|
63
63
|
Params::tool_configuration
|
|
64
64
|
]?,
|
|
65
|
+
multi_agent_configurations: Array[
|
|
66
|
+
Params::multi_agent_configuration
|
|
67
|
+
]?,
|
|
65
68
|
connect_instance_arn: ::String?,
|
|
66
|
-
locale: ::String
|
|
69
|
+
locale: ::String?,
|
|
70
|
+
input_schemas: Array[
|
|
71
|
+
{
|
|
72
|
+
}
|
|
73
|
+
]?,
|
|
74
|
+
output_schemas: Array[
|
|
75
|
+
{
|
|
76
|
+
}
|
|
77
|
+
]?
|
|
67
78
|
}
|
|
68
79
|
|
|
69
80
|
type ai_agent_configuration = {
|
|
@@ -179,6 +190,35 @@ module Aws
|
|
|
179
190
|
}
|
|
180
191
|
}
|
|
181
192
|
|
|
193
|
+
type delegate_agent_configuration = {
|
|
194
|
+
agent_target: {
|
|
195
|
+
ai_agent_id: ::String?,
|
|
196
|
+
application_id: ::String?
|
|
197
|
+
},
|
|
198
|
+
instruction: {
|
|
199
|
+
instruction: ::String?,
|
|
200
|
+
examples: Array[::String]?
|
|
201
|
+
}?
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
type handoff_agent_configuration = {
|
|
205
|
+
agent_target: {
|
|
206
|
+
ai_agent_id: ::String?,
|
|
207
|
+
application_id: ::String?
|
|
208
|
+
},
|
|
209
|
+
instruction: {
|
|
210
|
+
instruction: ::String?,
|
|
211
|
+
examples: Array[::String]?
|
|
212
|
+
}?,
|
|
213
|
+
audio_streaming_enabled: bool?,
|
|
214
|
+
immediate_handoff: bool?
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
type multi_agent_configuration = {
|
|
218
|
+
delegate_agent_configuration: Params::delegate_agent_configuration?,
|
|
219
|
+
handoff_agent_configuration: Params::handoff_agent_configuration?
|
|
220
|
+
}
|
|
221
|
+
|
|
182
222
|
type ai_guardrail_topic_policy_config = {
|
|
183
223
|
topics_config: Array[
|
|
184
224
|
{
|
data/sig/types.rbs
CHANGED
|
@@ -251,6 +251,20 @@ module Aws::QConnect
|
|
|
251
251
|
SENSITIVE: [:first_name, :last_name]
|
|
252
252
|
end
|
|
253
253
|
|
|
254
|
+
class AgentTarget
|
|
255
|
+
attr_accessor ai_agent_id: ::String
|
|
256
|
+
attr_accessor application_id: ::String
|
|
257
|
+
attr_accessor unknown: untyped
|
|
258
|
+
SENSITIVE: []
|
|
259
|
+
|
|
260
|
+
class AiAgentId < AgentTarget
|
|
261
|
+
end
|
|
262
|
+
class ApplicationId < AgentTarget
|
|
263
|
+
end
|
|
264
|
+
class Unknown < AgentTarget
|
|
265
|
+
end
|
|
266
|
+
end
|
|
267
|
+
|
|
254
268
|
class AmazonConnectGuideAssociationData
|
|
255
269
|
attr_accessor flow_id: ::String
|
|
256
270
|
SENSITIVE: []
|
|
@@ -977,6 +991,12 @@ module Aws::QConnect
|
|
|
977
991
|
SENSITIVE: []
|
|
978
992
|
end
|
|
979
993
|
|
|
994
|
+
class DelegateAgentConfiguration
|
|
995
|
+
attr_accessor agent_target: Types::AgentTarget
|
|
996
|
+
attr_accessor instruction: Types::MultiAgentInstruction
|
|
997
|
+
SENSITIVE: [:instruction]
|
|
998
|
+
end
|
|
999
|
+
|
|
980
1000
|
class DeleteAIAgentRequest
|
|
981
1001
|
attr_accessor assistant_id: ::String
|
|
982
1002
|
attr_accessor ai_agent_id: ::String
|
|
@@ -1406,7 +1426,7 @@ module Aws::QConnect
|
|
|
1406
1426
|
end
|
|
1407
1427
|
|
|
1408
1428
|
class GetNextMessageResponse
|
|
1409
|
-
attr_accessor type: ("TEXT" | "TOOL_USE_RESULT")
|
|
1429
|
+
attr_accessor type: ("TEXT" | "TOOL_USE_RESULT" | "DATA")
|
|
1410
1430
|
attr_accessor response: Types::MessageOutput
|
|
1411
1431
|
attr_accessor request_message_id: ::String
|
|
1412
1432
|
attr_accessor conversation_state: Types::ConversationState
|
|
@@ -1512,6 +1532,14 @@ module Aws::QConnect
|
|
|
1512
1532
|
SENSITIVE: [:text]
|
|
1513
1533
|
end
|
|
1514
1534
|
|
|
1535
|
+
class HandoffAgentConfiguration
|
|
1536
|
+
attr_accessor agent_target: Types::AgentTarget
|
|
1537
|
+
attr_accessor instruction: Types::MultiAgentInstruction
|
|
1538
|
+
attr_accessor audio_streaming_enabled: bool
|
|
1539
|
+
attr_accessor immediate_handoff: bool
|
|
1540
|
+
SENSITIVE: [:instruction]
|
|
1541
|
+
end
|
|
1542
|
+
|
|
1515
1543
|
class HierarchicalChunkingConfiguration
|
|
1516
1544
|
attr_accessor level_configurations: ::Array[Types::HierarchicalChunkingLevelConfiguration]
|
|
1517
1545
|
attr_accessor overlap_tokens: ::Integer
|
|
@@ -1913,13 +1941,16 @@ module Aws::QConnect
|
|
|
1913
1941
|
class MessageData
|
|
1914
1942
|
attr_accessor text: Types::TextMessage
|
|
1915
1943
|
attr_accessor tool_use_result: Types::ToolUseResultData
|
|
1944
|
+
attr_accessor data: untyped
|
|
1916
1945
|
attr_accessor unknown: untyped
|
|
1917
|
-
SENSITIVE: []
|
|
1946
|
+
SENSITIVE: [:data]
|
|
1918
1947
|
|
|
1919
1948
|
class Text < MessageData
|
|
1920
1949
|
end
|
|
1921
1950
|
class ToolUseResult < MessageData
|
|
1922
1951
|
end
|
|
1952
|
+
class Data < MessageData
|
|
1953
|
+
end
|
|
1923
1954
|
class Unknown < MessageData
|
|
1924
1955
|
end
|
|
1925
1956
|
end
|
|
@@ -2125,6 +2156,26 @@ module Aws::QConnect
|
|
|
2125
2156
|
SENSITIVE: []
|
|
2126
2157
|
end
|
|
2127
2158
|
|
|
2159
|
+
class MultiAgentConfiguration
|
|
2160
|
+
attr_accessor delegate_agent_configuration: Types::DelegateAgentConfiguration
|
|
2161
|
+
attr_accessor handoff_agent_configuration: Types::HandoffAgentConfiguration
|
|
2162
|
+
attr_accessor unknown: untyped
|
|
2163
|
+
SENSITIVE: []
|
|
2164
|
+
|
|
2165
|
+
class DelegateAgentConfiguration < MultiAgentConfiguration
|
|
2166
|
+
end
|
|
2167
|
+
class HandoffAgentConfiguration < MultiAgentConfiguration
|
|
2168
|
+
end
|
|
2169
|
+
class Unknown < MultiAgentConfiguration
|
|
2170
|
+
end
|
|
2171
|
+
end
|
|
2172
|
+
|
|
2173
|
+
class MultiAgentInstruction
|
|
2174
|
+
attr_accessor instruction: ::String
|
|
2175
|
+
attr_accessor examples: ::Array[::String]
|
|
2176
|
+
SENSITIVE: []
|
|
2177
|
+
end
|
|
2178
|
+
|
|
2128
2179
|
class NoteTakingAIAgentConfiguration
|
|
2129
2180
|
attr_accessor note_taking_ai_prompt_id: ::String
|
|
2130
2181
|
attr_accessor note_taking_ai_guardrail_id: ::String
|
|
@@ -2180,8 +2231,11 @@ module Aws::QConnect
|
|
|
2180
2231
|
attr_accessor orchestration_ai_prompt_id: ::String
|
|
2181
2232
|
attr_accessor orchestration_ai_guardrail_id: ::String
|
|
2182
2233
|
attr_accessor tool_configurations: ::Array[Types::ToolConfiguration]
|
|
2234
|
+
attr_accessor multi_agent_configurations: ::Array[Types::MultiAgentConfiguration]
|
|
2183
2235
|
attr_accessor connect_instance_arn: ::String
|
|
2184
2236
|
attr_accessor locale: ::String
|
|
2237
|
+
attr_accessor input_schemas: ::Array[untyped]
|
|
2238
|
+
attr_accessor output_schemas: ::Array[untyped]
|
|
2185
2239
|
SENSITIVE: []
|
|
2186
2240
|
end
|
|
2187
2241
|
|
|
@@ -2756,7 +2810,7 @@ module Aws::QConnect
|
|
|
2756
2810
|
class SendMessageRequest
|
|
2757
2811
|
attr_accessor assistant_id: ::String
|
|
2758
2812
|
attr_accessor session_id: ::String
|
|
2759
|
-
attr_accessor type: ("TEXT" | "TOOL_USE_RESULT")
|
|
2813
|
+
attr_accessor type: ("TEXT" | "TOOL_USE_RESULT" | "DATA")
|
|
2760
2814
|
attr_accessor message: Types::MessageInput
|
|
2761
2815
|
attr_accessor ai_agent_id: ::String
|
|
2762
2816
|
attr_accessor conversation_context: Types::ConversationContext
|
|
@@ -2868,6 +2922,9 @@ module Aws::QConnect
|
|
|
2868
2922
|
attr_accessor ai_agent_version: ::Integer
|
|
2869
2923
|
attr_accessor ai_agent_invoker: ::String
|
|
2870
2924
|
attr_accessor ai_agent_orchestrator_use_case: ::String
|
|
2925
|
+
attr_accessor interaction_mode: ("DELEGATE" | "HANDOFF")
|
|
2926
|
+
attr_accessor target_agent_id: ::String
|
|
2927
|
+
attr_accessor return_reason: ("COMPLETE" | "COMPLETE_WITH_ERROR" | "ESCALATE" | "OUT_OF_DOMAIN")
|
|
2871
2928
|
attr_accessor request_model: ::String
|
|
2872
2929
|
attr_accessor request_max_tokens: ::Integer
|
|
2873
2930
|
attr_accessor temperature: ::Float
|