aws-sdk-qconnect 1.40.0 → 1.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qconnect/client.rb +472 -30
- data/lib/aws-sdk-qconnect/client_api.rb +53 -0
- data/lib/aws-sdk-qconnect/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-qconnect/errors.rb +16 -0
- data/lib/aws-sdk-qconnect/types.rb +239 -3
- data/lib/aws-sdk-qconnect.rb +1 -1
- data/sig/client.rbs +188 -7
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +80 -15
- metadata +1 -1
data/sig/client.rbs
CHANGED
@@ -101,7 +101,7 @@ module Aws
|
|
101
101
|
?client_token: ::String,
|
102
102
|
assistant_id: ::String,
|
103
103
|
name: ::String,
|
104
|
-
type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE"),
|
104
|
+
type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER"),
|
105
105
|
configuration: {
|
106
106
|
manual_search_ai_agent_configuration: {
|
107
107
|
answer_generation_ai_prompt_id: ::String?,
|
@@ -233,6 +233,96 @@ module Aws
|
|
233
233
|
}?
|
234
234
|
},
|
235
235
|
]?
|
236
|
+
}?,
|
237
|
+
email_response_ai_agent_configuration: {
|
238
|
+
email_response_ai_prompt_id: ::String?,
|
239
|
+
email_query_reformulation_ai_prompt_id: ::String?,
|
240
|
+
locale: ::String?,
|
241
|
+
association_configurations: Array[
|
242
|
+
{
|
243
|
+
association_id: ::String?,
|
244
|
+
association_type: ("KNOWLEDGE_BASE")?,
|
245
|
+
association_configuration_data: {
|
246
|
+
knowledge_base_association_configuration_data: {
|
247
|
+
content_tag_filter: {
|
248
|
+
tag_condition: {
|
249
|
+
key: ::String,
|
250
|
+
value: ::String?
|
251
|
+
}?,
|
252
|
+
and_conditions: Array[
|
253
|
+
{
|
254
|
+
key: ::String,
|
255
|
+
value: ::String?
|
256
|
+
},
|
257
|
+
]?,
|
258
|
+
or_conditions: Array[
|
259
|
+
{
|
260
|
+
and_conditions: Array[
|
261
|
+
{
|
262
|
+
key: ::String,
|
263
|
+
value: ::String?
|
264
|
+
},
|
265
|
+
]?,
|
266
|
+
tag_condition: {
|
267
|
+
key: ::String,
|
268
|
+
value: ::String?
|
269
|
+
}?
|
270
|
+
},
|
271
|
+
]?
|
272
|
+
}?,
|
273
|
+
max_results: ::Integer?,
|
274
|
+
override_knowledge_base_search_type: ("HYBRID" | "SEMANTIC")?
|
275
|
+
}?
|
276
|
+
}?
|
277
|
+
},
|
278
|
+
]?
|
279
|
+
}?,
|
280
|
+
email_overview_ai_agent_configuration: {
|
281
|
+
email_overview_ai_prompt_id: ::String?,
|
282
|
+
locale: ::String?
|
283
|
+
}?,
|
284
|
+
email_generative_answer_ai_agent_configuration: {
|
285
|
+
email_generative_answer_ai_prompt_id: ::String?,
|
286
|
+
email_query_reformulation_ai_prompt_id: ::String?,
|
287
|
+
locale: ::String?,
|
288
|
+
association_configurations: Array[
|
289
|
+
{
|
290
|
+
association_id: ::String?,
|
291
|
+
association_type: ("KNOWLEDGE_BASE")?,
|
292
|
+
association_configuration_data: {
|
293
|
+
knowledge_base_association_configuration_data: {
|
294
|
+
content_tag_filter: {
|
295
|
+
tag_condition: {
|
296
|
+
key: ::String,
|
297
|
+
value: ::String?
|
298
|
+
}?,
|
299
|
+
and_conditions: Array[
|
300
|
+
{
|
301
|
+
key: ::String,
|
302
|
+
value: ::String?
|
303
|
+
},
|
304
|
+
]?,
|
305
|
+
or_conditions: Array[
|
306
|
+
{
|
307
|
+
and_conditions: Array[
|
308
|
+
{
|
309
|
+
key: ::String,
|
310
|
+
value: ::String?
|
311
|
+
},
|
312
|
+
]?,
|
313
|
+
tag_condition: {
|
314
|
+
key: ::String,
|
315
|
+
value: ::String?
|
316
|
+
}?
|
317
|
+
},
|
318
|
+
]?
|
319
|
+
}?,
|
320
|
+
max_results: ::Integer?,
|
321
|
+
override_knowledge_base_search_type: ("HYBRID" | "SEMANTIC")?
|
322
|
+
}?
|
323
|
+
}?
|
324
|
+
},
|
325
|
+
]?
|
236
326
|
}?
|
237
327
|
},
|
238
328
|
visibility_status: ("SAVED" | "PUBLISHED"),
|
@@ -350,7 +440,7 @@ module Aws
|
|
350
440
|
?client_token: ::String,
|
351
441
|
assistant_id: ::String,
|
352
442
|
name: ::String,
|
353
|
-
type: ("ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION"),
|
443
|
+
type: ("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"),
|
354
444
|
template_configuration: {
|
355
445
|
text_full_ai_prompt_edit_template_configuration: {
|
356
446
|
text: ::String
|
@@ -734,9 +824,10 @@ module Aws
|
|
734
824
|
},
|
735
825
|
]?
|
736
826
|
},
|
737
|
-
?ai_agent_configuration: Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE"), {
|
827
|
+
?ai_agent_configuration: Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER"), {
|
738
828
|
ai_agent_id: ::String
|
739
|
-
}]
|
829
|
+
}],
|
830
|
+
?contact_arn: ::String
|
740
831
|
) -> _CreateSessionResponseSuccess
|
741
832
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSessionResponseSuccess
|
742
833
|
|
@@ -1383,7 +1474,7 @@ module Aws
|
|
1383
1474
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QConnect/Client.html#remove_assistant_ai_agent-instance_method
|
1384
1475
|
def remove_assistant_ai_agent: (
|
1385
1476
|
assistant_id: ::String,
|
1386
|
-
ai_agent_type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE")
|
1477
|
+
ai_agent_type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER")
|
1387
1478
|
) -> _RemoveAssistantAIAgentResponseSuccess
|
1388
1479
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveAssistantAIAgentResponseSuccess
|
1389
1480
|
|
@@ -1834,6 +1925,96 @@ module Aws
|
|
1834
1925
|
}?
|
1835
1926
|
},
|
1836
1927
|
]?
|
1928
|
+
}?,
|
1929
|
+
email_response_ai_agent_configuration: {
|
1930
|
+
email_response_ai_prompt_id: ::String?,
|
1931
|
+
email_query_reformulation_ai_prompt_id: ::String?,
|
1932
|
+
locale: ::String?,
|
1933
|
+
association_configurations: Array[
|
1934
|
+
{
|
1935
|
+
association_id: ::String?,
|
1936
|
+
association_type: ("KNOWLEDGE_BASE")?,
|
1937
|
+
association_configuration_data: {
|
1938
|
+
knowledge_base_association_configuration_data: {
|
1939
|
+
content_tag_filter: {
|
1940
|
+
tag_condition: {
|
1941
|
+
key: ::String,
|
1942
|
+
value: ::String?
|
1943
|
+
}?,
|
1944
|
+
and_conditions: Array[
|
1945
|
+
{
|
1946
|
+
key: ::String,
|
1947
|
+
value: ::String?
|
1948
|
+
},
|
1949
|
+
]?,
|
1950
|
+
or_conditions: Array[
|
1951
|
+
{
|
1952
|
+
and_conditions: Array[
|
1953
|
+
{
|
1954
|
+
key: ::String,
|
1955
|
+
value: ::String?
|
1956
|
+
},
|
1957
|
+
]?,
|
1958
|
+
tag_condition: {
|
1959
|
+
key: ::String,
|
1960
|
+
value: ::String?
|
1961
|
+
}?
|
1962
|
+
},
|
1963
|
+
]?
|
1964
|
+
}?,
|
1965
|
+
max_results: ::Integer?,
|
1966
|
+
override_knowledge_base_search_type: ("HYBRID" | "SEMANTIC")?
|
1967
|
+
}?
|
1968
|
+
}?
|
1969
|
+
},
|
1970
|
+
]?
|
1971
|
+
}?,
|
1972
|
+
email_overview_ai_agent_configuration: {
|
1973
|
+
email_overview_ai_prompt_id: ::String?,
|
1974
|
+
locale: ::String?
|
1975
|
+
}?,
|
1976
|
+
email_generative_answer_ai_agent_configuration: {
|
1977
|
+
email_generative_answer_ai_prompt_id: ::String?,
|
1978
|
+
email_query_reformulation_ai_prompt_id: ::String?,
|
1979
|
+
locale: ::String?,
|
1980
|
+
association_configurations: Array[
|
1981
|
+
{
|
1982
|
+
association_id: ::String?,
|
1983
|
+
association_type: ("KNOWLEDGE_BASE")?,
|
1984
|
+
association_configuration_data: {
|
1985
|
+
knowledge_base_association_configuration_data: {
|
1986
|
+
content_tag_filter: {
|
1987
|
+
tag_condition: {
|
1988
|
+
key: ::String,
|
1989
|
+
value: ::String?
|
1990
|
+
}?,
|
1991
|
+
and_conditions: Array[
|
1992
|
+
{
|
1993
|
+
key: ::String,
|
1994
|
+
value: ::String?
|
1995
|
+
},
|
1996
|
+
]?,
|
1997
|
+
or_conditions: Array[
|
1998
|
+
{
|
1999
|
+
and_conditions: Array[
|
2000
|
+
{
|
2001
|
+
key: ::String,
|
2002
|
+
value: ::String?
|
2003
|
+
},
|
2004
|
+
]?,
|
2005
|
+
tag_condition: {
|
2006
|
+
key: ::String,
|
2007
|
+
value: ::String?
|
2008
|
+
}?
|
2009
|
+
},
|
2010
|
+
]?
|
2011
|
+
}?,
|
2012
|
+
max_results: ::Integer?,
|
2013
|
+
override_knowledge_base_search_type: ("HYBRID" | "SEMANTIC")?
|
2014
|
+
}?
|
2015
|
+
}?
|
2016
|
+
},
|
2017
|
+
]?
|
1837
2018
|
}?
|
1838
2019
|
},
|
1839
2020
|
?description: ::String
|
@@ -1938,7 +2119,7 @@ module Aws
|
|
1938
2119
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QConnect/Client.html#update_assistant_ai_agent-instance_method
|
1939
2120
|
def update_assistant_ai_agent: (
|
1940
2121
|
assistant_id: ::String,
|
1941
|
-
ai_agent_type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE"),
|
2122
|
+
ai_agent_type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER"),
|
1942
2123
|
configuration: {
|
1943
2124
|
ai_agent_id: ::String
|
1944
2125
|
}
|
@@ -2167,7 +2348,7 @@ module Aws
|
|
2167
2348
|
},
|
2168
2349
|
]?
|
2169
2350
|
},
|
2170
|
-
?ai_agent_configuration: Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE"), {
|
2351
|
+
?ai_agent_configuration: Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER"), {
|
2171
2352
|
ai_agent_id: ::String
|
2172
2353
|
}]
|
2173
2354
|
) -> _UpdateSessionResponseSuccess
|
data/sig/errors.rbs
CHANGED
@@ -17,6 +17,9 @@ module Aws
|
|
17
17
|
class ConflictException < ::Aws::Errors::ServiceError
|
18
18
|
def message: () -> ::String
|
19
19
|
end
|
20
|
+
class DependencyFailedException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
20
23
|
class PreconditionFailedException < ::Aws::Errors::ServiceError
|
21
24
|
def message: () -> ::String
|
22
25
|
end
|
data/sig/types.rbs
CHANGED
@@ -12,6 +12,9 @@ module Aws::QConnect
|
|
12
12
|
attr_accessor manual_search_ai_agent_configuration: Types::ManualSearchAIAgentConfiguration
|
13
13
|
attr_accessor answer_recommendation_ai_agent_configuration: Types::AnswerRecommendationAIAgentConfiguration
|
14
14
|
attr_accessor self_service_ai_agent_configuration: Types::SelfServiceAIAgentConfiguration
|
15
|
+
attr_accessor email_response_ai_agent_configuration: Types::EmailResponseAIAgentConfiguration
|
16
|
+
attr_accessor email_overview_ai_agent_configuration: Types::EmailOverviewAIAgentConfiguration
|
17
|
+
attr_accessor email_generative_answer_ai_agent_configuration: Types::EmailGenerativeAnswerAIAgentConfiguration
|
15
18
|
attr_accessor unknown: untyped
|
16
19
|
SENSITIVE: []
|
17
20
|
|
@@ -21,6 +24,12 @@ module Aws::QConnect
|
|
21
24
|
end
|
22
25
|
class SelfServiceAiAgentConfiguration < AIAgentConfiguration
|
23
26
|
end
|
27
|
+
class EmailResponseAiAgentConfiguration < AIAgentConfiguration
|
28
|
+
end
|
29
|
+
class EmailOverviewAiAgentConfiguration < AIAgentConfiguration
|
30
|
+
end
|
31
|
+
class EmailGenerativeAnswerAiAgentConfiguration < AIAgentConfiguration
|
32
|
+
end
|
24
33
|
class Unknown < AIAgentConfiguration
|
25
34
|
end
|
26
35
|
end
|
@@ -36,7 +45,7 @@ module Aws::QConnect
|
|
36
45
|
attr_accessor ai_agent_id: ::String
|
37
46
|
attr_accessor ai_agent_arn: ::String
|
38
47
|
attr_accessor name: ::String
|
39
|
-
attr_accessor type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE")
|
48
|
+
attr_accessor type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER")
|
40
49
|
attr_accessor configuration: Types::AIAgentConfiguration
|
41
50
|
attr_accessor modified_time: ::Time
|
42
51
|
attr_accessor description: ::String
|
@@ -52,7 +61,7 @@ module Aws::QConnect
|
|
52
61
|
attr_accessor assistant_id: ::String
|
53
62
|
attr_accessor assistant_arn: ::String
|
54
63
|
attr_accessor ai_agent_id: ::String
|
55
|
-
attr_accessor type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE")
|
64
|
+
attr_accessor type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER")
|
56
65
|
attr_accessor ai_agent_arn: ::String
|
57
66
|
attr_accessor modified_time: ::Time
|
58
67
|
attr_accessor visibility_status: ("SAVED" | "PUBLISHED")
|
@@ -144,7 +153,7 @@ module Aws::QConnect
|
|
144
153
|
attr_accessor ai_prompt_id: ::String
|
145
154
|
attr_accessor ai_prompt_arn: ::String
|
146
155
|
attr_accessor name: ::String
|
147
|
-
attr_accessor type: ("ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION")
|
156
|
+
attr_accessor type: ("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")
|
148
157
|
attr_accessor template_type: ("TEXT")
|
149
158
|
attr_accessor model_id: ::String
|
150
159
|
attr_accessor api_format: ("ANTHROPIC_CLAUDE_MESSAGES" | "ANTHROPIC_CLAUDE_TEXT_COMPLETIONS" | "MESSAGES" | "TEXT_COMPLETIONS")
|
@@ -163,7 +172,7 @@ module Aws::QConnect
|
|
163
172
|
attr_accessor assistant_id: ::String
|
164
173
|
attr_accessor assistant_arn: ::String
|
165
174
|
attr_accessor ai_prompt_id: ::String
|
166
|
-
attr_accessor type: ("ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION")
|
175
|
+
attr_accessor type: ("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")
|
167
176
|
attr_accessor ai_prompt_arn: ::String
|
168
177
|
attr_accessor modified_time: ::Time
|
169
178
|
attr_accessor template_type: ("TEXT")
|
@@ -300,7 +309,7 @@ module Aws::QConnect
|
|
300
309
|
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
301
310
|
attr_accessor integration_configuration: Types::AssistantIntegrationConfiguration
|
302
311
|
attr_accessor capability_configuration: Types::AssistantCapabilityConfiguration
|
303
|
-
attr_accessor ai_agent_configuration: ::Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE"), Types::AIAgentConfigurationData]
|
312
|
+
attr_accessor ai_agent_configuration: ::Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER"), Types::AIAgentConfigurationData]
|
304
313
|
SENSITIVE: []
|
305
314
|
end
|
306
315
|
|
@@ -320,7 +329,7 @@ module Aws::QConnect
|
|
320
329
|
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
321
330
|
attr_accessor integration_configuration: Types::AssistantIntegrationConfiguration
|
322
331
|
attr_accessor capability_configuration: Types::AssistantCapabilityConfiguration
|
323
|
-
attr_accessor ai_agent_configuration: ::Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE"), Types::AIAgentConfigurationData]
|
332
|
+
attr_accessor ai_agent_configuration: ::Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER"), Types::AIAgentConfigurationData]
|
324
333
|
SENSITIVE: []
|
325
334
|
end
|
326
335
|
|
@@ -495,7 +504,7 @@ module Aws::QConnect
|
|
495
504
|
attr_accessor client_token: ::String
|
496
505
|
attr_accessor assistant_id: ::String
|
497
506
|
attr_accessor name: ::String
|
498
|
-
attr_accessor type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE")
|
507
|
+
attr_accessor type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER")
|
499
508
|
attr_accessor configuration: Types::AIAgentConfiguration
|
500
509
|
attr_accessor visibility_status: ("SAVED" | "PUBLISHED")
|
501
510
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -562,7 +571,7 @@ module Aws::QConnect
|
|
562
571
|
attr_accessor client_token: ::String
|
563
572
|
attr_accessor assistant_id: ::String
|
564
573
|
attr_accessor name: ::String
|
565
|
-
attr_accessor type: ("ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION")
|
574
|
+
attr_accessor type: ("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")
|
566
575
|
attr_accessor template_configuration: Types::AIPromptTemplateConfiguration
|
567
576
|
attr_accessor visibility_status: ("SAVED" | "PUBLISHED")
|
568
577
|
attr_accessor template_type: ("TEXT")
|
@@ -745,7 +754,8 @@ module Aws::QConnect
|
|
745
754
|
attr_accessor description: ::String
|
746
755
|
attr_accessor tags: ::Hash[::String, ::String]
|
747
756
|
attr_accessor tag_filter: Types::TagFilter
|
748
|
-
attr_accessor ai_agent_configuration: ::Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE"), Types::AIAgentConfigurationData]
|
757
|
+
attr_accessor ai_agent_configuration: ::Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER"), Types::AIAgentConfigurationData]
|
758
|
+
attr_accessor contact_arn: ::String
|
749
759
|
SENSITIVE: []
|
750
760
|
end
|
751
761
|
|
@@ -822,6 +832,9 @@ module Aws::QConnect
|
|
822
832
|
attr_accessor intent_detected_data: Types::IntentDetectedDataDetails
|
823
833
|
attr_accessor source_content_data: Types::SourceContentDataDetails
|
824
834
|
attr_accessor generative_chunk_data: Types::GenerativeChunkDataDetails
|
835
|
+
attr_accessor email_response_chunk_data: Types::EmailResponseChunkDataDetails
|
836
|
+
attr_accessor email_overview_chunk_data: Types::EmailOverviewChunkDataDetails
|
837
|
+
attr_accessor email_generative_answer_chunk_data: Types::EmailGenerativeAnswerChunkDataDetails
|
825
838
|
attr_accessor unknown: untyped
|
826
839
|
SENSITIVE: []
|
827
840
|
|
@@ -835,6 +848,12 @@ module Aws::QConnect
|
|
835
848
|
end
|
836
849
|
class GenerativeChunkData < DataDetails
|
837
850
|
end
|
851
|
+
class EmailResponseChunkData < DataDetails
|
852
|
+
end
|
853
|
+
class EmailOverviewChunkData < DataDetails
|
854
|
+
end
|
855
|
+
class EmailGenerativeAnswerChunkData < DataDetails
|
856
|
+
end
|
838
857
|
class Unknown < DataDetails
|
839
858
|
end
|
840
859
|
end
|
@@ -1011,6 +1030,11 @@ module Aws::QConnect
|
|
1011
1030
|
class DeleteQuickResponseResponse < Aws::EmptyStructure
|
1012
1031
|
end
|
1013
1032
|
|
1033
|
+
class DependencyFailedException
|
1034
|
+
attr_accessor message: ::String
|
1035
|
+
SENSITIVE: []
|
1036
|
+
end
|
1037
|
+
|
1014
1038
|
class Document
|
1015
1039
|
attr_accessor content_reference: Types::ContentReference
|
1016
1040
|
attr_accessor title: Types::DocumentText
|
@@ -1024,6 +1048,21 @@ module Aws::QConnect
|
|
1024
1048
|
SENSITIVE: [:text]
|
1025
1049
|
end
|
1026
1050
|
|
1051
|
+
class EmailGenerativeAnswerAIAgentConfiguration
|
1052
|
+
attr_accessor email_generative_answer_ai_prompt_id: ::String
|
1053
|
+
attr_accessor email_query_reformulation_ai_prompt_id: ::String
|
1054
|
+
attr_accessor locale: ::String
|
1055
|
+
attr_accessor association_configurations: ::Array[Types::AssociationConfiguration]
|
1056
|
+
SENSITIVE: []
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
class EmailGenerativeAnswerChunkDataDetails
|
1060
|
+
attr_accessor completion: ::String
|
1061
|
+
attr_accessor references: ::Array[Types::DataSummary]
|
1062
|
+
attr_accessor next_chunk_token: ::String
|
1063
|
+
SENSITIVE: [:completion]
|
1064
|
+
end
|
1065
|
+
|
1027
1066
|
class EmailHeader
|
1028
1067
|
attr_accessor name: ::String
|
1029
1068
|
attr_accessor value: ::String
|
@@ -1043,6 +1082,32 @@ module Aws::QConnect
|
|
1043
1082
|
SENSITIVE: []
|
1044
1083
|
end
|
1045
1084
|
|
1085
|
+
class EmailOverviewAIAgentConfiguration
|
1086
|
+
attr_accessor email_overview_ai_prompt_id: ::String
|
1087
|
+
attr_accessor locale: ::String
|
1088
|
+
SENSITIVE: []
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
class EmailOverviewChunkDataDetails
|
1092
|
+
attr_accessor completion: ::String
|
1093
|
+
attr_accessor next_chunk_token: ::String
|
1094
|
+
SENSITIVE: [:completion]
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
class EmailResponseAIAgentConfiguration
|
1098
|
+
attr_accessor email_response_ai_prompt_id: ::String
|
1099
|
+
attr_accessor email_query_reformulation_ai_prompt_id: ::String
|
1100
|
+
attr_accessor locale: ::String
|
1101
|
+
attr_accessor association_configurations: ::Array[Types::AssociationConfiguration]
|
1102
|
+
SENSITIVE: []
|
1103
|
+
end
|
1104
|
+
|
1105
|
+
class EmailResponseChunkDataDetails
|
1106
|
+
attr_accessor completion: ::String
|
1107
|
+
attr_accessor next_chunk_token: ::String
|
1108
|
+
SENSITIVE: [:completion]
|
1109
|
+
end
|
1110
|
+
|
1046
1111
|
class ExtendedMessageTemplateData
|
1047
1112
|
attr_accessor message_template_arn: ::String
|
1048
1113
|
attr_accessor message_template_id: ::String
|
@@ -2118,7 +2183,7 @@ module Aws::QConnect
|
|
2118
2183
|
attr_accessor document: Types::Document
|
2119
2184
|
attr_accessor relevance_score: ::Float
|
2120
2185
|
attr_accessor relevance_level: ("HIGH" | "MEDIUM" | "LOW")
|
2121
|
-
attr_accessor type: ("KNOWLEDGE_CONTENT" | "GENERATIVE_RESPONSE" | "GENERATIVE_ANSWER" | "DETECTED_INTENT" | "GENERATIVE_ANSWER_CHUNK" | "BLOCKED_GENERATIVE_ANSWER_CHUNK" | "INTENT_ANSWER_CHUNK" | "BLOCKED_INTENT_ANSWER_CHUNK")
|
2186
|
+
attr_accessor type: ("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")
|
2122
2187
|
attr_accessor data: Types::DataSummary
|
2123
2188
|
SENSITIVE: []
|
2124
2189
|
end
|
@@ -2145,7 +2210,7 @@ module Aws::QConnect
|
|
2145
2210
|
|
2146
2211
|
class RemoveAssistantAIAgentRequest
|
2147
2212
|
attr_accessor assistant_id: ::String
|
2148
|
-
attr_accessor ai_agent_type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE")
|
2213
|
+
attr_accessor ai_agent_type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER")
|
2149
2214
|
SENSITIVE: []
|
2150
2215
|
end
|
2151
2216
|
|
@@ -2195,7 +2260,7 @@ module Aws::QConnect
|
|
2195
2260
|
attr_accessor document: Types::Document
|
2196
2261
|
attr_accessor relevance_score: ::Float
|
2197
2262
|
attr_accessor data: Types::DataSummary
|
2198
|
-
attr_accessor type: ("KNOWLEDGE_CONTENT" | "INTENT_ANSWER" | "GENERATIVE_ANSWER" | "GENERATIVE_ANSWER_CHUNK" | "BLOCKED_GENERATIVE_ANSWER_CHUNK" | "INTENT_ANSWER_CHUNK" | "BLOCKED_INTENT_ANSWER_CHUNK")
|
2263
|
+
attr_accessor type: ("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")
|
2199
2264
|
SENSITIVE: []
|
2200
2265
|
end
|
2201
2266
|
|
@@ -2351,7 +2416,7 @@ module Aws::QConnect
|
|
2351
2416
|
attr_accessor tags: ::Hash[::String, ::String]
|
2352
2417
|
attr_accessor integration_configuration: Types::SessionIntegrationConfiguration
|
2353
2418
|
attr_accessor tag_filter: Types::TagFilter
|
2354
|
-
attr_accessor ai_agent_configuration: ::Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE"), Types::AIAgentConfigurationData]
|
2419
|
+
attr_accessor ai_agent_configuration: ::Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER"), Types::AIAgentConfigurationData]
|
2355
2420
|
attr_accessor origin: ("SYSTEM" | "CUSTOMER")
|
2356
2421
|
SENSITIVE: []
|
2357
2422
|
end
|
@@ -2561,7 +2626,7 @@ module Aws::QConnect
|
|
2561
2626
|
|
2562
2627
|
class UpdateAssistantAIAgentRequest
|
2563
2628
|
attr_accessor assistant_id: ::String
|
2564
|
-
attr_accessor ai_agent_type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE")
|
2629
|
+
attr_accessor ai_agent_type: ("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER")
|
2565
2630
|
attr_accessor configuration: Types::AIAgentConfigurationData
|
2566
2631
|
SENSITIVE: []
|
2567
2632
|
end
|
@@ -2671,7 +2736,7 @@ module Aws::QConnect
|
|
2671
2736
|
attr_accessor session_id: ::String
|
2672
2737
|
attr_accessor description: ::String
|
2673
2738
|
attr_accessor tag_filter: Types::TagFilter
|
2674
|
-
attr_accessor ai_agent_configuration: ::Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE"), Types::AIAgentConfigurationData]
|
2739
|
+
attr_accessor ai_agent_configuration: ::Hash[("MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER"), Types::AIAgentConfigurationData]
|
2675
2740
|
SENSITIVE: []
|
2676
2741
|
end
|
2677
2742
|
|