aws-sdk-qconnect 1.42.0 → 1.44.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qconnect/client.rb +1234 -41
- data/lib/aws-sdk-qconnect/client_api.rb +592 -6
- data/lib/aws-sdk-qconnect/errors.rb +16 -0
- data/lib/aws-sdk-qconnect/types.rb +2118 -86
- data/lib/aws-sdk-qconnect.rb +1 -1
- data/sig/client.rbs +459 -25
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +604 -27
- metadata +3 -3
|
@@ -568,7 +568,7 @@ module Aws::QConnect
|
|
|
568
568
|
# client_token: "ClientToken",
|
|
569
569
|
# assistant_id: "UuidOrArn", # required
|
|
570
570
|
# name: "Name", # required
|
|
571
|
-
# type: "MANUAL_SEARCH", # required, accepts MANUAL_SEARCH, ANSWER_RECOMMENDATION, SELF_SERVICE, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER
|
|
571
|
+
# type: "MANUAL_SEARCH", # required, accepts MANUAL_SEARCH, ANSWER_RECOMMENDATION, SELF_SERVICE, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER, ORCHESTRATION, NOTE_TAKING, CASE_SUMMARIZATION
|
|
572
572
|
# configuration: { # required
|
|
573
573
|
# manual_search_ai_agent_configuration: {
|
|
574
574
|
# answer_generation_ai_prompt_id: "UuidWithQualifier",
|
|
@@ -657,6 +657,7 @@ module Aws::QConnect
|
|
|
657
657
|
# },
|
|
658
658
|
# ],
|
|
659
659
|
# locale: "NonEmptyString",
|
|
660
|
+
# suggested_messages: ["NonEmptySensitiveString"],
|
|
660
661
|
# },
|
|
661
662
|
# self_service_ai_agent_configuration: {
|
|
662
663
|
# self_service_pre_processing_ai_prompt_id: "UuidWithQualifier",
|
|
@@ -791,6 +792,66 @@ module Aws::QConnect
|
|
|
791
792
|
# },
|
|
792
793
|
# ],
|
|
793
794
|
# },
|
|
795
|
+
# orchestration_ai_agent_configuration: {
|
|
796
|
+
# orchestration_ai_prompt_id: "UuidWithQualifier", # required
|
|
797
|
+
# orchestration_ai_guardrail_id: "UuidWithQualifier",
|
|
798
|
+
# tool_configurations: [
|
|
799
|
+
# {
|
|
800
|
+
# tool_name: "NonEmptyString", # required
|
|
801
|
+
# tool_type: "MODEL_CONTEXT_PROTOCOL", # required, accepts MODEL_CONTEXT_PROTOCOL, RETURN_TO_CONTROL, CONSTANT
|
|
802
|
+
# title: "NonEmptyString",
|
|
803
|
+
# tool_id: "NonEmptyString",
|
|
804
|
+
# description: "String",
|
|
805
|
+
# instruction: {
|
|
806
|
+
# instruction: "String",
|
|
807
|
+
# examples: ["String"],
|
|
808
|
+
# },
|
|
809
|
+
# override_input_values: [
|
|
810
|
+
# {
|
|
811
|
+
# json_path: "NonEmptyString", # required
|
|
812
|
+
# value: { # required
|
|
813
|
+
# constant: {
|
|
814
|
+
# type: "STRING", # required, accepts STRING, NUMBER, JSON_STRING
|
|
815
|
+
# value: "NonEmptySensitiveString", # required
|
|
816
|
+
# },
|
|
817
|
+
# },
|
|
818
|
+
# },
|
|
819
|
+
# ],
|
|
820
|
+
# output_filters: [
|
|
821
|
+
# {
|
|
822
|
+
# json_path: "NonEmptyString", # required
|
|
823
|
+
# output_configuration: {
|
|
824
|
+
# output_variable_name_override: "NonEmptyString",
|
|
825
|
+
# session_data_namespace: "NonEmptyString",
|
|
826
|
+
# },
|
|
827
|
+
# },
|
|
828
|
+
# ],
|
|
829
|
+
# input_schema: {
|
|
830
|
+
# },
|
|
831
|
+
# output_schema: {
|
|
832
|
+
# },
|
|
833
|
+
# annotations: {
|
|
834
|
+
# title: "String",
|
|
835
|
+
# destructive_hint: false,
|
|
836
|
+
# },
|
|
837
|
+
# user_interaction_configuration: {
|
|
838
|
+
# is_user_confirmation_required: false,
|
|
839
|
+
# },
|
|
840
|
+
# },
|
|
841
|
+
# ],
|
|
842
|
+
# connect_instance_arn: "GenericArn",
|
|
843
|
+
# locale: "NonEmptyString",
|
|
844
|
+
# },
|
|
845
|
+
# note_taking_ai_agent_configuration: {
|
|
846
|
+
# note_taking_ai_prompt_id: "UuidWithQualifier",
|
|
847
|
+
# note_taking_ai_guardrail_id: "UuidWithQualifier",
|
|
848
|
+
# locale: "NonEmptyString",
|
|
849
|
+
# },
|
|
850
|
+
# case_summarization_ai_agent_configuration: {
|
|
851
|
+
# case_summarization_ai_prompt_id: "UuidWithQualifier",
|
|
852
|
+
# case_summarization_ai_guardrail_id: "UuidWithQualifier",
|
|
853
|
+
# locale: "NonEmptyString",
|
|
854
|
+
# },
|
|
794
855
|
# },
|
|
795
856
|
# visibility_status: "SAVED", # required, accepts SAVED, PUBLISHED
|
|
796
857
|
# tags: {
|
|
@@ -806,7 +867,7 @@ module Aws::QConnect
|
|
|
806
867
|
# resp.ai_agent.ai_agent_id #=> String
|
|
807
868
|
# resp.ai_agent.ai_agent_arn #=> String
|
|
808
869
|
# resp.ai_agent.name #=> String
|
|
809
|
-
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER"
|
|
870
|
+
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
810
871
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_prompt_id #=> String
|
|
811
872
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_guardrail_id #=> String
|
|
812
873
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.association_configurations #=> Array
|
|
@@ -847,6 +908,8 @@ module Aws::QConnect
|
|
|
847
908
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
848
909
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
849
910
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.locale #=> String
|
|
911
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages #=> Array
|
|
912
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages[0] #=> String
|
|
850
913
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_pre_processing_ai_prompt_id #=> String
|
|
851
914
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_answer_generation_ai_prompt_id #=> String
|
|
852
915
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_ai_guardrail_id #=> String
|
|
@@ -906,6 +969,36 @@ module Aws::QConnect
|
|
|
906
969
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.content_tag_filter.or_conditions[0].tag_condition.value #=> String
|
|
907
970
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
908
971
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
972
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_prompt_id #=> String
|
|
973
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_guardrail_id #=> String
|
|
974
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations #=> Array
|
|
975
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_name #=> String
|
|
976
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_type #=> String, one of "MODEL_CONTEXT_PROTOCOL", "RETURN_TO_CONTROL", "CONSTANT"
|
|
977
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].title #=> String
|
|
978
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_id #=> String
|
|
979
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].description #=> String
|
|
980
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.instruction #=> String
|
|
981
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples #=> Array
|
|
982
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples[0] #=> String
|
|
983
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values #=> Array
|
|
984
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].json_path #=> String
|
|
985
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.type #=> String, one of "STRING", "NUMBER", "JSON_STRING"
|
|
986
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.value #=> String
|
|
987
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters #=> Array
|
|
988
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].json_path #=> String
|
|
989
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.output_variable_name_override #=> String
|
|
990
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.session_data_namespace #=> String
|
|
991
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
992
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
993
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
994
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
995
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
996
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
997
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
998
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
999
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_prompt_id #=> String
|
|
1000
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_guardrail_id #=> String
|
|
1001
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.locale #=> String
|
|
909
1002
|
# resp.ai_agent.modified_time #=> Time
|
|
910
1003
|
# resp.ai_agent.description #=> String
|
|
911
1004
|
# resp.ai_agent.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -974,7 +1067,7 @@ module Aws::QConnect
|
|
|
974
1067
|
# resp.ai_agent.ai_agent_id #=> String
|
|
975
1068
|
# resp.ai_agent.ai_agent_arn #=> String
|
|
976
1069
|
# resp.ai_agent.name #=> String
|
|
977
|
-
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER"
|
|
1070
|
+
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
978
1071
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_prompt_id #=> String
|
|
979
1072
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_guardrail_id #=> String
|
|
980
1073
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.association_configurations #=> Array
|
|
@@ -1015,6 +1108,8 @@ module Aws::QConnect
|
|
|
1015
1108
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
1016
1109
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
1017
1110
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.locale #=> String
|
|
1111
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages #=> Array
|
|
1112
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages[0] #=> String
|
|
1018
1113
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_pre_processing_ai_prompt_id #=> String
|
|
1019
1114
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_answer_generation_ai_prompt_id #=> String
|
|
1020
1115
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_ai_guardrail_id #=> String
|
|
@@ -1074,6 +1169,36 @@ module Aws::QConnect
|
|
|
1074
1169
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.content_tag_filter.or_conditions[0].tag_condition.value #=> String
|
|
1075
1170
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
1076
1171
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
1172
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_prompt_id #=> String
|
|
1173
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_guardrail_id #=> String
|
|
1174
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations #=> Array
|
|
1175
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_name #=> String
|
|
1176
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_type #=> String, one of "MODEL_CONTEXT_PROTOCOL", "RETURN_TO_CONTROL", "CONSTANT"
|
|
1177
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].title #=> String
|
|
1178
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_id #=> String
|
|
1179
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].description #=> String
|
|
1180
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.instruction #=> String
|
|
1181
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples #=> Array
|
|
1182
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples[0] #=> String
|
|
1183
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values #=> Array
|
|
1184
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].json_path #=> String
|
|
1185
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.type #=> String, one of "STRING", "NUMBER", "JSON_STRING"
|
|
1186
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.value #=> String
|
|
1187
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters #=> Array
|
|
1188
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].json_path #=> String
|
|
1189
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.output_variable_name_override #=> String
|
|
1190
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.session_data_namespace #=> String
|
|
1191
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
1192
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
1193
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
1194
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
1195
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
1196
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
1197
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
1198
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
1199
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_prompt_id #=> String
|
|
1200
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_guardrail_id #=> String
|
|
1201
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.locale #=> String
|
|
1077
1202
|
# resp.ai_agent.modified_time #=> Time
|
|
1078
1203
|
# resp.ai_agent.description #=> String
|
|
1079
1204
|
# resp.ai_agent.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -1421,6 +1546,9 @@ module Aws::QConnect
|
|
|
1421
1546
|
# @option params [String] :description
|
|
1422
1547
|
# The description of the AI Prompt.
|
|
1423
1548
|
#
|
|
1549
|
+
# @option params [Types::AIPromptInferenceConfiguration] :inference_configuration
|
|
1550
|
+
# The inference configuration for the AI Prompt being created.
|
|
1551
|
+
#
|
|
1424
1552
|
# @return [Types::CreateAIPromptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1425
1553
|
#
|
|
1426
1554
|
# * {Types::CreateAIPromptResponse#ai_prompt #ai_prompt} => Types::AIPromptData
|
|
@@ -1431,7 +1559,7 @@ module Aws::QConnect
|
|
|
1431
1559
|
# client_token: "ClientToken",
|
|
1432
1560
|
# assistant_id: "UuidOrArn", # required
|
|
1433
1561
|
# name: "Name", # required
|
|
1434
|
-
# type: "ANSWER_GENERATION", # required, accepts ANSWER_GENERATION, INTENT_LABELING_GENERATION, QUERY_REFORMULATION, SELF_SERVICE_PRE_PROCESSING, SELF_SERVICE_ANSWER_GENERATION, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER, EMAIL_QUERY_REFORMULATION
|
|
1562
|
+
# type: "ANSWER_GENERATION", # required, accepts ANSWER_GENERATION, INTENT_LABELING_GENERATION, QUERY_REFORMULATION, SELF_SERVICE_PRE_PROCESSING, SELF_SERVICE_ANSWER_GENERATION, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER, EMAIL_QUERY_REFORMULATION, ORCHESTRATION, NOTE_TAKING, CASE_SUMMARIZATION
|
|
1435
1563
|
# template_configuration: { # required
|
|
1436
1564
|
# text_full_ai_prompt_edit_template_configuration: {
|
|
1437
1565
|
# text: "TextAIPrompt", # required
|
|
@@ -1445,6 +1573,14 @@ module Aws::QConnect
|
|
|
1445
1573
|
# "TagKey" => "TagValue",
|
|
1446
1574
|
# },
|
|
1447
1575
|
# description: "Description",
|
|
1576
|
+
# inference_configuration: {
|
|
1577
|
+
# text_ai_prompt_inference_configuration: {
|
|
1578
|
+
# temperature: 1.0,
|
|
1579
|
+
# top_p: 1.0,
|
|
1580
|
+
# top_k: 1,
|
|
1581
|
+
# max_tokens_to_sample: 1,
|
|
1582
|
+
# },
|
|
1583
|
+
# },
|
|
1448
1584
|
# })
|
|
1449
1585
|
#
|
|
1450
1586
|
# @example Response structure
|
|
@@ -1454,11 +1590,15 @@ module Aws::QConnect
|
|
|
1454
1590
|
# resp.ai_prompt.ai_prompt_id #=> String
|
|
1455
1591
|
# resp.ai_prompt.ai_prompt_arn #=> String
|
|
1456
1592
|
# resp.ai_prompt.name #=> String
|
|
1457
|
-
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION"
|
|
1593
|
+
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
1458
1594
|
# resp.ai_prompt.template_type #=> String, one of "TEXT"
|
|
1459
1595
|
# resp.ai_prompt.model_id #=> String
|
|
1460
1596
|
# resp.ai_prompt.api_format #=> String, one of "ANTHROPIC_CLAUDE_MESSAGES", "ANTHROPIC_CLAUDE_TEXT_COMPLETIONS", "MESSAGES", "TEXT_COMPLETIONS"
|
|
1461
1597
|
# resp.ai_prompt.template_configuration.text_full_ai_prompt_edit_template_configuration.text #=> String
|
|
1598
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.temperature #=> Float
|
|
1599
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_p #=> Float
|
|
1600
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_k #=> Integer
|
|
1601
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.max_tokens_to_sample #=> Integer
|
|
1462
1602
|
# resp.ai_prompt.modified_time #=> Time
|
|
1463
1603
|
# resp.ai_prompt.description #=> String
|
|
1464
1604
|
# resp.ai_prompt.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -1522,11 +1662,15 @@ module Aws::QConnect
|
|
|
1522
1662
|
# resp.ai_prompt.ai_prompt_id #=> String
|
|
1523
1663
|
# resp.ai_prompt.ai_prompt_arn #=> String
|
|
1524
1664
|
# resp.ai_prompt.name #=> String
|
|
1525
|
-
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION"
|
|
1665
|
+
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
1526
1666
|
# resp.ai_prompt.template_type #=> String, one of "TEXT"
|
|
1527
1667
|
# resp.ai_prompt.model_id #=> String
|
|
1528
1668
|
# resp.ai_prompt.api_format #=> String, one of "ANTHROPIC_CLAUDE_MESSAGES", "ANTHROPIC_CLAUDE_TEXT_COMPLETIONS", "MESSAGES", "TEXT_COMPLETIONS"
|
|
1529
1669
|
# resp.ai_prompt.template_configuration.text_full_ai_prompt_edit_template_configuration.text #=> String
|
|
1670
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.temperature #=> Float
|
|
1671
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_p #=> Float
|
|
1672
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_k #=> Integer
|
|
1673
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.max_tokens_to_sample #=> Integer
|
|
1530
1674
|
# resp.ai_prompt.modified_time #=> Time
|
|
1531
1675
|
# resp.ai_prompt.description #=> String
|
|
1532
1676
|
# resp.ai_prompt.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -1626,6 +1770,9 @@ module Aws::QConnect
|
|
|
1626
1770
|
# resp.assistant.capability_configuration.type #=> String, one of "V1", "V2"
|
|
1627
1771
|
# resp.assistant.ai_agent_configuration #=> Hash
|
|
1628
1772
|
# resp.assistant.ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
1773
|
+
# resp.assistant.orchestrator_configuration_list #=> Array
|
|
1774
|
+
# resp.assistant.orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
1775
|
+
# resp.assistant.orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
1629
1776
|
#
|
|
1630
1777
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/CreateAssistant AWS API Documentation
|
|
1631
1778
|
#
|
|
@@ -1674,9 +1821,13 @@ module Aws::QConnect
|
|
|
1674
1821
|
#
|
|
1675
1822
|
# resp = client.create_assistant_association({
|
|
1676
1823
|
# assistant_id: "UuidOrArn", # required
|
|
1677
|
-
# association_type: "KNOWLEDGE_BASE", # required, accepts KNOWLEDGE_BASE
|
|
1824
|
+
# association_type: "KNOWLEDGE_BASE", # required, accepts KNOWLEDGE_BASE, EXTERNAL_BEDROCK_KNOWLEDGE_BASE
|
|
1678
1825
|
# association: { # required
|
|
1679
1826
|
# knowledge_base_id: "Uuid",
|
|
1827
|
+
# external_bedrock_knowledge_base_config: {
|
|
1828
|
+
# bedrock_knowledge_base_arn: "BedrockKnowledgeBaseArn", # required
|
|
1829
|
+
# access_role_arn: "AccessRoleArn", # required
|
|
1830
|
+
# },
|
|
1680
1831
|
# },
|
|
1681
1832
|
# client_token: "ClientToken",
|
|
1682
1833
|
# tags: {
|
|
@@ -1690,9 +1841,11 @@ module Aws::QConnect
|
|
|
1690
1841
|
# resp.assistant_association.assistant_association_arn #=> String
|
|
1691
1842
|
# resp.assistant_association.assistant_id #=> String
|
|
1692
1843
|
# resp.assistant_association.assistant_arn #=> String
|
|
1693
|
-
# resp.assistant_association.association_type #=> String, one of "KNOWLEDGE_BASE"
|
|
1844
|
+
# resp.assistant_association.association_type #=> String, one of "KNOWLEDGE_BASE", "EXTERNAL_BEDROCK_KNOWLEDGE_BASE"
|
|
1694
1845
|
# resp.assistant_association.association_data.knowledge_base_association.knowledge_base_id #=> String
|
|
1695
1846
|
# resp.assistant_association.association_data.knowledge_base_association.knowledge_base_arn #=> String
|
|
1847
|
+
# resp.assistant_association.association_data.external_bedrock_knowledge_base_config.bedrock_knowledge_base_arn #=> String
|
|
1848
|
+
# resp.assistant_association.association_data.external_bedrock_knowledge_base_config.access_role_arn #=> String
|
|
1696
1849
|
# resp.assistant_association.tags #=> Hash
|
|
1697
1850
|
# resp.assistant_association.tags["TagKey"] #=> String
|
|
1698
1851
|
#
|
|
@@ -2127,10 +2280,10 @@ module Aws::QConnect
|
|
|
2127
2280
|
# The identifier of the knowledge base. Can be either the ID or the ARN.
|
|
2128
2281
|
# URLs cannot contain the ARN.
|
|
2129
2282
|
#
|
|
2130
|
-
# @option params [
|
|
2283
|
+
# @option params [String] :name
|
|
2131
2284
|
# The name of the message template.
|
|
2132
2285
|
#
|
|
2133
|
-
# @option params [
|
|
2286
|
+
# @option params [Types::MessageTemplateContentProvider] :content
|
|
2134
2287
|
# The content of the message template.
|
|
2135
2288
|
#
|
|
2136
2289
|
# @option params [String] :description
|
|
@@ -2145,6 +2298,10 @@ module Aws::QConnect
|
|
|
2145
2298
|
# `es_ES`, `fr_FR`, `id_ID`, `it_IT`, `ja_JP`, `ko_KR`, `pt_BR`,
|
|
2146
2299
|
# `zh_CN`, `zh_TW`
|
|
2147
2300
|
#
|
|
2301
|
+
# @option params [Types::MessageTemplateSourceConfiguration] :source_configuration
|
|
2302
|
+
# The source configuration of the message template. Only set this
|
|
2303
|
+
# argument for WHATSAPP channel subtype.
|
|
2304
|
+
#
|
|
2148
2305
|
# @option params [Types::MessageTemplateAttributes] :default_attributes
|
|
2149
2306
|
# An object that specifies the default values to use for variables in
|
|
2150
2307
|
# the message template. This object contains different categories of
|
|
@@ -2180,8 +2337,8 @@ module Aws::QConnect
|
|
|
2180
2337
|
#
|
|
2181
2338
|
# resp = client.create_message_template({
|
|
2182
2339
|
# knowledge_base_id: "UuidOrArn", # required
|
|
2183
|
-
# name: "Name",
|
|
2184
|
-
# content: {
|
|
2340
|
+
# name: "Name",
|
|
2341
|
+
# content: {
|
|
2185
2342
|
# email: {
|
|
2186
2343
|
# subject: "NonEmptyUnlimitedString",
|
|
2187
2344
|
# body: {
|
|
@@ -2206,10 +2363,80 @@ module Aws::QConnect
|
|
|
2206
2363
|
# },
|
|
2207
2364
|
# },
|
|
2208
2365
|
# },
|
|
2366
|
+
# whats_app: {
|
|
2367
|
+
# data: "WhatsAppMessageTemplateContentData",
|
|
2368
|
+
# },
|
|
2369
|
+
# push: {
|
|
2370
|
+
# adm: {
|
|
2371
|
+
# title: "NonEmptyUnlimitedString",
|
|
2372
|
+
# body: {
|
|
2373
|
+
# content: "NonEmptyUnlimitedString",
|
|
2374
|
+
# },
|
|
2375
|
+
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
|
2376
|
+
# sound: "NonEmptyUnlimitedString",
|
|
2377
|
+
# url: "NonEmptyUnlimitedString",
|
|
2378
|
+
# image_url: "NonEmptyUnlimitedString",
|
|
2379
|
+
# image_icon_url: "NonEmptyUnlimitedString",
|
|
2380
|
+
# small_image_icon_url: "NonEmptyUnlimitedString",
|
|
2381
|
+
# raw_content: {
|
|
2382
|
+
# content: "NonEmptyUnlimitedString",
|
|
2383
|
+
# },
|
|
2384
|
+
# },
|
|
2385
|
+
# apns: {
|
|
2386
|
+
# title: "NonEmptyUnlimitedString",
|
|
2387
|
+
# body: {
|
|
2388
|
+
# content: "NonEmptyUnlimitedString",
|
|
2389
|
+
# },
|
|
2390
|
+
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
|
2391
|
+
# sound: "NonEmptyUnlimitedString",
|
|
2392
|
+
# url: "NonEmptyUnlimitedString",
|
|
2393
|
+
# media_url: "NonEmptyUnlimitedString",
|
|
2394
|
+
# raw_content: {
|
|
2395
|
+
# content: "NonEmptyUnlimitedString",
|
|
2396
|
+
# },
|
|
2397
|
+
# },
|
|
2398
|
+
# fcm: {
|
|
2399
|
+
# title: "NonEmptyUnlimitedString",
|
|
2400
|
+
# body: {
|
|
2401
|
+
# content: "NonEmptyUnlimitedString",
|
|
2402
|
+
# },
|
|
2403
|
+
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
|
2404
|
+
# sound: "NonEmptyUnlimitedString",
|
|
2405
|
+
# url: "NonEmptyUnlimitedString",
|
|
2406
|
+
# image_url: "NonEmptyUnlimitedString",
|
|
2407
|
+
# image_icon_url: "NonEmptyUnlimitedString",
|
|
2408
|
+
# small_image_icon_url: "NonEmptyUnlimitedString",
|
|
2409
|
+
# raw_content: {
|
|
2410
|
+
# content: "NonEmptyUnlimitedString",
|
|
2411
|
+
# },
|
|
2412
|
+
# },
|
|
2413
|
+
# baidu: {
|
|
2414
|
+
# title: "NonEmptyUnlimitedString",
|
|
2415
|
+
# body: {
|
|
2416
|
+
# content: "NonEmptyUnlimitedString",
|
|
2417
|
+
# },
|
|
2418
|
+
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
|
2419
|
+
# sound: "NonEmptyUnlimitedString",
|
|
2420
|
+
# url: "NonEmptyUnlimitedString",
|
|
2421
|
+
# image_url: "NonEmptyUnlimitedString",
|
|
2422
|
+
# image_icon_url: "NonEmptyUnlimitedString",
|
|
2423
|
+
# small_image_icon_url: "NonEmptyUnlimitedString",
|
|
2424
|
+
# raw_content: {
|
|
2425
|
+
# content: "NonEmptyUnlimitedString",
|
|
2426
|
+
# },
|
|
2427
|
+
# },
|
|
2428
|
+
# },
|
|
2209
2429
|
# },
|
|
2210
2430
|
# description: "Description",
|
|
2211
|
-
# channel_subtype: "EMAIL", # required, accepts EMAIL, SMS
|
|
2431
|
+
# channel_subtype: "EMAIL", # required, accepts EMAIL, SMS, WHATSAPP, PUSH
|
|
2212
2432
|
# language: "LanguageCode",
|
|
2433
|
+
# source_configuration: {
|
|
2434
|
+
# whats_app: {
|
|
2435
|
+
# business_account_id: "WhatsAppBusinessAccountId", # required
|
|
2436
|
+
# template_id: "WhatsAppMessageTemplateId", # required
|
|
2437
|
+
# components: ["WhatsAppMessageTemplateComponent"],
|
|
2438
|
+
# },
|
|
2439
|
+
# },
|
|
2213
2440
|
# default_attributes: {
|
|
2214
2441
|
# system_attributes: {
|
|
2215
2442
|
# name: "MessageTemplateAttributeValue",
|
|
@@ -2307,7 +2534,8 @@ module Aws::QConnect
|
|
|
2307
2534
|
# resp.message_template.knowledge_base_arn #=> String
|
|
2308
2535
|
# resp.message_template.knowledge_base_id #=> String
|
|
2309
2536
|
# resp.message_template.name #=> String
|
|
2310
|
-
# resp.message_template.
|
|
2537
|
+
# resp.message_template.channel #=> String
|
|
2538
|
+
# resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
|
|
2311
2539
|
# resp.message_template.created_time #=> Time
|
|
2312
2540
|
# resp.message_template.last_modified_time #=> Time
|
|
2313
2541
|
# resp.message_template.last_modified_by #=> String
|
|
@@ -2318,8 +2546,51 @@ module Aws::QConnect
|
|
|
2318
2546
|
# resp.message_template.content.email.headers[0].name #=> String
|
|
2319
2547
|
# resp.message_template.content.email.headers[0].value #=> String
|
|
2320
2548
|
# resp.message_template.content.sms.body.plain_text.content #=> String
|
|
2549
|
+
# resp.message_template.content.whats_app.data #=> String
|
|
2550
|
+
# resp.message_template.content.push.adm.title #=> String
|
|
2551
|
+
# resp.message_template.content.push.adm.body.content #=> String
|
|
2552
|
+
# resp.message_template.content.push.adm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
2553
|
+
# resp.message_template.content.push.adm.sound #=> String
|
|
2554
|
+
# resp.message_template.content.push.adm.url #=> String
|
|
2555
|
+
# resp.message_template.content.push.adm.image_url #=> String
|
|
2556
|
+
# resp.message_template.content.push.adm.image_icon_url #=> String
|
|
2557
|
+
# resp.message_template.content.push.adm.small_image_icon_url #=> String
|
|
2558
|
+
# resp.message_template.content.push.adm.raw_content.content #=> String
|
|
2559
|
+
# resp.message_template.content.push.apns.title #=> String
|
|
2560
|
+
# resp.message_template.content.push.apns.body.content #=> String
|
|
2561
|
+
# resp.message_template.content.push.apns.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
2562
|
+
# resp.message_template.content.push.apns.sound #=> String
|
|
2563
|
+
# resp.message_template.content.push.apns.url #=> String
|
|
2564
|
+
# resp.message_template.content.push.apns.media_url #=> String
|
|
2565
|
+
# resp.message_template.content.push.apns.raw_content.content #=> String
|
|
2566
|
+
# resp.message_template.content.push.fcm.title #=> String
|
|
2567
|
+
# resp.message_template.content.push.fcm.body.content #=> String
|
|
2568
|
+
# resp.message_template.content.push.fcm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
2569
|
+
# resp.message_template.content.push.fcm.sound #=> String
|
|
2570
|
+
# resp.message_template.content.push.fcm.url #=> String
|
|
2571
|
+
# resp.message_template.content.push.fcm.image_url #=> String
|
|
2572
|
+
# resp.message_template.content.push.fcm.image_icon_url #=> String
|
|
2573
|
+
# resp.message_template.content.push.fcm.small_image_icon_url #=> String
|
|
2574
|
+
# resp.message_template.content.push.fcm.raw_content.content #=> String
|
|
2575
|
+
# resp.message_template.content.push.baidu.title #=> String
|
|
2576
|
+
# resp.message_template.content.push.baidu.body.content #=> String
|
|
2577
|
+
# resp.message_template.content.push.baidu.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
2578
|
+
# resp.message_template.content.push.baidu.sound #=> String
|
|
2579
|
+
# resp.message_template.content.push.baidu.url #=> String
|
|
2580
|
+
# resp.message_template.content.push.baidu.image_url #=> String
|
|
2581
|
+
# resp.message_template.content.push.baidu.image_icon_url #=> String
|
|
2582
|
+
# resp.message_template.content.push.baidu.small_image_icon_url #=> String
|
|
2583
|
+
# resp.message_template.content.push.baidu.raw_content.content #=> String
|
|
2321
2584
|
# resp.message_template.description #=> String
|
|
2322
2585
|
# resp.message_template.language #=> String
|
|
2586
|
+
# resp.message_template.source_configuration_summary.whats_app.business_account_id #=> String
|
|
2587
|
+
# resp.message_template.source_configuration_summary.whats_app.template_id #=> String
|
|
2588
|
+
# resp.message_template.source_configuration_summary.whats_app.name #=> String
|
|
2589
|
+
# resp.message_template.source_configuration_summary.whats_app.language #=> String
|
|
2590
|
+
# resp.message_template.source_configuration_summary.whats_app.components #=> Array
|
|
2591
|
+
# resp.message_template.source_configuration_summary.whats_app.components[0] #=> String
|
|
2592
|
+
# resp.message_template.source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
|
|
2593
|
+
# resp.message_template.source_configuration_summary.whats_app.status_reason #=> String
|
|
2323
2594
|
# resp.message_template.grouping_configuration.criteria #=> String
|
|
2324
2595
|
# resp.message_template.grouping_configuration.values #=> Array
|
|
2325
2596
|
# resp.message_template.grouping_configuration.values[0] #=> String
|
|
@@ -2523,7 +2794,8 @@ module Aws::QConnect
|
|
|
2523
2794
|
# resp.message_template.knowledge_base_arn #=> String
|
|
2524
2795
|
# resp.message_template.knowledge_base_id #=> String
|
|
2525
2796
|
# resp.message_template.name #=> String
|
|
2526
|
-
# resp.message_template.
|
|
2797
|
+
# resp.message_template.channel #=> String
|
|
2798
|
+
# resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
|
|
2527
2799
|
# resp.message_template.created_time #=> Time
|
|
2528
2800
|
# resp.message_template.last_modified_time #=> Time
|
|
2529
2801
|
# resp.message_template.last_modified_by #=> String
|
|
@@ -2534,8 +2806,51 @@ module Aws::QConnect
|
|
|
2534
2806
|
# resp.message_template.content.email.headers[0].name #=> String
|
|
2535
2807
|
# resp.message_template.content.email.headers[0].value #=> String
|
|
2536
2808
|
# resp.message_template.content.sms.body.plain_text.content #=> String
|
|
2809
|
+
# resp.message_template.content.whats_app.data #=> String
|
|
2810
|
+
# resp.message_template.content.push.adm.title #=> String
|
|
2811
|
+
# resp.message_template.content.push.adm.body.content #=> String
|
|
2812
|
+
# resp.message_template.content.push.adm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
2813
|
+
# resp.message_template.content.push.adm.sound #=> String
|
|
2814
|
+
# resp.message_template.content.push.adm.url #=> String
|
|
2815
|
+
# resp.message_template.content.push.adm.image_url #=> String
|
|
2816
|
+
# resp.message_template.content.push.adm.image_icon_url #=> String
|
|
2817
|
+
# resp.message_template.content.push.adm.small_image_icon_url #=> String
|
|
2818
|
+
# resp.message_template.content.push.adm.raw_content.content #=> String
|
|
2819
|
+
# resp.message_template.content.push.apns.title #=> String
|
|
2820
|
+
# resp.message_template.content.push.apns.body.content #=> String
|
|
2821
|
+
# resp.message_template.content.push.apns.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
2822
|
+
# resp.message_template.content.push.apns.sound #=> String
|
|
2823
|
+
# resp.message_template.content.push.apns.url #=> String
|
|
2824
|
+
# resp.message_template.content.push.apns.media_url #=> String
|
|
2825
|
+
# resp.message_template.content.push.apns.raw_content.content #=> String
|
|
2826
|
+
# resp.message_template.content.push.fcm.title #=> String
|
|
2827
|
+
# resp.message_template.content.push.fcm.body.content #=> String
|
|
2828
|
+
# resp.message_template.content.push.fcm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
2829
|
+
# resp.message_template.content.push.fcm.sound #=> String
|
|
2830
|
+
# resp.message_template.content.push.fcm.url #=> String
|
|
2831
|
+
# resp.message_template.content.push.fcm.image_url #=> String
|
|
2832
|
+
# resp.message_template.content.push.fcm.image_icon_url #=> String
|
|
2833
|
+
# resp.message_template.content.push.fcm.small_image_icon_url #=> String
|
|
2834
|
+
# resp.message_template.content.push.fcm.raw_content.content #=> String
|
|
2835
|
+
# resp.message_template.content.push.baidu.title #=> String
|
|
2836
|
+
# resp.message_template.content.push.baidu.body.content #=> String
|
|
2837
|
+
# resp.message_template.content.push.baidu.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
2838
|
+
# resp.message_template.content.push.baidu.sound #=> String
|
|
2839
|
+
# resp.message_template.content.push.baidu.url #=> String
|
|
2840
|
+
# resp.message_template.content.push.baidu.image_url #=> String
|
|
2841
|
+
# resp.message_template.content.push.baidu.image_icon_url #=> String
|
|
2842
|
+
# resp.message_template.content.push.baidu.small_image_icon_url #=> String
|
|
2843
|
+
# resp.message_template.content.push.baidu.raw_content.content #=> String
|
|
2537
2844
|
# resp.message_template.description #=> String
|
|
2538
2845
|
# resp.message_template.language #=> String
|
|
2846
|
+
# resp.message_template.source_configuration_summary.whats_app.business_account_id #=> String
|
|
2847
|
+
# resp.message_template.source_configuration_summary.whats_app.template_id #=> String
|
|
2848
|
+
# resp.message_template.source_configuration_summary.whats_app.name #=> String
|
|
2849
|
+
# resp.message_template.source_configuration_summary.whats_app.language #=> String
|
|
2850
|
+
# resp.message_template.source_configuration_summary.whats_app.components #=> Array
|
|
2851
|
+
# resp.message_template.source_configuration_summary.whats_app.components[0] #=> String
|
|
2852
|
+
# resp.message_template.source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
|
|
2853
|
+
# resp.message_template.source_configuration_summary.whats_app.status_reason #=> String
|
|
2539
2854
|
# resp.message_template.grouping_configuration.criteria #=> String
|
|
2540
2855
|
# resp.message_template.grouping_configuration.values #=> Array
|
|
2541
2856
|
# resp.message_template.grouping_configuration.values[0] #=> String
|
|
@@ -2796,6 +3111,12 @@ module Aws::QConnect
|
|
|
2796
3111
|
# Used to retrieve email content and establish session context for
|
|
2797
3112
|
# AI-powered email assistance.
|
|
2798
3113
|
#
|
|
3114
|
+
# @option params [Array<Types::OrchestratorConfigurationEntry>] :orchestrator_configuration_list
|
|
3115
|
+
# The list of orchestrator configurations for the session being created.
|
|
3116
|
+
#
|
|
3117
|
+
# @option params [Boolean] :remove_orchestrator_configuration_list
|
|
3118
|
+
# The list of orchestrator configurations to remove from the session.
|
|
3119
|
+
#
|
|
2799
3120
|
# @return [Types::CreateSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2800
3121
|
#
|
|
2801
3122
|
# * {Types::CreateSessionResponse#session #session} => Types::SessionData
|
|
@@ -2842,6 +3163,13 @@ module Aws::QConnect
|
|
|
2842
3163
|
# },
|
|
2843
3164
|
# },
|
|
2844
3165
|
# contact_arn: "GenericArn",
|
|
3166
|
+
# orchestrator_configuration_list: [
|
|
3167
|
+
# {
|
|
3168
|
+
# ai_agent_id: "UuidOrArnOrEitherWithQualifier",
|
|
3169
|
+
# orchestrator_use_case: "NonEmptyString", # required
|
|
3170
|
+
# },
|
|
3171
|
+
# ],
|
|
3172
|
+
# remove_orchestrator_configuration_list: false,
|
|
2845
3173
|
# })
|
|
2846
3174
|
#
|
|
2847
3175
|
# @example Response structure
|
|
@@ -2867,6 +3195,9 @@ module Aws::QConnect
|
|
|
2867
3195
|
# resp.session.ai_agent_configuration #=> Hash
|
|
2868
3196
|
# resp.session.ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
2869
3197
|
# resp.session.origin #=> String, one of "SYSTEM", "CUSTOMER"
|
|
3198
|
+
# resp.session.orchestrator_configuration_list #=> Array
|
|
3199
|
+
# resp.session.orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
3200
|
+
# resp.session.orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
2870
3201
|
#
|
|
2871
3202
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/CreateSession AWS API Documentation
|
|
2872
3203
|
#
|
|
@@ -3406,7 +3737,7 @@ module Aws::QConnect
|
|
|
3406
3737
|
# resp.ai_agent.ai_agent_id #=> String
|
|
3407
3738
|
# resp.ai_agent.ai_agent_arn #=> String
|
|
3408
3739
|
# resp.ai_agent.name #=> String
|
|
3409
|
-
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER"
|
|
3740
|
+
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
3410
3741
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_prompt_id #=> String
|
|
3411
3742
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_guardrail_id #=> String
|
|
3412
3743
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.association_configurations #=> Array
|
|
@@ -3447,6 +3778,8 @@ module Aws::QConnect
|
|
|
3447
3778
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
3448
3779
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
3449
3780
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.locale #=> String
|
|
3781
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages #=> Array
|
|
3782
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages[0] #=> String
|
|
3450
3783
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_pre_processing_ai_prompt_id #=> String
|
|
3451
3784
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_answer_generation_ai_prompt_id #=> String
|
|
3452
3785
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_ai_guardrail_id #=> String
|
|
@@ -3506,6 +3839,36 @@ module Aws::QConnect
|
|
|
3506
3839
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.content_tag_filter.or_conditions[0].tag_condition.value #=> String
|
|
3507
3840
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
3508
3841
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
3842
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_prompt_id #=> String
|
|
3843
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_guardrail_id #=> String
|
|
3844
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations #=> Array
|
|
3845
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_name #=> String
|
|
3846
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_type #=> String, one of "MODEL_CONTEXT_PROTOCOL", "RETURN_TO_CONTROL", "CONSTANT"
|
|
3847
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].title #=> String
|
|
3848
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_id #=> String
|
|
3849
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].description #=> String
|
|
3850
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.instruction #=> String
|
|
3851
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples #=> Array
|
|
3852
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples[0] #=> String
|
|
3853
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values #=> Array
|
|
3854
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].json_path #=> String
|
|
3855
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.type #=> String, one of "STRING", "NUMBER", "JSON_STRING"
|
|
3856
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.value #=> String
|
|
3857
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters #=> Array
|
|
3858
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].json_path #=> String
|
|
3859
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.output_variable_name_override #=> String
|
|
3860
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.session_data_namespace #=> String
|
|
3861
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
3862
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
3863
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
3864
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
3865
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
3866
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
3867
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
3868
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
3869
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_prompt_id #=> String
|
|
3870
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_guardrail_id #=> String
|
|
3871
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.locale #=> String
|
|
3509
3872
|
# resp.ai_agent.modified_time #=> Time
|
|
3510
3873
|
# resp.ai_agent.description #=> String
|
|
3511
3874
|
# resp.ai_agent.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -3624,11 +3987,15 @@ module Aws::QConnect
|
|
|
3624
3987
|
# resp.ai_prompt.ai_prompt_id #=> String
|
|
3625
3988
|
# resp.ai_prompt.ai_prompt_arn #=> String
|
|
3626
3989
|
# resp.ai_prompt.name #=> String
|
|
3627
|
-
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION"
|
|
3990
|
+
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
3628
3991
|
# resp.ai_prompt.template_type #=> String, one of "TEXT"
|
|
3629
3992
|
# resp.ai_prompt.model_id #=> String
|
|
3630
3993
|
# resp.ai_prompt.api_format #=> String, one of "ANTHROPIC_CLAUDE_MESSAGES", "ANTHROPIC_CLAUDE_TEXT_COMPLETIONS", "MESSAGES", "TEXT_COMPLETIONS"
|
|
3631
3994
|
# resp.ai_prompt.template_configuration.text_full_ai_prompt_edit_template_configuration.text #=> String
|
|
3995
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.temperature #=> Float
|
|
3996
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_p #=> Float
|
|
3997
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_k #=> Integer
|
|
3998
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.max_tokens_to_sample #=> Integer
|
|
3632
3999
|
# resp.ai_prompt.modified_time #=> Time
|
|
3633
4000
|
# resp.ai_prompt.description #=> String
|
|
3634
4001
|
# resp.ai_prompt.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -3678,6 +4045,9 @@ module Aws::QConnect
|
|
|
3678
4045
|
# resp.assistant.capability_configuration.type #=> String, one of "V1", "V2"
|
|
3679
4046
|
# resp.assistant.ai_agent_configuration #=> Hash
|
|
3680
4047
|
# resp.assistant.ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
4048
|
+
# resp.assistant.orchestrator_configuration_list #=> Array
|
|
4049
|
+
# resp.assistant.orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
4050
|
+
# resp.assistant.orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
3681
4051
|
#
|
|
3682
4052
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/GetAssistant AWS API Documentation
|
|
3683
4053
|
#
|
|
@@ -3715,9 +4085,11 @@ module Aws::QConnect
|
|
|
3715
4085
|
# resp.assistant_association.assistant_association_arn #=> String
|
|
3716
4086
|
# resp.assistant_association.assistant_id #=> String
|
|
3717
4087
|
# resp.assistant_association.assistant_arn #=> String
|
|
3718
|
-
# resp.assistant_association.association_type #=> String, one of "KNOWLEDGE_BASE"
|
|
4088
|
+
# resp.assistant_association.association_type #=> String, one of "KNOWLEDGE_BASE", "EXTERNAL_BEDROCK_KNOWLEDGE_BASE"
|
|
3719
4089
|
# resp.assistant_association.association_data.knowledge_base_association.knowledge_base_id #=> String
|
|
3720
4090
|
# resp.assistant_association.association_data.knowledge_base_association.knowledge_base_arn #=> String
|
|
4091
|
+
# resp.assistant_association.association_data.external_bedrock_knowledge_base_config.bedrock_knowledge_base_arn #=> String
|
|
4092
|
+
# resp.assistant_association.association_data.external_bedrock_knowledge_base_config.access_role_arn #=> String
|
|
3721
4093
|
# resp.assistant_association.tags #=> Hash
|
|
3722
4094
|
# resp.assistant_association.tags["TagKey"] #=> String
|
|
3723
4095
|
#
|
|
@@ -4024,7 +4396,8 @@ module Aws::QConnect
|
|
|
4024
4396
|
# resp.message_template.knowledge_base_arn #=> String
|
|
4025
4397
|
# resp.message_template.knowledge_base_id #=> String
|
|
4026
4398
|
# resp.message_template.name #=> String
|
|
4027
|
-
# resp.message_template.
|
|
4399
|
+
# resp.message_template.channel #=> String
|
|
4400
|
+
# resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
|
|
4028
4401
|
# resp.message_template.created_time #=> Time
|
|
4029
4402
|
# resp.message_template.last_modified_time #=> Time
|
|
4030
4403
|
# resp.message_template.last_modified_by #=> String
|
|
@@ -4035,8 +4408,51 @@ module Aws::QConnect
|
|
|
4035
4408
|
# resp.message_template.content.email.headers[0].name #=> String
|
|
4036
4409
|
# resp.message_template.content.email.headers[0].value #=> String
|
|
4037
4410
|
# resp.message_template.content.sms.body.plain_text.content #=> String
|
|
4411
|
+
# resp.message_template.content.whats_app.data #=> String
|
|
4412
|
+
# resp.message_template.content.push.adm.title #=> String
|
|
4413
|
+
# resp.message_template.content.push.adm.body.content #=> String
|
|
4414
|
+
# resp.message_template.content.push.adm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
4415
|
+
# resp.message_template.content.push.adm.sound #=> String
|
|
4416
|
+
# resp.message_template.content.push.adm.url #=> String
|
|
4417
|
+
# resp.message_template.content.push.adm.image_url #=> String
|
|
4418
|
+
# resp.message_template.content.push.adm.image_icon_url #=> String
|
|
4419
|
+
# resp.message_template.content.push.adm.small_image_icon_url #=> String
|
|
4420
|
+
# resp.message_template.content.push.adm.raw_content.content #=> String
|
|
4421
|
+
# resp.message_template.content.push.apns.title #=> String
|
|
4422
|
+
# resp.message_template.content.push.apns.body.content #=> String
|
|
4423
|
+
# resp.message_template.content.push.apns.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
4424
|
+
# resp.message_template.content.push.apns.sound #=> String
|
|
4425
|
+
# resp.message_template.content.push.apns.url #=> String
|
|
4426
|
+
# resp.message_template.content.push.apns.media_url #=> String
|
|
4427
|
+
# resp.message_template.content.push.apns.raw_content.content #=> String
|
|
4428
|
+
# resp.message_template.content.push.fcm.title #=> String
|
|
4429
|
+
# resp.message_template.content.push.fcm.body.content #=> String
|
|
4430
|
+
# resp.message_template.content.push.fcm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
4431
|
+
# resp.message_template.content.push.fcm.sound #=> String
|
|
4432
|
+
# resp.message_template.content.push.fcm.url #=> String
|
|
4433
|
+
# resp.message_template.content.push.fcm.image_url #=> String
|
|
4434
|
+
# resp.message_template.content.push.fcm.image_icon_url #=> String
|
|
4435
|
+
# resp.message_template.content.push.fcm.small_image_icon_url #=> String
|
|
4436
|
+
# resp.message_template.content.push.fcm.raw_content.content #=> String
|
|
4437
|
+
# resp.message_template.content.push.baidu.title #=> String
|
|
4438
|
+
# resp.message_template.content.push.baidu.body.content #=> String
|
|
4439
|
+
# resp.message_template.content.push.baidu.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
4440
|
+
# resp.message_template.content.push.baidu.sound #=> String
|
|
4441
|
+
# resp.message_template.content.push.baidu.url #=> String
|
|
4442
|
+
# resp.message_template.content.push.baidu.image_url #=> String
|
|
4443
|
+
# resp.message_template.content.push.baidu.image_icon_url #=> String
|
|
4444
|
+
# resp.message_template.content.push.baidu.small_image_icon_url #=> String
|
|
4445
|
+
# resp.message_template.content.push.baidu.raw_content.content #=> String
|
|
4038
4446
|
# resp.message_template.description #=> String
|
|
4039
4447
|
# resp.message_template.language #=> String
|
|
4448
|
+
# resp.message_template.source_configuration_summary.whats_app.business_account_id #=> String
|
|
4449
|
+
# resp.message_template.source_configuration_summary.whats_app.template_id #=> String
|
|
4450
|
+
# resp.message_template.source_configuration_summary.whats_app.name #=> String
|
|
4451
|
+
# resp.message_template.source_configuration_summary.whats_app.language #=> String
|
|
4452
|
+
# resp.message_template.source_configuration_summary.whats_app.components #=> Array
|
|
4453
|
+
# resp.message_template.source_configuration_summary.whats_app.components[0] #=> String
|
|
4454
|
+
# resp.message_template.source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
|
|
4455
|
+
# resp.message_template.source_configuration_summary.whats_app.status_reason #=> String
|
|
4040
4456
|
# resp.message_template.grouping_configuration.criteria #=> String
|
|
4041
4457
|
# resp.message_template.grouping_configuration.values #=> Array
|
|
4042
4458
|
# resp.message_template.grouping_configuration.values[0] #=> String
|
|
@@ -4151,6 +4567,7 @@ module Aws::QConnect
|
|
|
4151
4567
|
# * {Types::GetNextMessageResponse#conversation_state #conversation_state} => Types::ConversationState
|
|
4152
4568
|
# * {Types::GetNextMessageResponse#next_message_token #next_message_token} => String
|
|
4153
4569
|
# * {Types::GetNextMessageResponse#conversation_session_data #conversation_session_data} => Array<Types::RuntimeSessionData>
|
|
4570
|
+
# * {Types::GetNextMessageResponse#chunked_response_terminated #chunked_response_terminated} => Boolean
|
|
4154
4571
|
#
|
|
4155
4572
|
# @example Request syntax with placeholder values
|
|
4156
4573
|
#
|
|
@@ -4164,6 +4581,17 @@ module Aws::QConnect
|
|
|
4164
4581
|
#
|
|
4165
4582
|
# resp.type #=> String, one of "TEXT"
|
|
4166
4583
|
# resp.response.value.text.value #=> String
|
|
4584
|
+
# resp.response.value.text.citations #=> Array
|
|
4585
|
+
# resp.response.value.text.citations[0].content_id #=> String
|
|
4586
|
+
# resp.response.value.text.citations[0].title #=> String
|
|
4587
|
+
# resp.response.value.text.citations[0].knowledge_base_id #=> String
|
|
4588
|
+
# resp.response.value.text.citations[0].citation_span.begin_offset_inclusive #=> Integer
|
|
4589
|
+
# resp.response.value.text.citations[0].citation_span.end_offset_exclusive #=> Integer
|
|
4590
|
+
# resp.response.value.text.citations[0].source_url #=> String
|
|
4591
|
+
# resp.response.value.text.citations[0].reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
4592
|
+
# resp.response.value.text.ai_guardrail_assessment.blocked #=> Boolean
|
|
4593
|
+
# resp.response.value.tool_use_result.tool_use_id #=> String
|
|
4594
|
+
# resp.response.value.tool_use_result.tool_name #=> String
|
|
4167
4595
|
# resp.response.message_id #=> String
|
|
4168
4596
|
# resp.response.participant #=> String, one of "CUSTOMER", "AGENT", "BOT"
|
|
4169
4597
|
# resp.response.timestamp #=> Time
|
|
@@ -4174,6 +4602,7 @@ module Aws::QConnect
|
|
|
4174
4602
|
# resp.conversation_session_data #=> Array
|
|
4175
4603
|
# resp.conversation_session_data[0].key #=> String
|
|
4176
4604
|
# resp.conversation_session_data[0].value.string_value #=> String
|
|
4605
|
+
# resp.chunked_response_terminated #=> Boolean
|
|
4177
4606
|
#
|
|
4178
4607
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/GetNextMessage AWS API Documentation
|
|
4179
4608
|
#
|
|
@@ -4281,6 +4710,9 @@ module Aws::QConnect
|
|
|
4281
4710
|
# previous response in the next request to retrieve the next set of
|
|
4282
4711
|
# chunks.
|
|
4283
4712
|
#
|
|
4713
|
+
# @option params [String] :recommendation_type
|
|
4714
|
+
# The type of recommendation being requested.
|
|
4715
|
+
#
|
|
4284
4716
|
# @return [Types::GetRecommendationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4285
4717
|
#
|
|
4286
4718
|
# * {Types::GetRecommendationsResponse#recommendations #recommendations} => Array<Types::RecommendationData>
|
|
@@ -4294,6 +4726,7 @@ module Aws::QConnect
|
|
|
4294
4726
|
# max_results: 1,
|
|
4295
4727
|
# wait_time_seconds: 1,
|
|
4296
4728
|
# next_chunk_token: "NextToken",
|
|
4729
|
+
# recommendation_type: "KNOWLEDGE_CONTENT", # accepts KNOWLEDGE_CONTENT, GENERATIVE_RESPONSE, GENERATIVE_ANSWER, DETECTED_INTENT, GENERATIVE_ANSWER_CHUNK, BLOCKED_GENERATIVE_ANSWER_CHUNK, INTENT_ANSWER_CHUNK, BLOCKED_INTENT_ANSWER_CHUNK, EMAIL_RESPONSE_CHUNK, EMAIL_OVERVIEW_CHUNK, EMAIL_GENERATIVE_ANSWER_CHUNK, CASE_SUMMARIZATION_CHUNK, BLOCKED_CASE_SUMMARIZATION_CHUNK, SUGGESTED_MESSAGE, NOTES_CHUNK, BLOCKED_NOTES_CHUNK
|
|
4297
4730
|
# })
|
|
4298
4731
|
#
|
|
4299
4732
|
# @example Response structure
|
|
@@ -4305,7 +4738,7 @@ module Aws::QConnect
|
|
|
4305
4738
|
# resp.recommendations[0].document.content_reference.content_arn #=> String
|
|
4306
4739
|
# resp.recommendations[0].document.content_reference.content_id #=> String
|
|
4307
4740
|
# resp.recommendations[0].document.content_reference.source_url #=> String
|
|
4308
|
-
# resp.recommendations[0].document.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE"
|
|
4741
|
+
# resp.recommendations[0].document.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
4309
4742
|
# resp.recommendations[0].document.title.text #=> String
|
|
4310
4743
|
# resp.recommendations[0].document.title.highlights #=> Array
|
|
4311
4744
|
# resp.recommendations[0].document.title.highlights[0].begin_offset_inclusive #=> Integer
|
|
@@ -4316,15 +4749,17 @@ module Aws::QConnect
|
|
|
4316
4749
|
# resp.recommendations[0].document.excerpt.highlights[0].end_offset_exclusive #=> Integer
|
|
4317
4750
|
# resp.recommendations[0].relevance_score #=> Float
|
|
4318
4751
|
# resp.recommendations[0].relevance_level #=> String, one of "HIGH", "MEDIUM", "LOW"
|
|
4319
|
-
# resp.recommendations[0].type #=> String, one of "KNOWLEDGE_CONTENT", "GENERATIVE_RESPONSE", "GENERATIVE_ANSWER", "DETECTED_INTENT", "GENERATIVE_ANSWER_CHUNK", "BLOCKED_GENERATIVE_ANSWER_CHUNK", "INTENT_ANSWER_CHUNK", "BLOCKED_INTENT_ANSWER_CHUNK", "EMAIL_RESPONSE_CHUNK", "EMAIL_OVERVIEW_CHUNK", "EMAIL_GENERATIVE_ANSWER_CHUNK"
|
|
4752
|
+
# resp.recommendations[0].type #=> String, one of "KNOWLEDGE_CONTENT", "GENERATIVE_RESPONSE", "GENERATIVE_ANSWER", "DETECTED_INTENT", "GENERATIVE_ANSWER_CHUNK", "BLOCKED_GENERATIVE_ANSWER_CHUNK", "INTENT_ANSWER_CHUNK", "BLOCKED_INTENT_ANSWER_CHUNK", "EMAIL_RESPONSE_CHUNK", "EMAIL_OVERVIEW_CHUNK", "EMAIL_GENERATIVE_ANSWER_CHUNK", "CASE_SUMMARIZATION_CHUNK", "BLOCKED_CASE_SUMMARIZATION_CHUNK", "SUGGESTED_MESSAGE", "NOTES_CHUNK", "BLOCKED_NOTES_CHUNK"
|
|
4320
4753
|
# resp.recommendations[0].data.reference.content_reference.knowledge_base_arn #=> String
|
|
4321
4754
|
# resp.recommendations[0].data.reference.content_reference.knowledge_base_id #=> String
|
|
4322
4755
|
# resp.recommendations[0].data.reference.content_reference.content_arn #=> String
|
|
4323
4756
|
# resp.recommendations[0].data.reference.content_reference.content_id #=> String
|
|
4324
4757
|
# resp.recommendations[0].data.reference.content_reference.source_url #=> String
|
|
4325
|
-
# resp.recommendations[0].data.reference.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE"
|
|
4758
|
+
# resp.recommendations[0].data.reference.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
4326
4759
|
# resp.recommendations[0].data.reference.generative_reference.model_id #=> String
|
|
4327
4760
|
# resp.recommendations[0].data.reference.generative_reference.generation_id #=> String
|
|
4761
|
+
# resp.recommendations[0].data.reference.suggested_message_reference.ai_agent_id #=> String
|
|
4762
|
+
# resp.recommendations[0].data.reference.suggested_message_reference.ai_agent_arn #=> String
|
|
4328
4763
|
# resp.recommendations[0].data.details.content_data.text_data.title.text #=> String
|
|
4329
4764
|
# resp.recommendations[0].data.details.content_data.text_data.title.highlights #=> Array
|
|
4330
4765
|
# resp.recommendations[0].data.details.content_data.text_data.title.highlights[0].begin_offset_inclusive #=> Integer
|
|
@@ -4342,6 +4777,7 @@ module Aws::QConnect
|
|
|
4342
4777
|
# resp.recommendations[0].data.details.generative_data.ranking_data.relevance_level #=> String, one of "HIGH", "MEDIUM", "LOW"
|
|
4343
4778
|
# resp.recommendations[0].data.details.intent_detected_data.intent #=> String
|
|
4344
4779
|
# resp.recommendations[0].data.details.intent_detected_data.intent_id #=> String
|
|
4780
|
+
# resp.recommendations[0].data.details.intent_detected_data.relevance_level #=> String, one of "HIGH", "MEDIUM", "LOW"
|
|
4345
4781
|
# resp.recommendations[0].data.details.source_content_data.id #=> String
|
|
4346
4782
|
# resp.recommendations[0].data.details.source_content_data.type #=> String, one of "KNOWLEDGE_CONTENT"
|
|
4347
4783
|
# resp.recommendations[0].data.details.source_content_data.text_data.title.text #=> String
|
|
@@ -4368,6 +4804,12 @@ module Aws::QConnect
|
|
|
4368
4804
|
# resp.recommendations[0].data.details.email_generative_answer_chunk_data.references #=> Array
|
|
4369
4805
|
# resp.recommendations[0].data.details.email_generative_answer_chunk_data.references[0] #=> Types::DataSummary
|
|
4370
4806
|
# resp.recommendations[0].data.details.email_generative_answer_chunk_data.next_chunk_token #=> String
|
|
4807
|
+
# resp.recommendations[0].data.details.case_summarization_chunk_data.completion #=> String
|
|
4808
|
+
# resp.recommendations[0].data.details.case_summarization_chunk_data.next_chunk_token #=> String
|
|
4809
|
+
# resp.recommendations[0].data.details.suggested_message_data.message_text #=> String
|
|
4810
|
+
# resp.recommendations[0].data.details.notes_data.completion #=> String
|
|
4811
|
+
# resp.recommendations[0].data.details.notes_chunk_data.completion #=> String
|
|
4812
|
+
# resp.recommendations[0].data.details.notes_chunk_data.next_chunk_token #=> String
|
|
4371
4813
|
# resp.triggers #=> Array
|
|
4372
4814
|
# resp.triggers[0].id #=> String
|
|
4373
4815
|
# resp.triggers[0].type #=> String, one of "QUERY", "GENERATIVE"
|
|
@@ -4429,6 +4871,9 @@ module Aws::QConnect
|
|
|
4429
4871
|
# resp.session.ai_agent_configuration #=> Hash
|
|
4430
4872
|
# resp.session.ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
4431
4873
|
# resp.session.origin #=> String, one of "SYSTEM", "CUSTOMER"
|
|
4874
|
+
# resp.session.orchestrator_configuration_list #=> Array
|
|
4875
|
+
# resp.session.orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
4876
|
+
# resp.session.orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
4432
4877
|
#
|
|
4433
4878
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/GetSession AWS API Documentation
|
|
4434
4879
|
#
|
|
@@ -4486,7 +4931,7 @@ module Aws::QConnect
|
|
|
4486
4931
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.assistant_id #=> String
|
|
4487
4932
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.assistant_arn #=> String
|
|
4488
4933
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.ai_agent_id #=> String
|
|
4489
|
-
# resp.ai_agent_version_summaries[0].ai_agent_summary.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER"
|
|
4934
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
4490
4935
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.ai_agent_arn #=> String
|
|
4491
4936
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.modified_time #=> Time
|
|
4492
4937
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -4530,6 +4975,8 @@ module Aws::QConnect
|
|
|
4530
4975
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
4531
4976
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
4532
4977
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.answer_recommendation_ai_agent_configuration.locale #=> String
|
|
4978
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.answer_recommendation_ai_agent_configuration.suggested_messages #=> Array
|
|
4979
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.answer_recommendation_ai_agent_configuration.suggested_messages[0] #=> String
|
|
4533
4980
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.self_service_ai_agent_configuration.self_service_pre_processing_ai_prompt_id #=> String
|
|
4534
4981
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.self_service_ai_agent_configuration.self_service_answer_generation_ai_prompt_id #=> String
|
|
4535
4982
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.self_service_ai_agent_configuration.self_service_ai_guardrail_id #=> String
|
|
@@ -4589,6 +5036,36 @@ module Aws::QConnect
|
|
|
4589
5036
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.content_tag_filter.or_conditions[0].tag_condition.value #=> String
|
|
4590
5037
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
4591
5038
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
5039
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.orchestration_ai_prompt_id #=> String
|
|
5040
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.orchestration_ai_guardrail_id #=> String
|
|
5041
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations #=> Array
|
|
5042
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_name #=> String
|
|
5043
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_type #=> String, one of "MODEL_CONTEXT_PROTOCOL", "RETURN_TO_CONTROL", "CONSTANT"
|
|
5044
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].title #=> String
|
|
5045
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_id #=> String
|
|
5046
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].description #=> String
|
|
5047
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.instruction #=> String
|
|
5048
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples #=> Array
|
|
5049
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples[0] #=> String
|
|
5050
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values #=> Array
|
|
5051
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].json_path #=> String
|
|
5052
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.type #=> String, one of "STRING", "NUMBER", "JSON_STRING"
|
|
5053
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.value #=> String
|
|
5054
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters #=> Array
|
|
5055
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].json_path #=> String
|
|
5056
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.output_variable_name_override #=> String
|
|
5057
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.session_data_namespace #=> String
|
|
5058
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
5059
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
5060
|
+
# 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
|
|
5061
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
5062
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
5063
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
5064
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
5065
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
5066
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_prompt_id #=> String
|
|
5067
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_guardrail_id #=> String
|
|
5068
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.case_summarization_ai_agent_configuration.locale #=> String
|
|
4592
5069
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.origin #=> String, one of "SYSTEM", "CUSTOMER"
|
|
4593
5070
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.description #=> String
|
|
4594
5071
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETED"
|
|
@@ -4648,7 +5125,7 @@ module Aws::QConnect
|
|
|
4648
5125
|
# resp.ai_agent_summaries[0].assistant_id #=> String
|
|
4649
5126
|
# resp.ai_agent_summaries[0].assistant_arn #=> String
|
|
4650
5127
|
# resp.ai_agent_summaries[0].ai_agent_id #=> String
|
|
4651
|
-
# resp.ai_agent_summaries[0].type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER"
|
|
5128
|
+
# resp.ai_agent_summaries[0].type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
4652
5129
|
# resp.ai_agent_summaries[0].ai_agent_arn #=> String
|
|
4653
5130
|
# resp.ai_agent_summaries[0].modified_time #=> Time
|
|
4654
5131
|
# resp.ai_agent_summaries[0].visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -4692,6 +5169,8 @@ module Aws::QConnect
|
|
|
4692
5169
|
# resp.ai_agent_summaries[0].configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
4693
5170
|
# resp.ai_agent_summaries[0].configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
4694
5171
|
# resp.ai_agent_summaries[0].configuration.answer_recommendation_ai_agent_configuration.locale #=> String
|
|
5172
|
+
# resp.ai_agent_summaries[0].configuration.answer_recommendation_ai_agent_configuration.suggested_messages #=> Array
|
|
5173
|
+
# resp.ai_agent_summaries[0].configuration.answer_recommendation_ai_agent_configuration.suggested_messages[0] #=> String
|
|
4695
5174
|
# resp.ai_agent_summaries[0].configuration.self_service_ai_agent_configuration.self_service_pre_processing_ai_prompt_id #=> String
|
|
4696
5175
|
# resp.ai_agent_summaries[0].configuration.self_service_ai_agent_configuration.self_service_answer_generation_ai_prompt_id #=> String
|
|
4697
5176
|
# resp.ai_agent_summaries[0].configuration.self_service_ai_agent_configuration.self_service_ai_guardrail_id #=> String
|
|
@@ -4751,6 +5230,36 @@ module Aws::QConnect
|
|
|
4751
5230
|
# resp.ai_agent_summaries[0].configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.content_tag_filter.or_conditions[0].tag_condition.value #=> String
|
|
4752
5231
|
# resp.ai_agent_summaries[0].configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
4753
5232
|
# resp.ai_agent_summaries[0].configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
5233
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.orchestration_ai_prompt_id #=> String
|
|
5234
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.orchestration_ai_guardrail_id #=> String
|
|
5235
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations #=> Array
|
|
5236
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_name #=> String
|
|
5237
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_type #=> String, one of "MODEL_CONTEXT_PROTOCOL", "RETURN_TO_CONTROL", "CONSTANT"
|
|
5238
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].title #=> String
|
|
5239
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_id #=> String
|
|
5240
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].description #=> String
|
|
5241
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.instruction #=> String
|
|
5242
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples #=> Array
|
|
5243
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples[0] #=> String
|
|
5244
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values #=> Array
|
|
5245
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].json_path #=> String
|
|
5246
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.type #=> String, one of "STRING", "NUMBER", "JSON_STRING"
|
|
5247
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.value #=> String
|
|
5248
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters #=> Array
|
|
5249
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].json_path #=> String
|
|
5250
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.output_variable_name_override #=> String
|
|
5251
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.session_data_namespace #=> String
|
|
5252
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
5253
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
5254
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
5255
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
5256
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
5257
|
+
# resp.ai_agent_summaries[0].configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
5258
|
+
# resp.ai_agent_summaries[0].configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
5259
|
+
# resp.ai_agent_summaries[0].configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
5260
|
+
# resp.ai_agent_summaries[0].configuration.case_summarization_ai_agent_configuration.case_summarization_ai_prompt_id #=> String
|
|
5261
|
+
# resp.ai_agent_summaries[0].configuration.case_summarization_ai_agent_configuration.case_summarization_ai_guardrail_id #=> String
|
|
5262
|
+
# resp.ai_agent_summaries[0].configuration.case_summarization_ai_agent_configuration.locale #=> String
|
|
4754
5263
|
# resp.ai_agent_summaries[0].origin #=> String, one of "SYSTEM", "CUSTOMER"
|
|
4755
5264
|
# resp.ai_agent_summaries[0].description #=> String
|
|
4756
5265
|
# resp.ai_agent_summaries[0].status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETED"
|
|
@@ -4929,7 +5438,7 @@ module Aws::QConnect
|
|
|
4929
5438
|
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.assistant_id #=> String
|
|
4930
5439
|
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.assistant_arn #=> String
|
|
4931
5440
|
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.ai_prompt_id #=> String
|
|
4932
|
-
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION"
|
|
5441
|
+
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
4933
5442
|
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.ai_prompt_arn #=> String
|
|
4934
5443
|
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.modified_time #=> Time
|
|
4935
5444
|
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.template_type #=> String, one of "TEXT"
|
|
@@ -4995,7 +5504,7 @@ module Aws::QConnect
|
|
|
4995
5504
|
# resp.ai_prompt_summaries[0].assistant_id #=> String
|
|
4996
5505
|
# resp.ai_prompt_summaries[0].assistant_arn #=> String
|
|
4997
5506
|
# resp.ai_prompt_summaries[0].ai_prompt_id #=> String
|
|
4998
|
-
# resp.ai_prompt_summaries[0].type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION"
|
|
5507
|
+
# resp.ai_prompt_summaries[0].type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
4999
5508
|
# resp.ai_prompt_summaries[0].ai_prompt_arn #=> String
|
|
5000
5509
|
# resp.ai_prompt_summaries[0].modified_time #=> Time
|
|
5001
5510
|
# resp.ai_prompt_summaries[0].template_type #=> String, one of "TEXT"
|
|
@@ -5054,9 +5563,11 @@ module Aws::QConnect
|
|
|
5054
5563
|
# resp.assistant_association_summaries[0].assistant_association_arn #=> String
|
|
5055
5564
|
# resp.assistant_association_summaries[0].assistant_id #=> String
|
|
5056
5565
|
# resp.assistant_association_summaries[0].assistant_arn #=> String
|
|
5057
|
-
# resp.assistant_association_summaries[0].association_type #=> String, one of "KNOWLEDGE_BASE"
|
|
5566
|
+
# resp.assistant_association_summaries[0].association_type #=> String, one of "KNOWLEDGE_BASE", "EXTERNAL_BEDROCK_KNOWLEDGE_BASE"
|
|
5058
5567
|
# resp.assistant_association_summaries[0].association_data.knowledge_base_association.knowledge_base_id #=> String
|
|
5059
5568
|
# resp.assistant_association_summaries[0].association_data.knowledge_base_association.knowledge_base_arn #=> String
|
|
5569
|
+
# resp.assistant_association_summaries[0].association_data.external_bedrock_knowledge_base_config.bedrock_knowledge_base_arn #=> String
|
|
5570
|
+
# resp.assistant_association_summaries[0].association_data.external_bedrock_knowledge_base_config.access_role_arn #=> String
|
|
5060
5571
|
# resp.assistant_association_summaries[0].tags #=> Hash
|
|
5061
5572
|
# resp.assistant_association_summaries[0].tags["TagKey"] #=> String
|
|
5062
5573
|
# resp.next_token #=> String
|
|
@@ -5110,6 +5621,9 @@ module Aws::QConnect
|
|
|
5110
5621
|
# resp.assistant_summaries[0].capability_configuration.type #=> String, one of "V1", "V2"
|
|
5111
5622
|
# resp.assistant_summaries[0].ai_agent_configuration #=> Hash
|
|
5112
5623
|
# resp.assistant_summaries[0].ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
5624
|
+
# resp.assistant_summaries[0].orchestrator_configuration_list #=> Array
|
|
5625
|
+
# resp.assistant_summaries[0].orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
5626
|
+
# resp.assistant_summaries[0].orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
5113
5627
|
# resp.next_token #=> String
|
|
5114
5628
|
#
|
|
5115
5629
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/ListAssistants AWS API Documentation
|
|
@@ -5411,7 +5925,8 @@ module Aws::QConnect
|
|
|
5411
5925
|
# resp.message_template_version_summaries[0].knowledge_base_arn #=> String
|
|
5412
5926
|
# resp.message_template_version_summaries[0].knowledge_base_id #=> String
|
|
5413
5927
|
# resp.message_template_version_summaries[0].name #=> String
|
|
5414
|
-
# resp.message_template_version_summaries[0].
|
|
5928
|
+
# resp.message_template_version_summaries[0].channel #=> String
|
|
5929
|
+
# resp.message_template_version_summaries[0].channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
|
|
5415
5930
|
# resp.message_template_version_summaries[0].is_active #=> Boolean
|
|
5416
5931
|
# resp.message_template_version_summaries[0].version_number #=> Integer
|
|
5417
5932
|
# resp.next_token #=> String
|
|
@@ -5463,10 +5978,15 @@ module Aws::QConnect
|
|
|
5463
5978
|
# resp.message_template_summaries[0].knowledge_base_arn #=> String
|
|
5464
5979
|
# resp.message_template_summaries[0].knowledge_base_id #=> String
|
|
5465
5980
|
# resp.message_template_summaries[0].name #=> String
|
|
5466
|
-
# resp.message_template_summaries[0].
|
|
5981
|
+
# resp.message_template_summaries[0].channel #=> String
|
|
5982
|
+
# resp.message_template_summaries[0].channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
|
|
5467
5983
|
# resp.message_template_summaries[0].created_time #=> Time
|
|
5468
5984
|
# resp.message_template_summaries[0].last_modified_time #=> Time
|
|
5469
5985
|
# resp.message_template_summaries[0].last_modified_by #=> String
|
|
5986
|
+
# resp.message_template_summaries[0].source_configuration.whats_app.business_account_id #=> String
|
|
5987
|
+
# resp.message_template_summaries[0].source_configuration.whats_app.template_id #=> String
|
|
5988
|
+
# resp.message_template_summaries[0].source_configuration.whats_app.components #=> Array
|
|
5989
|
+
# resp.message_template_summaries[0].source_configuration.whats_app.components[0] #=> String
|
|
5470
5990
|
# resp.message_template_summaries[0].active_version_number #=> Integer
|
|
5471
5991
|
# resp.message_template_summaries[0].description #=> String
|
|
5472
5992
|
# resp.message_template_summaries[0].tags #=> Hash
|
|
@@ -5498,6 +6018,9 @@ module Aws::QConnect
|
|
|
5498
6018
|
# @option params [Integer] :max_results
|
|
5499
6019
|
# The maximum number of results to return per page.
|
|
5500
6020
|
#
|
|
6021
|
+
# @option params [String] :filter
|
|
6022
|
+
# The filter criteria for listing messages.
|
|
6023
|
+
#
|
|
5501
6024
|
# @return [Types::ListMessagesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5502
6025
|
#
|
|
5503
6026
|
# * {Types::ListMessagesResponse#messages #messages} => Array<Types::MessageOutput>
|
|
@@ -5512,12 +6035,24 @@ module Aws::QConnect
|
|
|
5512
6035
|
# session_id: "UuidOrArn", # required
|
|
5513
6036
|
# next_token: "NextToken",
|
|
5514
6037
|
# max_results: 1,
|
|
6038
|
+
# filter: "ALL", # accepts ALL, TEXT_ONLY
|
|
5515
6039
|
# })
|
|
5516
6040
|
#
|
|
5517
6041
|
# @example Response structure
|
|
5518
6042
|
#
|
|
5519
6043
|
# resp.messages #=> Array
|
|
5520
6044
|
# resp.messages[0].value.text.value #=> String
|
|
6045
|
+
# resp.messages[0].value.text.citations #=> Array
|
|
6046
|
+
# resp.messages[0].value.text.citations[0].content_id #=> String
|
|
6047
|
+
# resp.messages[0].value.text.citations[0].title #=> String
|
|
6048
|
+
# resp.messages[0].value.text.citations[0].knowledge_base_id #=> String
|
|
6049
|
+
# resp.messages[0].value.text.citations[0].citation_span.begin_offset_inclusive #=> Integer
|
|
6050
|
+
# resp.messages[0].value.text.citations[0].citation_span.end_offset_exclusive #=> Integer
|
|
6051
|
+
# resp.messages[0].value.text.citations[0].source_url #=> String
|
|
6052
|
+
# resp.messages[0].value.text.citations[0].reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
6053
|
+
# resp.messages[0].value.text.ai_guardrail_assessment.blocked #=> Boolean
|
|
6054
|
+
# resp.messages[0].value.tool_use_result.tool_use_id #=> String
|
|
6055
|
+
# resp.messages[0].value.tool_use_result.tool_name #=> String
|
|
5521
6056
|
# resp.messages[0].message_id #=> String
|
|
5522
6057
|
# resp.messages[0].participant #=> String, one of "CUSTOMER", "AGENT", "BOT"
|
|
5523
6058
|
# resp.messages[0].timestamp #=> Time
|
|
@@ -5591,6 +6126,141 @@ module Aws::QConnect
|
|
|
5591
6126
|
req.send_request(options)
|
|
5592
6127
|
end
|
|
5593
6128
|
|
|
6129
|
+
# Retrieves AI agent execution traces for a session, providing granular
|
|
6130
|
+
# visibility into agent orchestration flows, LLM interactions, and tool
|
|
6131
|
+
# invocations.
|
|
6132
|
+
#
|
|
6133
|
+
# @option params [required, String] :assistant_id
|
|
6134
|
+
# UUID or ARN of the Connect AI Assistant resource
|
|
6135
|
+
#
|
|
6136
|
+
# @option params [required, String] :session_id
|
|
6137
|
+
# UUID or ARN of the Connect AI Session resource
|
|
6138
|
+
#
|
|
6139
|
+
# @option params [String] :next_token
|
|
6140
|
+
# Pagination token for retrieving the next page of results
|
|
6141
|
+
#
|
|
6142
|
+
# @option params [Integer] :max_results
|
|
6143
|
+
# Maximum number of spans to return per page
|
|
6144
|
+
#
|
|
6145
|
+
# @return [Types::ListSpansResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6146
|
+
#
|
|
6147
|
+
# * {Types::ListSpansResponse#spans #spans} => Array<Types::Span>
|
|
6148
|
+
# * {Types::ListSpansResponse#next_token #next_token} => String
|
|
6149
|
+
#
|
|
6150
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
6151
|
+
#
|
|
6152
|
+
# @example Request syntax with placeholder values
|
|
6153
|
+
#
|
|
6154
|
+
# resp = client.list_spans({
|
|
6155
|
+
# assistant_id: "UuidOrArn", # required
|
|
6156
|
+
# session_id: "UuidOrArn", # required
|
|
6157
|
+
# next_token: "NextToken",
|
|
6158
|
+
# max_results: 1,
|
|
6159
|
+
# })
|
|
6160
|
+
#
|
|
6161
|
+
# @example Response structure
|
|
6162
|
+
#
|
|
6163
|
+
# resp.spans #=> Array
|
|
6164
|
+
# resp.spans[0].span_id #=> String
|
|
6165
|
+
# resp.spans[0].assistant_id #=> String
|
|
6166
|
+
# resp.spans[0].session_id #=> String
|
|
6167
|
+
# resp.spans[0].parent_span_id #=> String
|
|
6168
|
+
# resp.spans[0].span_name #=> String
|
|
6169
|
+
# resp.spans[0].span_type #=> String, one of "CLIENT", "SERVER", "INTERNAL"
|
|
6170
|
+
# resp.spans[0].start_timestamp #=> Time
|
|
6171
|
+
# resp.spans[0].end_timestamp #=> Time
|
|
6172
|
+
# resp.spans[0].status #=> String, one of "OK", "ERROR", "TIMEOUT"
|
|
6173
|
+
# resp.spans[0].request_id #=> String
|
|
6174
|
+
# resp.spans[0].attributes.operation_name #=> String
|
|
6175
|
+
# resp.spans[0].attributes.provider_name #=> String
|
|
6176
|
+
# resp.spans[0].attributes.error_type #=> String
|
|
6177
|
+
# resp.spans[0].attributes.agent_id #=> String
|
|
6178
|
+
# resp.spans[0].attributes.instance_arn #=> String
|
|
6179
|
+
# resp.spans[0].attributes.contact_id #=> String
|
|
6180
|
+
# resp.spans[0].attributes.initial_contact_id #=> String
|
|
6181
|
+
# resp.spans[0].attributes.session_name #=> String
|
|
6182
|
+
# resp.spans[0].attributes.ai_agent_arn #=> String
|
|
6183
|
+
# resp.spans[0].attributes.ai_agent_type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
6184
|
+
# resp.spans[0].attributes.ai_agent_name #=> String
|
|
6185
|
+
# resp.spans[0].attributes.ai_agent_id #=> String
|
|
6186
|
+
# resp.spans[0].attributes.ai_agent_version #=> Integer
|
|
6187
|
+
# resp.spans[0].attributes.ai_agent_invoker #=> String
|
|
6188
|
+
# resp.spans[0].attributes.ai_agent_orchestrator_use_case #=> String
|
|
6189
|
+
# resp.spans[0].attributes.request_model #=> String
|
|
6190
|
+
# resp.spans[0].attributes.request_max_tokens #=> Integer
|
|
6191
|
+
# resp.spans[0].attributes.temperature #=> Float
|
|
6192
|
+
# resp.spans[0].attributes.top_p #=> Float
|
|
6193
|
+
# resp.spans[0].attributes.response_model #=> String
|
|
6194
|
+
# resp.spans[0].attributes.response_finish_reasons #=> Array
|
|
6195
|
+
# resp.spans[0].attributes.response_finish_reasons[0] #=> String
|
|
6196
|
+
# resp.spans[0].attributes.usage_input_tokens #=> Integer
|
|
6197
|
+
# resp.spans[0].attributes.usage_output_tokens #=> Integer
|
|
6198
|
+
# resp.spans[0].attributes.usage_total_tokens #=> Integer
|
|
6199
|
+
# resp.spans[0].attributes.cache_read_input_tokens #=> Integer
|
|
6200
|
+
# resp.spans[0].attributes.cache_write_input_tokens #=> Integer
|
|
6201
|
+
# resp.spans[0].attributes.input_messages #=> Array
|
|
6202
|
+
# resp.spans[0].attributes.input_messages[0].message_id #=> String
|
|
6203
|
+
# resp.spans[0].attributes.input_messages[0].participant #=> String, one of "CUSTOMER", "AGENT", "BOT"
|
|
6204
|
+
# resp.spans[0].attributes.input_messages[0].timestamp #=> Time
|
|
6205
|
+
# resp.spans[0].attributes.input_messages[0].values #=> Array
|
|
6206
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.value #=> String
|
|
6207
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.citations #=> Array
|
|
6208
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.citations[0].content_id #=> String
|
|
6209
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.citations[0].title #=> String
|
|
6210
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.citations[0].knowledge_base_id #=> String
|
|
6211
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.citations[0].knowledge_base_arn #=> String
|
|
6212
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.ai_guardrail_assessment.blocked #=> Boolean
|
|
6213
|
+
# resp.spans[0].attributes.input_messages[0].values[0].tool_use.tool_use_id #=> String
|
|
6214
|
+
# resp.spans[0].attributes.input_messages[0].values[0].tool_use.name #=> String
|
|
6215
|
+
# resp.spans[0].attributes.input_messages[0].values[0].tool_result.tool_use_id #=> String
|
|
6216
|
+
# resp.spans[0].attributes.input_messages[0].values[0].tool_result.values #=> Types::SpanMessageValueList
|
|
6217
|
+
# resp.spans[0].attributes.input_messages[0].values[0].tool_result.error #=> String
|
|
6218
|
+
# resp.spans[0].attributes.output_messages #=> Array
|
|
6219
|
+
# resp.spans[0].attributes.output_messages[0].message_id #=> String
|
|
6220
|
+
# resp.spans[0].attributes.output_messages[0].participant #=> String, one of "CUSTOMER", "AGENT", "BOT"
|
|
6221
|
+
# resp.spans[0].attributes.output_messages[0].timestamp #=> Time
|
|
6222
|
+
# resp.spans[0].attributes.output_messages[0].values #=> Array
|
|
6223
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.value #=> String
|
|
6224
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.citations #=> Array
|
|
6225
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.citations[0].content_id #=> String
|
|
6226
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.citations[0].title #=> String
|
|
6227
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.citations[0].knowledge_base_id #=> String
|
|
6228
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.citations[0].knowledge_base_arn #=> String
|
|
6229
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.ai_guardrail_assessment.blocked #=> Boolean
|
|
6230
|
+
# resp.spans[0].attributes.output_messages[0].values[0].tool_use.tool_use_id #=> String
|
|
6231
|
+
# resp.spans[0].attributes.output_messages[0].values[0].tool_use.name #=> String
|
|
6232
|
+
# resp.spans[0].attributes.output_messages[0].values[0].tool_result.tool_use_id #=> String
|
|
6233
|
+
# resp.spans[0].attributes.output_messages[0].values[0].tool_result.values #=> Types::SpanMessageValueList
|
|
6234
|
+
# resp.spans[0].attributes.output_messages[0].values[0].tool_result.error #=> String
|
|
6235
|
+
# resp.spans[0].attributes.system_instructions #=> Array
|
|
6236
|
+
# resp.spans[0].attributes.system_instructions[0].text.value #=> String
|
|
6237
|
+
# resp.spans[0].attributes.system_instructions[0].text.citations #=> Array
|
|
6238
|
+
# resp.spans[0].attributes.system_instructions[0].text.citations[0].content_id #=> String
|
|
6239
|
+
# resp.spans[0].attributes.system_instructions[0].text.citations[0].title #=> String
|
|
6240
|
+
# resp.spans[0].attributes.system_instructions[0].text.citations[0].knowledge_base_id #=> String
|
|
6241
|
+
# resp.spans[0].attributes.system_instructions[0].text.citations[0].knowledge_base_arn #=> String
|
|
6242
|
+
# resp.spans[0].attributes.system_instructions[0].text.ai_guardrail_assessment.blocked #=> Boolean
|
|
6243
|
+
# resp.spans[0].attributes.system_instructions[0].tool_use.tool_use_id #=> String
|
|
6244
|
+
# resp.spans[0].attributes.system_instructions[0].tool_use.name #=> String
|
|
6245
|
+
# resp.spans[0].attributes.system_instructions[0].tool_result.tool_use_id #=> String
|
|
6246
|
+
# resp.spans[0].attributes.system_instructions[0].tool_result.values #=> Types::SpanMessageValueList
|
|
6247
|
+
# resp.spans[0].attributes.system_instructions[0].tool_result.error #=> String
|
|
6248
|
+
# resp.spans[0].attributes.prompt_arn #=> String
|
|
6249
|
+
# resp.spans[0].attributes.prompt_id #=> String
|
|
6250
|
+
# resp.spans[0].attributes.prompt_type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
6251
|
+
# resp.spans[0].attributes.prompt_name #=> String
|
|
6252
|
+
# resp.spans[0].attributes.prompt_version #=> Integer
|
|
6253
|
+
# resp.next_token #=> String
|
|
6254
|
+
#
|
|
6255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/ListSpans AWS API Documentation
|
|
6256
|
+
#
|
|
6257
|
+
# @overload list_spans(params = {})
|
|
6258
|
+
# @param [Hash] params ({})
|
|
6259
|
+
def list_spans(params = {}, options = {})
|
|
6260
|
+
req = build_request(:list_spans, params)
|
|
6261
|
+
req.send_request(options)
|
|
6262
|
+
end
|
|
6263
|
+
|
|
5594
6264
|
# Lists the tags for the specified resource.
|
|
5595
6265
|
#
|
|
5596
6266
|
# @option params [required, String] :resource_arn
|
|
@@ -5797,6 +6467,9 @@ module Aws::QConnect
|
|
|
5797
6467
|
# intent_input_data: {
|
|
5798
6468
|
# intent_id: "Uuid", # required
|
|
5799
6469
|
# },
|
|
6470
|
+
# case_summarization_input_data: {
|
|
6471
|
+
# case_arn: "CaseArn", # required
|
|
6472
|
+
# },
|
|
5800
6473
|
# },
|
|
5801
6474
|
# override_knowledge_base_search_type: "HYBRID", # accepts HYBRID, SEMANTIC
|
|
5802
6475
|
# })
|
|
@@ -5810,7 +6483,7 @@ module Aws::QConnect
|
|
|
5810
6483
|
# resp.results[0].document.content_reference.content_arn #=> String
|
|
5811
6484
|
# resp.results[0].document.content_reference.content_id #=> String
|
|
5812
6485
|
# resp.results[0].document.content_reference.source_url #=> String
|
|
5813
|
-
# resp.results[0].document.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE"
|
|
6486
|
+
# resp.results[0].document.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
5814
6487
|
# resp.results[0].document.title.text #=> String
|
|
5815
6488
|
# resp.results[0].document.title.highlights #=> Array
|
|
5816
6489
|
# resp.results[0].document.title.highlights[0].begin_offset_inclusive #=> Integer
|
|
@@ -5825,9 +6498,11 @@ module Aws::QConnect
|
|
|
5825
6498
|
# resp.results[0].data.reference.content_reference.content_arn #=> String
|
|
5826
6499
|
# resp.results[0].data.reference.content_reference.content_id #=> String
|
|
5827
6500
|
# resp.results[0].data.reference.content_reference.source_url #=> String
|
|
5828
|
-
# resp.results[0].data.reference.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE"
|
|
6501
|
+
# resp.results[0].data.reference.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
5829
6502
|
# resp.results[0].data.reference.generative_reference.model_id #=> String
|
|
5830
6503
|
# resp.results[0].data.reference.generative_reference.generation_id #=> String
|
|
6504
|
+
# resp.results[0].data.reference.suggested_message_reference.ai_agent_id #=> String
|
|
6505
|
+
# resp.results[0].data.reference.suggested_message_reference.ai_agent_arn #=> String
|
|
5831
6506
|
# resp.results[0].data.details.content_data.text_data.title.text #=> String
|
|
5832
6507
|
# resp.results[0].data.details.content_data.text_data.title.highlights #=> Array
|
|
5833
6508
|
# resp.results[0].data.details.content_data.text_data.title.highlights[0].begin_offset_inclusive #=> Integer
|
|
@@ -5845,6 +6520,7 @@ module Aws::QConnect
|
|
|
5845
6520
|
# resp.results[0].data.details.generative_data.ranking_data.relevance_level #=> String, one of "HIGH", "MEDIUM", "LOW"
|
|
5846
6521
|
# resp.results[0].data.details.intent_detected_data.intent #=> String
|
|
5847
6522
|
# resp.results[0].data.details.intent_detected_data.intent_id #=> String
|
|
6523
|
+
# resp.results[0].data.details.intent_detected_data.relevance_level #=> String, one of "HIGH", "MEDIUM", "LOW"
|
|
5848
6524
|
# resp.results[0].data.details.source_content_data.id #=> String
|
|
5849
6525
|
# resp.results[0].data.details.source_content_data.type #=> String, one of "KNOWLEDGE_CONTENT"
|
|
5850
6526
|
# resp.results[0].data.details.source_content_data.text_data.title.text #=> String
|
|
@@ -5871,7 +6547,13 @@ module Aws::QConnect
|
|
|
5871
6547
|
# resp.results[0].data.details.email_generative_answer_chunk_data.references #=> Array
|
|
5872
6548
|
# resp.results[0].data.details.email_generative_answer_chunk_data.references[0] #=> Types::DataSummary
|
|
5873
6549
|
# resp.results[0].data.details.email_generative_answer_chunk_data.next_chunk_token #=> String
|
|
5874
|
-
# resp.results[0].
|
|
6550
|
+
# resp.results[0].data.details.case_summarization_chunk_data.completion #=> String
|
|
6551
|
+
# resp.results[0].data.details.case_summarization_chunk_data.next_chunk_token #=> String
|
|
6552
|
+
# resp.results[0].data.details.suggested_message_data.message_text #=> String
|
|
6553
|
+
# resp.results[0].data.details.notes_data.completion #=> String
|
|
6554
|
+
# resp.results[0].data.details.notes_chunk_data.completion #=> String
|
|
6555
|
+
# resp.results[0].data.details.notes_chunk_data.next_chunk_token #=> String
|
|
6556
|
+
# resp.results[0].type #=> String, one of "KNOWLEDGE_CONTENT", "INTENT_ANSWER", "GENERATIVE_ANSWER", "GENERATIVE_ANSWER_CHUNK", "BLOCKED_GENERATIVE_ANSWER_CHUNK", "INTENT_ANSWER_CHUNK", "BLOCKED_INTENT_ANSWER_CHUNK", "EMAIL_RESPONSE_CHUNK", "EMAIL_OVERVIEW_CHUNK", "EMAIL_GENERATIVE_ANSWER_CHUNK", "CASE_SUMMARIZATION_CHUNK", "BLOCKED_CASE_SUMMARIZATION_CHUNK", "NOTES", "NOTES_CHUNK", "BLOCKED_NOTES_CHUNK"
|
|
5875
6557
|
# resp.next_token #=> String
|
|
5876
6558
|
#
|
|
5877
6559
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/QueryAssistant AWS API Documentation
|
|
@@ -5894,13 +6576,17 @@ module Aws::QConnect
|
|
|
5894
6576
|
# The type of the AI Agent being removed for use by default from the
|
|
5895
6577
|
# Amazon Q in Connect Assistant.
|
|
5896
6578
|
#
|
|
6579
|
+
# @option params [String] :orchestrator_use_case
|
|
6580
|
+
# The orchestrator use case for the AI Agent being removed.
|
|
6581
|
+
#
|
|
5897
6582
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
5898
6583
|
#
|
|
5899
6584
|
# @example Request syntax with placeholder values
|
|
5900
6585
|
#
|
|
5901
6586
|
# resp = client.remove_assistant_ai_agent({
|
|
5902
6587
|
# assistant_id: "UuidOrArn", # required
|
|
5903
|
-
# ai_agent_type: "MANUAL_SEARCH", # required, accepts MANUAL_SEARCH, ANSWER_RECOMMENDATION, SELF_SERVICE, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER
|
|
6588
|
+
# ai_agent_type: "MANUAL_SEARCH", # required, accepts MANUAL_SEARCH, ANSWER_RECOMMENDATION, SELF_SERVICE, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER, ORCHESTRATION, NOTE_TAKING, CASE_SUMMARIZATION
|
|
6589
|
+
# orchestrator_use_case: "NonEmptyString",
|
|
5904
6590
|
# })
|
|
5905
6591
|
#
|
|
5906
6592
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/RemoveAssistantAIAgent AWS API Documentation
|
|
@@ -5961,6 +6647,7 @@ module Aws::QConnect
|
|
|
5961
6647
|
# @return [Types::RenderMessageTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5962
6648
|
#
|
|
5963
6649
|
# * {Types::RenderMessageTemplateResponse#content #content} => Types::MessageTemplateContentProvider
|
|
6650
|
+
# * {Types::RenderMessageTemplateResponse#source_configuration_summary #source_configuration_summary} => Types::MessageTemplateSourceConfigurationSummary
|
|
5964
6651
|
# * {Types::RenderMessageTemplateResponse#attributes_not_interpolated #attributes_not_interpolated} => Array<String>
|
|
5965
6652
|
# * {Types::RenderMessageTemplateResponse#attachments #attachments} => Array<Types::MessageTemplateAttachment>
|
|
5966
6653
|
#
|
|
@@ -6060,6 +6747,49 @@ module Aws::QConnect
|
|
|
6060
6747
|
# resp.content.email.headers[0].name #=> String
|
|
6061
6748
|
# resp.content.email.headers[0].value #=> String
|
|
6062
6749
|
# resp.content.sms.body.plain_text.content #=> String
|
|
6750
|
+
# resp.content.whats_app.data #=> String
|
|
6751
|
+
# resp.content.push.adm.title #=> String
|
|
6752
|
+
# resp.content.push.adm.body.content #=> String
|
|
6753
|
+
# resp.content.push.adm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
6754
|
+
# resp.content.push.adm.sound #=> String
|
|
6755
|
+
# resp.content.push.adm.url #=> String
|
|
6756
|
+
# resp.content.push.adm.image_url #=> String
|
|
6757
|
+
# resp.content.push.adm.image_icon_url #=> String
|
|
6758
|
+
# resp.content.push.adm.small_image_icon_url #=> String
|
|
6759
|
+
# resp.content.push.adm.raw_content.content #=> String
|
|
6760
|
+
# resp.content.push.apns.title #=> String
|
|
6761
|
+
# resp.content.push.apns.body.content #=> String
|
|
6762
|
+
# resp.content.push.apns.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
6763
|
+
# resp.content.push.apns.sound #=> String
|
|
6764
|
+
# resp.content.push.apns.url #=> String
|
|
6765
|
+
# resp.content.push.apns.media_url #=> String
|
|
6766
|
+
# resp.content.push.apns.raw_content.content #=> String
|
|
6767
|
+
# resp.content.push.fcm.title #=> String
|
|
6768
|
+
# resp.content.push.fcm.body.content #=> String
|
|
6769
|
+
# resp.content.push.fcm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
6770
|
+
# resp.content.push.fcm.sound #=> String
|
|
6771
|
+
# resp.content.push.fcm.url #=> String
|
|
6772
|
+
# resp.content.push.fcm.image_url #=> String
|
|
6773
|
+
# resp.content.push.fcm.image_icon_url #=> String
|
|
6774
|
+
# resp.content.push.fcm.small_image_icon_url #=> String
|
|
6775
|
+
# resp.content.push.fcm.raw_content.content #=> String
|
|
6776
|
+
# resp.content.push.baidu.title #=> String
|
|
6777
|
+
# resp.content.push.baidu.body.content #=> String
|
|
6778
|
+
# resp.content.push.baidu.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
6779
|
+
# resp.content.push.baidu.sound #=> String
|
|
6780
|
+
# resp.content.push.baidu.url #=> String
|
|
6781
|
+
# resp.content.push.baidu.image_url #=> String
|
|
6782
|
+
# resp.content.push.baidu.image_icon_url #=> String
|
|
6783
|
+
# resp.content.push.baidu.small_image_icon_url #=> String
|
|
6784
|
+
# resp.content.push.baidu.raw_content.content #=> String
|
|
6785
|
+
# resp.source_configuration_summary.whats_app.business_account_id #=> String
|
|
6786
|
+
# resp.source_configuration_summary.whats_app.template_id #=> String
|
|
6787
|
+
# resp.source_configuration_summary.whats_app.name #=> String
|
|
6788
|
+
# resp.source_configuration_summary.whats_app.language #=> String
|
|
6789
|
+
# resp.source_configuration_summary.whats_app.components #=> Array
|
|
6790
|
+
# resp.source_configuration_summary.whats_app.components[0] #=> String
|
|
6791
|
+
# resp.source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
|
|
6792
|
+
# resp.source_configuration_summary.whats_app.status_reason #=> String
|
|
6063
6793
|
# resp.attributes_not_interpolated #=> Array
|
|
6064
6794
|
# resp.attributes_not_interpolated[0] #=> String
|
|
6065
6795
|
# resp.attachments #=> Array
|
|
@@ -6079,6 +6809,120 @@ module Aws::QConnect
|
|
|
6079
6809
|
req.send_request(options)
|
|
6080
6810
|
end
|
|
6081
6811
|
|
|
6812
|
+
# Retrieves content from knowledge sources based on a query.
|
|
6813
|
+
#
|
|
6814
|
+
# @option params [required, String] :assistant_id
|
|
6815
|
+
# The identifier of the Amazon Q in Connect assistant for content
|
|
6816
|
+
# retrieval.
|
|
6817
|
+
#
|
|
6818
|
+
# @option params [required, Types::RetrievalConfiguration] :retrieval_configuration
|
|
6819
|
+
# The configuration for the content retrieval operation.
|
|
6820
|
+
#
|
|
6821
|
+
# @option params [required, String] :retrieval_query
|
|
6822
|
+
# The query for content retrieval.
|
|
6823
|
+
#
|
|
6824
|
+
# @return [Types::RetrieveResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6825
|
+
#
|
|
6826
|
+
# * {Types::RetrieveResponse#results #results} => Array<Types::RetrieveResult>
|
|
6827
|
+
#
|
|
6828
|
+
# @example Request syntax with placeholder values
|
|
6829
|
+
#
|
|
6830
|
+
# resp = client.retrieve({
|
|
6831
|
+
# assistant_id: "UuidOrArn", # required
|
|
6832
|
+
# retrieval_configuration: { # required
|
|
6833
|
+
# knowledge_source: { # required
|
|
6834
|
+
# assistant_association_ids: ["UuidOrArn"],
|
|
6835
|
+
# },
|
|
6836
|
+
# filter: {
|
|
6837
|
+
# and_all: [
|
|
6838
|
+
# {
|
|
6839
|
+
# # recursive RetrievalFilterConfiguration
|
|
6840
|
+
# },
|
|
6841
|
+
# ],
|
|
6842
|
+
# equals: {
|
|
6843
|
+
# key: "FilterAttributeKey", # required
|
|
6844
|
+
# value: { # required
|
|
6845
|
+
# },
|
|
6846
|
+
# },
|
|
6847
|
+
# greater_than: {
|
|
6848
|
+
# key: "FilterAttributeKey", # required
|
|
6849
|
+
# value: { # required
|
|
6850
|
+
# },
|
|
6851
|
+
# },
|
|
6852
|
+
# greater_than_or_equals: {
|
|
6853
|
+
# key: "FilterAttributeKey", # required
|
|
6854
|
+
# value: { # required
|
|
6855
|
+
# },
|
|
6856
|
+
# },
|
|
6857
|
+
# in: {
|
|
6858
|
+
# key: "FilterAttributeKey", # required
|
|
6859
|
+
# value: { # required
|
|
6860
|
+
# },
|
|
6861
|
+
# },
|
|
6862
|
+
# less_than: {
|
|
6863
|
+
# key: "FilterAttributeKey", # required
|
|
6864
|
+
# value: { # required
|
|
6865
|
+
# },
|
|
6866
|
+
# },
|
|
6867
|
+
# less_than_or_equals: {
|
|
6868
|
+
# key: "FilterAttributeKey", # required
|
|
6869
|
+
# value: { # required
|
|
6870
|
+
# },
|
|
6871
|
+
# },
|
|
6872
|
+
# list_contains: {
|
|
6873
|
+
# key: "FilterAttributeKey", # required
|
|
6874
|
+
# value: { # required
|
|
6875
|
+
# },
|
|
6876
|
+
# },
|
|
6877
|
+
# not_equals: {
|
|
6878
|
+
# key: "FilterAttributeKey", # required
|
|
6879
|
+
# value: { # required
|
|
6880
|
+
# },
|
|
6881
|
+
# },
|
|
6882
|
+
# not_in: {
|
|
6883
|
+
# key: "FilterAttributeKey", # required
|
|
6884
|
+
# value: { # required
|
|
6885
|
+
# },
|
|
6886
|
+
# },
|
|
6887
|
+
# or_all: [
|
|
6888
|
+
# {
|
|
6889
|
+
# # recursive RetrievalFilterConfiguration
|
|
6890
|
+
# },
|
|
6891
|
+
# ],
|
|
6892
|
+
# starts_with: {
|
|
6893
|
+
# key: "FilterAttributeKey", # required
|
|
6894
|
+
# value: { # required
|
|
6895
|
+
# },
|
|
6896
|
+
# },
|
|
6897
|
+
# string_contains: {
|
|
6898
|
+
# key: "FilterAttributeKey", # required
|
|
6899
|
+
# value: { # required
|
|
6900
|
+
# },
|
|
6901
|
+
# },
|
|
6902
|
+
# },
|
|
6903
|
+
# number_of_results: 1,
|
|
6904
|
+
# override_knowledge_base_search_type: "HYBRID", # accepts HYBRID, SEMANTIC
|
|
6905
|
+
# },
|
|
6906
|
+
# retrieval_query: "NonEmptySensitiveString", # required
|
|
6907
|
+
# })
|
|
6908
|
+
#
|
|
6909
|
+
# @example Response structure
|
|
6910
|
+
#
|
|
6911
|
+
# resp.results #=> Array
|
|
6912
|
+
# resp.results[0].association_id #=> String
|
|
6913
|
+
# resp.results[0].source_id #=> String
|
|
6914
|
+
# resp.results[0].reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
6915
|
+
# resp.results[0].content_text #=> String
|
|
6916
|
+
#
|
|
6917
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/Retrieve AWS API Documentation
|
|
6918
|
+
#
|
|
6919
|
+
# @overload retrieve(params = {})
|
|
6920
|
+
# @param [Hash] params ({})
|
|
6921
|
+
def retrieve(params = {}, options = {})
|
|
6922
|
+
req = build_request(:retrieve, params)
|
|
6923
|
+
req.send_request(options)
|
|
6924
|
+
end
|
|
6925
|
+
|
|
6082
6926
|
# Searches for content in a specified knowledge base. Can be used to get
|
|
6083
6927
|
# a specific content resource by its name.
|
|
6084
6928
|
#
|
|
@@ -6213,13 +7057,22 @@ module Aws::QConnect
|
|
|
6213
7057
|
# resp.results[0].knowledge_base_arn #=> String
|
|
6214
7058
|
# resp.results[0].knowledge_base_id #=> String
|
|
6215
7059
|
# resp.results[0].name #=> String
|
|
6216
|
-
# resp.results[0].
|
|
7060
|
+
# resp.results[0].channel #=> String
|
|
7061
|
+
# resp.results[0].channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
|
|
6217
7062
|
# resp.results[0].created_time #=> Time
|
|
6218
7063
|
# resp.results[0].last_modified_time #=> Time
|
|
6219
7064
|
# resp.results[0].last_modified_by #=> String
|
|
6220
7065
|
# resp.results[0].is_active #=> Boolean
|
|
6221
7066
|
# resp.results[0].version_number #=> Integer
|
|
6222
7067
|
# resp.results[0].description #=> String
|
|
7068
|
+
# resp.results[0].source_configuration_summary.whats_app.business_account_id #=> String
|
|
7069
|
+
# resp.results[0].source_configuration_summary.whats_app.template_id #=> String
|
|
7070
|
+
# resp.results[0].source_configuration_summary.whats_app.name #=> String
|
|
7071
|
+
# resp.results[0].source_configuration_summary.whats_app.language #=> String
|
|
7072
|
+
# resp.results[0].source_configuration_summary.whats_app.components #=> Array
|
|
7073
|
+
# resp.results[0].source_configuration_summary.whats_app.components[0] #=> String
|
|
7074
|
+
# resp.results[0].source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
|
|
7075
|
+
# resp.results[0].source_configuration_summary.whats_app.status_reason #=> String
|
|
6223
7076
|
# resp.results[0].grouping_configuration.criteria #=> String
|
|
6224
7077
|
# resp.results[0].grouping_configuration.values #=> Array
|
|
6225
7078
|
# resp.results[0].grouping_configuration.values[0] #=> String
|
|
@@ -6419,6 +7272,9 @@ module Aws::QConnect
|
|
|
6419
7272
|
# @option params [required, Types::MessageInput] :message
|
|
6420
7273
|
# The message data to submit to the Amazon Q in Connect session.
|
|
6421
7274
|
#
|
|
7275
|
+
# @option params [String] :ai_agent_id
|
|
7276
|
+
# The identifier of the AI Agent to use for processing the message.
|
|
7277
|
+
#
|
|
6422
7278
|
# @option params [Types::ConversationContext] :conversation_context
|
|
6423
7279
|
# The conversation context before the Amazon Q in Connect session.
|
|
6424
7280
|
#
|
|
@@ -6438,6 +7294,12 @@ module Aws::QConnect
|
|
|
6438
7294
|
# **A suitable default value is auto-generated.** You should normally
|
|
6439
7295
|
# not need to pass this option.**
|
|
6440
7296
|
#
|
|
7297
|
+
# @option params [String] :orchestrator_use_case
|
|
7298
|
+
# The orchestrator use case for message processing.
|
|
7299
|
+
#
|
|
7300
|
+
# @option params [Hash<String,String>] :metadata
|
|
7301
|
+
# Additional metadata for the message.
|
|
7302
|
+
#
|
|
6441
7303
|
# @return [Types::SendMessageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6442
7304
|
#
|
|
6443
7305
|
# * {Types::SendMessageResponse#request_message_id #request_message_id} => String
|
|
@@ -6454,28 +7316,60 @@ module Aws::QConnect
|
|
|
6454
7316
|
# value: { # required
|
|
6455
7317
|
# text: {
|
|
6456
7318
|
# value: "TextMessageValueString",
|
|
7319
|
+
# citations: [
|
|
7320
|
+
# {
|
|
7321
|
+
# content_id: "Uuid",
|
|
7322
|
+
# title: "SensitiveString",
|
|
7323
|
+
# knowledge_base_id: "Uuid",
|
|
7324
|
+
# citation_span: { # required
|
|
7325
|
+
# begin_offset_inclusive: 1,
|
|
7326
|
+
# end_offset_exclusive: 1,
|
|
7327
|
+
# },
|
|
7328
|
+
# source_url: "SensitiveString",
|
|
7329
|
+
# reference_type: "WEB_CRAWLER", # required, accepts WEB_CRAWLER, KNOWLEDGE_BASE, BEDROCK_KB_S3, BEDROCK_KB_WEB, BEDROCK_KB_CONFLUENCE, BEDROCK_KB_SALESFORCE, BEDROCK_KB_SHAREPOINT, BEDROCK_KB_KENDRA, BEDROCK_KB_CUSTOM_DOCUMENT, BEDROCK_KB_SQL
|
|
7330
|
+
# },
|
|
7331
|
+
# ],
|
|
7332
|
+
# ai_guardrail_assessment: {
|
|
7333
|
+
# blocked: false, # required
|
|
7334
|
+
# },
|
|
7335
|
+
# },
|
|
7336
|
+
# tool_use_result: {
|
|
7337
|
+
# tool_use_id: "NonEmptyString", # required
|
|
7338
|
+
# tool_name: "NonEmptyString", # required
|
|
7339
|
+
# tool_result: { # required
|
|
7340
|
+
# },
|
|
7341
|
+
# input_schema: {
|
|
7342
|
+
# },
|
|
6457
7343
|
# },
|
|
6458
7344
|
# },
|
|
6459
7345
|
# },
|
|
7346
|
+
# ai_agent_id: "UuidOrArnOrEitherWithQualifier",
|
|
6460
7347
|
# conversation_context: {
|
|
6461
7348
|
# self_service_conversation_history: [ # required
|
|
6462
7349
|
# {
|
|
6463
|
-
# turn_number: 1,
|
|
7350
|
+
# turn_number: 1,
|
|
6464
7351
|
# input_transcript: "SensitiveString",
|
|
6465
7352
|
# bot_response: "SensitiveString",
|
|
7353
|
+
# timestamp: Time.now,
|
|
6466
7354
|
# },
|
|
6467
7355
|
# ],
|
|
6468
7356
|
# },
|
|
6469
7357
|
# configuration: {
|
|
6470
7358
|
# generate_filler_message: false,
|
|
7359
|
+
# generate_chunked_message: false,
|
|
6471
7360
|
# },
|
|
6472
7361
|
# client_token: "ClientToken",
|
|
7362
|
+
# orchestrator_use_case: "NonEmptyString",
|
|
7363
|
+
# metadata: {
|
|
7364
|
+
# "NonEmptyString" => "NonEmptyString",
|
|
7365
|
+
# },
|
|
6473
7366
|
# })
|
|
6474
7367
|
#
|
|
6475
7368
|
# @example Response structure
|
|
6476
7369
|
#
|
|
6477
7370
|
# resp.request_message_id #=> String
|
|
6478
7371
|
# resp.configuration.generate_filler_message #=> Boolean
|
|
7372
|
+
# resp.configuration.generate_chunked_message #=> Boolean
|
|
6479
7373
|
# resp.next_message_token #=> String
|
|
6480
7374
|
#
|
|
6481
7375
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/SendMessage AWS API Documentation
|
|
@@ -6832,6 +7726,7 @@ module Aws::QConnect
|
|
|
6832
7726
|
# },
|
|
6833
7727
|
# ],
|
|
6834
7728
|
# locale: "NonEmptyString",
|
|
7729
|
+
# suggested_messages: ["NonEmptySensitiveString"],
|
|
6835
7730
|
# },
|
|
6836
7731
|
# self_service_ai_agent_configuration: {
|
|
6837
7732
|
# self_service_pre_processing_ai_prompt_id: "UuidWithQualifier",
|
|
@@ -6966,6 +7861,66 @@ module Aws::QConnect
|
|
|
6966
7861
|
# },
|
|
6967
7862
|
# ],
|
|
6968
7863
|
# },
|
|
7864
|
+
# orchestration_ai_agent_configuration: {
|
|
7865
|
+
# orchestration_ai_prompt_id: "UuidWithQualifier", # required
|
|
7866
|
+
# orchestration_ai_guardrail_id: "UuidWithQualifier",
|
|
7867
|
+
# tool_configurations: [
|
|
7868
|
+
# {
|
|
7869
|
+
# tool_name: "NonEmptyString", # required
|
|
7870
|
+
# tool_type: "MODEL_CONTEXT_PROTOCOL", # required, accepts MODEL_CONTEXT_PROTOCOL, RETURN_TO_CONTROL, CONSTANT
|
|
7871
|
+
# title: "NonEmptyString",
|
|
7872
|
+
# tool_id: "NonEmptyString",
|
|
7873
|
+
# description: "String",
|
|
7874
|
+
# instruction: {
|
|
7875
|
+
# instruction: "String",
|
|
7876
|
+
# examples: ["String"],
|
|
7877
|
+
# },
|
|
7878
|
+
# override_input_values: [
|
|
7879
|
+
# {
|
|
7880
|
+
# json_path: "NonEmptyString", # required
|
|
7881
|
+
# value: { # required
|
|
7882
|
+
# constant: {
|
|
7883
|
+
# type: "STRING", # required, accepts STRING, NUMBER, JSON_STRING
|
|
7884
|
+
# value: "NonEmptySensitiveString", # required
|
|
7885
|
+
# },
|
|
7886
|
+
# },
|
|
7887
|
+
# },
|
|
7888
|
+
# ],
|
|
7889
|
+
# output_filters: [
|
|
7890
|
+
# {
|
|
7891
|
+
# json_path: "NonEmptyString", # required
|
|
7892
|
+
# output_configuration: {
|
|
7893
|
+
# output_variable_name_override: "NonEmptyString",
|
|
7894
|
+
# session_data_namespace: "NonEmptyString",
|
|
7895
|
+
# },
|
|
7896
|
+
# },
|
|
7897
|
+
# ],
|
|
7898
|
+
# input_schema: {
|
|
7899
|
+
# },
|
|
7900
|
+
# output_schema: {
|
|
7901
|
+
# },
|
|
7902
|
+
# annotations: {
|
|
7903
|
+
# title: "String",
|
|
7904
|
+
# destructive_hint: false,
|
|
7905
|
+
# },
|
|
7906
|
+
# user_interaction_configuration: {
|
|
7907
|
+
# is_user_confirmation_required: false,
|
|
7908
|
+
# },
|
|
7909
|
+
# },
|
|
7910
|
+
# ],
|
|
7911
|
+
# connect_instance_arn: "GenericArn",
|
|
7912
|
+
# locale: "NonEmptyString",
|
|
7913
|
+
# },
|
|
7914
|
+
# note_taking_ai_agent_configuration: {
|
|
7915
|
+
# note_taking_ai_prompt_id: "UuidWithQualifier",
|
|
7916
|
+
# note_taking_ai_guardrail_id: "UuidWithQualifier",
|
|
7917
|
+
# locale: "NonEmptyString",
|
|
7918
|
+
# },
|
|
7919
|
+
# case_summarization_ai_agent_configuration: {
|
|
7920
|
+
# case_summarization_ai_prompt_id: "UuidWithQualifier",
|
|
7921
|
+
# case_summarization_ai_guardrail_id: "UuidWithQualifier",
|
|
7922
|
+
# locale: "NonEmptyString",
|
|
7923
|
+
# },
|
|
6969
7924
|
# },
|
|
6970
7925
|
# description: "Description",
|
|
6971
7926
|
# })
|
|
@@ -6977,7 +7932,7 @@ module Aws::QConnect
|
|
|
6977
7932
|
# resp.ai_agent.ai_agent_id #=> String
|
|
6978
7933
|
# resp.ai_agent.ai_agent_arn #=> String
|
|
6979
7934
|
# resp.ai_agent.name #=> String
|
|
6980
|
-
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER"
|
|
7935
|
+
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
6981
7936
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_prompt_id #=> String
|
|
6982
7937
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_guardrail_id #=> String
|
|
6983
7938
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.association_configurations #=> Array
|
|
@@ -7018,6 +7973,8 @@ module Aws::QConnect
|
|
|
7018
7973
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
7019
7974
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
7020
7975
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.locale #=> String
|
|
7976
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages #=> Array
|
|
7977
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages[0] #=> String
|
|
7021
7978
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_pre_processing_ai_prompt_id #=> String
|
|
7022
7979
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_answer_generation_ai_prompt_id #=> String
|
|
7023
7980
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_ai_guardrail_id #=> String
|
|
@@ -7077,6 +8034,36 @@ module Aws::QConnect
|
|
|
7077
8034
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.content_tag_filter.or_conditions[0].tag_condition.value #=> String
|
|
7078
8035
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
7079
8036
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
8037
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_prompt_id #=> String
|
|
8038
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_guardrail_id #=> String
|
|
8039
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations #=> Array
|
|
8040
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_name #=> String
|
|
8041
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_type #=> String, one of "MODEL_CONTEXT_PROTOCOL", "RETURN_TO_CONTROL", "CONSTANT"
|
|
8042
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].title #=> String
|
|
8043
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_id #=> String
|
|
8044
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].description #=> String
|
|
8045
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.instruction #=> String
|
|
8046
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples #=> Array
|
|
8047
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples[0] #=> String
|
|
8048
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values #=> Array
|
|
8049
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].json_path #=> String
|
|
8050
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.type #=> String, one of "STRING", "NUMBER", "JSON_STRING"
|
|
8051
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.value #=> String
|
|
8052
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters #=> Array
|
|
8053
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].json_path #=> String
|
|
8054
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.output_variable_name_override #=> String
|
|
8055
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.session_data_namespace #=> String
|
|
8056
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
8057
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
8058
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
8059
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
8060
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
8061
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
8062
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
8063
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
8064
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_prompt_id #=> String
|
|
8065
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_guardrail_id #=> String
|
|
8066
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.locale #=> String
|
|
7080
8067
|
# resp.ai_agent.modified_time #=> Time
|
|
7081
8068
|
# resp.ai_agent.description #=> String
|
|
7082
8069
|
# resp.ai_agent.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -7308,6 +8295,9 @@ module Aws::QConnect
|
|
|
7308
8295
|
#
|
|
7309
8296
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-ai-prompts.html#cli-create-aiprompt
|
|
7310
8297
|
#
|
|
8298
|
+
# @option params [Types::AIPromptInferenceConfiguration] :inference_configuration
|
|
8299
|
+
# The updated inference configuration for the AI Prompt.
|
|
8300
|
+
#
|
|
7311
8301
|
# @return [Types::UpdateAIPromptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7312
8302
|
#
|
|
7313
8303
|
# * {Types::UpdateAIPromptResponse#ai_prompt #ai_prompt} => Types::AIPromptData
|
|
@@ -7326,6 +8316,14 @@ module Aws::QConnect
|
|
|
7326
8316
|
# },
|
|
7327
8317
|
# description: "Description",
|
|
7328
8318
|
# model_id: "AIPromptModelIdentifier",
|
|
8319
|
+
# inference_configuration: {
|
|
8320
|
+
# text_ai_prompt_inference_configuration: {
|
|
8321
|
+
# temperature: 1.0,
|
|
8322
|
+
# top_p: 1.0,
|
|
8323
|
+
# top_k: 1,
|
|
8324
|
+
# max_tokens_to_sample: 1,
|
|
8325
|
+
# },
|
|
8326
|
+
# },
|
|
7329
8327
|
# })
|
|
7330
8328
|
#
|
|
7331
8329
|
# @example Response structure
|
|
@@ -7335,11 +8333,15 @@ module Aws::QConnect
|
|
|
7335
8333
|
# resp.ai_prompt.ai_prompt_id #=> String
|
|
7336
8334
|
# resp.ai_prompt.ai_prompt_arn #=> String
|
|
7337
8335
|
# resp.ai_prompt.name #=> String
|
|
7338
|
-
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION"
|
|
8336
|
+
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
7339
8337
|
# resp.ai_prompt.template_type #=> String, one of "TEXT"
|
|
7340
8338
|
# resp.ai_prompt.model_id #=> String
|
|
7341
8339
|
# resp.ai_prompt.api_format #=> String, one of "ANTHROPIC_CLAUDE_MESSAGES", "ANTHROPIC_CLAUDE_TEXT_COMPLETIONS", "MESSAGES", "TEXT_COMPLETIONS"
|
|
7342
8340
|
# resp.ai_prompt.template_configuration.text_full_ai_prompt_edit_template_configuration.text #=> String
|
|
8341
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.temperature #=> Float
|
|
8342
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_p #=> Float
|
|
8343
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_k #=> Integer
|
|
8344
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.max_tokens_to_sample #=> Integer
|
|
7343
8345
|
# resp.ai_prompt.modified_time #=> Time
|
|
7344
8346
|
# resp.ai_prompt.description #=> String
|
|
7345
8347
|
# resp.ai_prompt.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -7372,6 +8374,10 @@ module Aws::QConnect
|
|
|
7372
8374
|
# The configuration of the AI Agent being updated for use by default on
|
|
7373
8375
|
# the Amazon Q in Connect Assistant.
|
|
7374
8376
|
#
|
|
8377
|
+
# @option params [Array<Types::OrchestratorConfigurationEntry>] :orchestrator_configuration_list
|
|
8378
|
+
# The updated list of orchestrator configurations for the assistant AI
|
|
8379
|
+
# Agent.
|
|
8380
|
+
#
|
|
7375
8381
|
# @return [Types::UpdateAssistantAIAgentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7376
8382
|
#
|
|
7377
8383
|
# * {Types::UpdateAssistantAIAgentResponse#assistant #assistant} => Types::AssistantData
|
|
@@ -7380,10 +8386,16 @@ module Aws::QConnect
|
|
|
7380
8386
|
#
|
|
7381
8387
|
# resp = client.update_assistant_ai_agent({
|
|
7382
8388
|
# assistant_id: "UuidOrArn", # required
|
|
7383
|
-
# ai_agent_type: "MANUAL_SEARCH", # required, accepts MANUAL_SEARCH, ANSWER_RECOMMENDATION, SELF_SERVICE, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER
|
|
8389
|
+
# ai_agent_type: "MANUAL_SEARCH", # required, accepts MANUAL_SEARCH, ANSWER_RECOMMENDATION, SELF_SERVICE, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER, ORCHESTRATION, NOTE_TAKING, CASE_SUMMARIZATION
|
|
7384
8390
|
# configuration: { # required
|
|
7385
8391
|
# ai_agent_id: "UuidWithQualifier", # required
|
|
7386
8392
|
# },
|
|
8393
|
+
# orchestrator_configuration_list: [
|
|
8394
|
+
# {
|
|
8395
|
+
# ai_agent_id: "UuidOrArnOrEitherWithQualifier",
|
|
8396
|
+
# orchestrator_use_case: "NonEmptyString", # required
|
|
8397
|
+
# },
|
|
8398
|
+
# ],
|
|
7387
8399
|
# })
|
|
7388
8400
|
#
|
|
7389
8401
|
# @example Response structure
|
|
@@ -7401,6 +8413,9 @@ module Aws::QConnect
|
|
|
7401
8413
|
# resp.assistant.capability_configuration.type #=> String, one of "V1", "V2"
|
|
7402
8414
|
# resp.assistant.ai_agent_configuration #=> Hash
|
|
7403
8415
|
# resp.assistant.ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
8416
|
+
# resp.assistant.orchestrator_configuration_list #=> Array
|
|
8417
|
+
# resp.assistant.orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
8418
|
+
# resp.assistant.orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
7404
8419
|
#
|
|
7405
8420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/UpdateAssistantAIAgent AWS API Documentation
|
|
7406
8421
|
#
|
|
@@ -7600,6 +8615,10 @@ module Aws::QConnect
|
|
|
7600
8615
|
# `es_ES`, `fr_FR`, `id_ID`, `it_IT`, `ja_JP`, `ko_KR`, `pt_BR`,
|
|
7601
8616
|
# `zh_CN`, `zh_TW`
|
|
7602
8617
|
#
|
|
8618
|
+
# @option params [Types::MessageTemplateSourceConfiguration] :source_configuration
|
|
8619
|
+
# The source configuration of the message template. Only set this
|
|
8620
|
+
# argument for WHATSAPP channel subtype.
|
|
8621
|
+
#
|
|
7603
8622
|
# @option params [Types::MessageTemplateAttributes] :default_attributes
|
|
7604
8623
|
# An object that specifies the default values to use for variables in
|
|
7605
8624
|
# the message template. This object contains different categories of
|
|
@@ -7641,8 +8660,78 @@ module Aws::QConnect
|
|
|
7641
8660
|
# },
|
|
7642
8661
|
# },
|
|
7643
8662
|
# },
|
|
8663
|
+
# whats_app: {
|
|
8664
|
+
# data: "WhatsAppMessageTemplateContentData",
|
|
8665
|
+
# },
|
|
8666
|
+
# push: {
|
|
8667
|
+
# adm: {
|
|
8668
|
+
# title: "NonEmptyUnlimitedString",
|
|
8669
|
+
# body: {
|
|
8670
|
+
# content: "NonEmptyUnlimitedString",
|
|
8671
|
+
# },
|
|
8672
|
+
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
|
8673
|
+
# sound: "NonEmptyUnlimitedString",
|
|
8674
|
+
# url: "NonEmptyUnlimitedString",
|
|
8675
|
+
# image_url: "NonEmptyUnlimitedString",
|
|
8676
|
+
# image_icon_url: "NonEmptyUnlimitedString",
|
|
8677
|
+
# small_image_icon_url: "NonEmptyUnlimitedString",
|
|
8678
|
+
# raw_content: {
|
|
8679
|
+
# content: "NonEmptyUnlimitedString",
|
|
8680
|
+
# },
|
|
8681
|
+
# },
|
|
8682
|
+
# apns: {
|
|
8683
|
+
# title: "NonEmptyUnlimitedString",
|
|
8684
|
+
# body: {
|
|
8685
|
+
# content: "NonEmptyUnlimitedString",
|
|
8686
|
+
# },
|
|
8687
|
+
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
|
8688
|
+
# sound: "NonEmptyUnlimitedString",
|
|
8689
|
+
# url: "NonEmptyUnlimitedString",
|
|
8690
|
+
# media_url: "NonEmptyUnlimitedString",
|
|
8691
|
+
# raw_content: {
|
|
8692
|
+
# content: "NonEmptyUnlimitedString",
|
|
8693
|
+
# },
|
|
8694
|
+
# },
|
|
8695
|
+
# fcm: {
|
|
8696
|
+
# title: "NonEmptyUnlimitedString",
|
|
8697
|
+
# body: {
|
|
8698
|
+
# content: "NonEmptyUnlimitedString",
|
|
8699
|
+
# },
|
|
8700
|
+
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
|
8701
|
+
# sound: "NonEmptyUnlimitedString",
|
|
8702
|
+
# url: "NonEmptyUnlimitedString",
|
|
8703
|
+
# image_url: "NonEmptyUnlimitedString",
|
|
8704
|
+
# image_icon_url: "NonEmptyUnlimitedString",
|
|
8705
|
+
# small_image_icon_url: "NonEmptyUnlimitedString",
|
|
8706
|
+
# raw_content: {
|
|
8707
|
+
# content: "NonEmptyUnlimitedString",
|
|
8708
|
+
# },
|
|
8709
|
+
# },
|
|
8710
|
+
# baidu: {
|
|
8711
|
+
# title: "NonEmptyUnlimitedString",
|
|
8712
|
+
# body: {
|
|
8713
|
+
# content: "NonEmptyUnlimitedString",
|
|
8714
|
+
# },
|
|
8715
|
+
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
|
8716
|
+
# sound: "NonEmptyUnlimitedString",
|
|
8717
|
+
# url: "NonEmptyUnlimitedString",
|
|
8718
|
+
# image_url: "NonEmptyUnlimitedString",
|
|
8719
|
+
# image_icon_url: "NonEmptyUnlimitedString",
|
|
8720
|
+
# small_image_icon_url: "NonEmptyUnlimitedString",
|
|
8721
|
+
# raw_content: {
|
|
8722
|
+
# content: "NonEmptyUnlimitedString",
|
|
8723
|
+
# },
|
|
8724
|
+
# },
|
|
8725
|
+
# },
|
|
7644
8726
|
# },
|
|
7645
8727
|
# language: "LanguageCode",
|
|
8728
|
+
# source_configuration: {
|
|
8729
|
+
# whats_app: {
|
|
8730
|
+
# business_account_id: "WhatsAppBusinessAccountId", # required
|
|
8731
|
+
# template_id: "WhatsAppMessageTemplateId", # required
|
|
8732
|
+
# components: ["WhatsAppMessageTemplateComponent"],
|
|
8733
|
+
# },
|
|
8734
|
+
# },
|
|
7646
8735
|
# default_attributes: {
|
|
7647
8736
|
# system_attributes: {
|
|
7648
8737
|
# name: "MessageTemplateAttributeValue",
|
|
@@ -7732,7 +8821,8 @@ module Aws::QConnect
|
|
|
7732
8821
|
# resp.message_template.knowledge_base_arn #=> String
|
|
7733
8822
|
# resp.message_template.knowledge_base_id #=> String
|
|
7734
8823
|
# resp.message_template.name #=> String
|
|
7735
|
-
# resp.message_template.
|
|
8824
|
+
# resp.message_template.channel #=> String
|
|
8825
|
+
# resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
|
|
7736
8826
|
# resp.message_template.created_time #=> Time
|
|
7737
8827
|
# resp.message_template.last_modified_time #=> Time
|
|
7738
8828
|
# resp.message_template.last_modified_by #=> String
|
|
@@ -7743,8 +8833,51 @@ module Aws::QConnect
|
|
|
7743
8833
|
# resp.message_template.content.email.headers[0].name #=> String
|
|
7744
8834
|
# resp.message_template.content.email.headers[0].value #=> String
|
|
7745
8835
|
# resp.message_template.content.sms.body.plain_text.content #=> String
|
|
8836
|
+
# resp.message_template.content.whats_app.data #=> String
|
|
8837
|
+
# resp.message_template.content.push.adm.title #=> String
|
|
8838
|
+
# resp.message_template.content.push.adm.body.content #=> String
|
|
8839
|
+
# resp.message_template.content.push.adm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
8840
|
+
# resp.message_template.content.push.adm.sound #=> String
|
|
8841
|
+
# resp.message_template.content.push.adm.url #=> String
|
|
8842
|
+
# resp.message_template.content.push.adm.image_url #=> String
|
|
8843
|
+
# resp.message_template.content.push.adm.image_icon_url #=> String
|
|
8844
|
+
# resp.message_template.content.push.adm.small_image_icon_url #=> String
|
|
8845
|
+
# resp.message_template.content.push.adm.raw_content.content #=> String
|
|
8846
|
+
# resp.message_template.content.push.apns.title #=> String
|
|
8847
|
+
# resp.message_template.content.push.apns.body.content #=> String
|
|
8848
|
+
# resp.message_template.content.push.apns.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
8849
|
+
# resp.message_template.content.push.apns.sound #=> String
|
|
8850
|
+
# resp.message_template.content.push.apns.url #=> String
|
|
8851
|
+
# resp.message_template.content.push.apns.media_url #=> String
|
|
8852
|
+
# resp.message_template.content.push.apns.raw_content.content #=> String
|
|
8853
|
+
# resp.message_template.content.push.fcm.title #=> String
|
|
8854
|
+
# resp.message_template.content.push.fcm.body.content #=> String
|
|
8855
|
+
# resp.message_template.content.push.fcm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
8856
|
+
# resp.message_template.content.push.fcm.sound #=> String
|
|
8857
|
+
# resp.message_template.content.push.fcm.url #=> String
|
|
8858
|
+
# resp.message_template.content.push.fcm.image_url #=> String
|
|
8859
|
+
# resp.message_template.content.push.fcm.image_icon_url #=> String
|
|
8860
|
+
# resp.message_template.content.push.fcm.small_image_icon_url #=> String
|
|
8861
|
+
# resp.message_template.content.push.fcm.raw_content.content #=> String
|
|
8862
|
+
# resp.message_template.content.push.baidu.title #=> String
|
|
8863
|
+
# resp.message_template.content.push.baidu.body.content #=> String
|
|
8864
|
+
# resp.message_template.content.push.baidu.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
8865
|
+
# resp.message_template.content.push.baidu.sound #=> String
|
|
8866
|
+
# resp.message_template.content.push.baidu.url #=> String
|
|
8867
|
+
# resp.message_template.content.push.baidu.image_url #=> String
|
|
8868
|
+
# resp.message_template.content.push.baidu.image_icon_url #=> String
|
|
8869
|
+
# resp.message_template.content.push.baidu.small_image_icon_url #=> String
|
|
8870
|
+
# resp.message_template.content.push.baidu.raw_content.content #=> String
|
|
7746
8871
|
# resp.message_template.description #=> String
|
|
7747
8872
|
# resp.message_template.language #=> String
|
|
8873
|
+
# resp.message_template.source_configuration_summary.whats_app.business_account_id #=> String
|
|
8874
|
+
# resp.message_template.source_configuration_summary.whats_app.template_id #=> String
|
|
8875
|
+
# resp.message_template.source_configuration_summary.whats_app.name #=> String
|
|
8876
|
+
# resp.message_template.source_configuration_summary.whats_app.language #=> String
|
|
8877
|
+
# resp.message_template.source_configuration_summary.whats_app.components #=> Array
|
|
8878
|
+
# resp.message_template.source_configuration_summary.whats_app.components[0] #=> String
|
|
8879
|
+
# resp.message_template.source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
|
|
8880
|
+
# resp.message_template.source_configuration_summary.whats_app.status_reason #=> String
|
|
7748
8881
|
# resp.message_template.grouping_configuration.criteria #=> String
|
|
7749
8882
|
# resp.message_template.grouping_configuration.values #=> Array
|
|
7750
8883
|
# resp.message_template.grouping_configuration.values[0] #=> String
|
|
@@ -7878,7 +9011,8 @@ module Aws::QConnect
|
|
|
7878
9011
|
# resp.message_template.knowledge_base_arn #=> String
|
|
7879
9012
|
# resp.message_template.knowledge_base_id #=> String
|
|
7880
9013
|
# resp.message_template.name #=> String
|
|
7881
|
-
# resp.message_template.
|
|
9014
|
+
# resp.message_template.channel #=> String
|
|
9015
|
+
# resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
|
|
7882
9016
|
# resp.message_template.created_time #=> Time
|
|
7883
9017
|
# resp.message_template.last_modified_time #=> Time
|
|
7884
9018
|
# resp.message_template.last_modified_by #=> String
|
|
@@ -7889,8 +9023,51 @@ module Aws::QConnect
|
|
|
7889
9023
|
# resp.message_template.content.email.headers[0].name #=> String
|
|
7890
9024
|
# resp.message_template.content.email.headers[0].value #=> String
|
|
7891
9025
|
# resp.message_template.content.sms.body.plain_text.content #=> String
|
|
9026
|
+
# resp.message_template.content.whats_app.data #=> String
|
|
9027
|
+
# resp.message_template.content.push.adm.title #=> String
|
|
9028
|
+
# resp.message_template.content.push.adm.body.content #=> String
|
|
9029
|
+
# resp.message_template.content.push.adm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
9030
|
+
# resp.message_template.content.push.adm.sound #=> String
|
|
9031
|
+
# resp.message_template.content.push.adm.url #=> String
|
|
9032
|
+
# resp.message_template.content.push.adm.image_url #=> String
|
|
9033
|
+
# resp.message_template.content.push.adm.image_icon_url #=> String
|
|
9034
|
+
# resp.message_template.content.push.adm.small_image_icon_url #=> String
|
|
9035
|
+
# resp.message_template.content.push.adm.raw_content.content #=> String
|
|
9036
|
+
# resp.message_template.content.push.apns.title #=> String
|
|
9037
|
+
# resp.message_template.content.push.apns.body.content #=> String
|
|
9038
|
+
# resp.message_template.content.push.apns.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
9039
|
+
# resp.message_template.content.push.apns.sound #=> String
|
|
9040
|
+
# resp.message_template.content.push.apns.url #=> String
|
|
9041
|
+
# resp.message_template.content.push.apns.media_url #=> String
|
|
9042
|
+
# resp.message_template.content.push.apns.raw_content.content #=> String
|
|
9043
|
+
# resp.message_template.content.push.fcm.title #=> String
|
|
9044
|
+
# resp.message_template.content.push.fcm.body.content #=> String
|
|
9045
|
+
# resp.message_template.content.push.fcm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
9046
|
+
# resp.message_template.content.push.fcm.sound #=> String
|
|
9047
|
+
# resp.message_template.content.push.fcm.url #=> String
|
|
9048
|
+
# resp.message_template.content.push.fcm.image_url #=> String
|
|
9049
|
+
# resp.message_template.content.push.fcm.image_icon_url #=> String
|
|
9050
|
+
# resp.message_template.content.push.fcm.small_image_icon_url #=> String
|
|
9051
|
+
# resp.message_template.content.push.fcm.raw_content.content #=> String
|
|
9052
|
+
# resp.message_template.content.push.baidu.title #=> String
|
|
9053
|
+
# resp.message_template.content.push.baidu.body.content #=> String
|
|
9054
|
+
# resp.message_template.content.push.baidu.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
|
9055
|
+
# resp.message_template.content.push.baidu.sound #=> String
|
|
9056
|
+
# resp.message_template.content.push.baidu.url #=> String
|
|
9057
|
+
# resp.message_template.content.push.baidu.image_url #=> String
|
|
9058
|
+
# resp.message_template.content.push.baidu.image_icon_url #=> String
|
|
9059
|
+
# resp.message_template.content.push.baidu.small_image_icon_url #=> String
|
|
9060
|
+
# resp.message_template.content.push.baidu.raw_content.content #=> String
|
|
7892
9061
|
# resp.message_template.description #=> String
|
|
7893
9062
|
# resp.message_template.language #=> String
|
|
9063
|
+
# resp.message_template.source_configuration_summary.whats_app.business_account_id #=> String
|
|
9064
|
+
# resp.message_template.source_configuration_summary.whats_app.template_id #=> String
|
|
9065
|
+
# resp.message_template.source_configuration_summary.whats_app.name #=> String
|
|
9066
|
+
# resp.message_template.source_configuration_summary.whats_app.language #=> String
|
|
9067
|
+
# resp.message_template.source_configuration_summary.whats_app.components #=> Array
|
|
9068
|
+
# resp.message_template.source_configuration_summary.whats_app.components[0] #=> String
|
|
9069
|
+
# resp.message_template.source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
|
|
9070
|
+
# resp.message_template.source_configuration_summary.whats_app.status_reason #=> String
|
|
7894
9071
|
# resp.message_template.grouping_configuration.criteria #=> String
|
|
7895
9072
|
# resp.message_template.grouping_configuration.values #=> Array
|
|
7896
9073
|
# resp.message_template.grouping_configuration.values[0] #=> String
|
|
@@ -8118,6 +9295,12 @@ module Aws::QConnect
|
|
|
8118
9295
|
# Agent version) that should be used by Amazon Q in Connect for this
|
|
8119
9296
|
# Session.
|
|
8120
9297
|
#
|
|
9298
|
+
# @option params [Array<Types::OrchestratorConfigurationEntry>] :orchestrator_configuration_list
|
|
9299
|
+
# The updated list of orchestrator configurations for the session.
|
|
9300
|
+
#
|
|
9301
|
+
# @option params [Boolean] :remove_orchestrator_configuration_list
|
|
9302
|
+
# The list of orchestrator configurations to remove from the session.
|
|
9303
|
+
#
|
|
8121
9304
|
# @return [Types::UpdateSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8122
9305
|
#
|
|
8123
9306
|
# * {Types::UpdateSessionResponse#session #session} => Types::SessionData
|
|
@@ -8159,6 +9342,13 @@ module Aws::QConnect
|
|
|
8159
9342
|
# ai_agent_id: "UuidWithQualifier", # required
|
|
8160
9343
|
# },
|
|
8161
9344
|
# },
|
|
9345
|
+
# orchestrator_configuration_list: [
|
|
9346
|
+
# {
|
|
9347
|
+
# ai_agent_id: "UuidOrArnOrEitherWithQualifier",
|
|
9348
|
+
# orchestrator_use_case: "NonEmptyString", # required
|
|
9349
|
+
# },
|
|
9350
|
+
# ],
|
|
9351
|
+
# remove_orchestrator_configuration_list: false,
|
|
8162
9352
|
# })
|
|
8163
9353
|
#
|
|
8164
9354
|
# @example Response structure
|
|
@@ -8184,6 +9374,9 @@ module Aws::QConnect
|
|
|
8184
9374
|
# resp.session.ai_agent_configuration #=> Hash
|
|
8185
9375
|
# resp.session.ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
8186
9376
|
# resp.session.origin #=> String, one of "SYSTEM", "CUSTOMER"
|
|
9377
|
+
# resp.session.orchestrator_configuration_list #=> Array
|
|
9378
|
+
# resp.session.orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
9379
|
+
# resp.session.orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
8187
9380
|
#
|
|
8188
9381
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/UpdateSession AWS API Documentation
|
|
8189
9382
|
#
|
|
@@ -8270,7 +9463,7 @@ module Aws::QConnect
|
|
|
8270
9463
|
tracer: tracer
|
|
8271
9464
|
)
|
|
8272
9465
|
context[:gem_name] = 'aws-sdk-qconnect'
|
|
8273
|
-
context[:gem_version] = '1.
|
|
9466
|
+
context[:gem_version] = '1.44.0'
|
|
8274
9467
|
Seahorse::Client::Request.new(handlers, context)
|
|
8275
9468
|
end
|
|
8276
9469
|
|