aws-sdk-connect 1.198.0 → 1.200.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-connect/client.rb +115 -34
- data/lib/aws-sdk-connect/client_api.rb +22 -0
- data/lib/aws-sdk-connect/types.rb +109 -14
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +42 -5
- data/sig/types.rbs +22 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2c5141dacc5613a05f0d407f69f2c135179f8b64bb8100cee5ec2c38b10a5ed
|
4
|
+
data.tar.gz: 8d663fcc01fcc57081460cb6f08438755dc1401f195d6cc04a05eb2bae40a7c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f97fa8ceea6477e64c6bba3eefa30f234045ed92c82ffc475c3012848ea558efee31cb5fc73105141e1224c9656fea07fd3e74d1a3ecedff6bc1b5cbb6f36b51
|
7
|
+
data.tar.gz: 8ec754573c48d60d5832e9f37df7c81e86baaf2fe440780e5821a2793546aa950f84a8b82e50578bcf91c0e2431b0c6696260add3e337ab15f8a9a059c1036b4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.200.0 (2025-04-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds following capabilities to Contact Lens Rules APIs 1/ 'ASSIGN_SLA' action and '$.Case.TemplateId' comparison value for 'OnCaseCreate' and 'OnCaseUpdate' event sources 2/ 'OnSlaBreach' Cases event source which supports '$.RelatedItem.SlaConfiguration.Name' comparison value
|
8
|
+
|
9
|
+
1.199.0 (2025-03-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for contact transfers in external voice systems.
|
13
|
+
|
4
14
|
1.198.0 (2025-02-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.200.0
|
@@ -1770,10 +1770,12 @@ module Aws::Connect
|
|
1770
1770
|
req.send_request(options)
|
1771
1771
|
end
|
1772
1772
|
|
1773
|
-
# Only the EMAIL
|
1774
|
-
# are: OUTBOUND, AGENT\_REPLY, and FLOW.
|
1773
|
+
# Only the EMAIL and VOICE channels are supported. The supported
|
1774
|
+
# initiation methods for EMAIL are: OUTBOUND, AGENT\_REPLY, and FLOW.
|
1775
|
+
# For VOICE the supported initiation methods are TRANSFER and the
|
1776
|
+
# subtype connect:ExternalAudio.
|
1775
1777
|
#
|
1776
|
-
# Creates a new EMAIL contact.
|
1778
|
+
# Creates a new EMAIL or VOICE contact.
|
1777
1779
|
#
|
1778
1780
|
# @option params [required, String] :instance_id
|
1779
1781
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -1816,17 +1818,21 @@ module Aws::Connect
|
|
1816
1818
|
# @option params [required, String] :channel
|
1817
1819
|
# The channel for the contact
|
1818
1820
|
#
|
1819
|
-
# CreateContact only supports the EMAIL
|
1820
|
-
# information that states other channels are supported is
|
1821
|
-
# are working to update this topic.
|
1821
|
+
# CreateContact only supports the EMAIL and VOICE channels. The
|
1822
|
+
# following information that states other channels are supported is
|
1823
|
+
# incorrect. We are working to update this topic.
|
1822
1824
|
#
|
1823
1825
|
# @option params [required, String] :initiation_method
|
1824
1826
|
# Indicates how the contact was initiated.
|
1825
1827
|
#
|
1826
1828
|
# CreateContact only supports the following initiation methods:
|
1827
|
-
#
|
1828
|
-
#
|
1829
|
-
#
|
1829
|
+
#
|
1830
|
+
# * For EMAIL: OUTBOUND, AGENT\_REPLY, and FLOW.
|
1831
|
+
#
|
1832
|
+
# * For VOICE: TRANSFER and the subtype connect:ExternalAudio.
|
1833
|
+
#
|
1834
|
+
# The following information that states other initiation methods are
|
1835
|
+
# supported is incorrect. We are working to update this topic.
|
1830
1836
|
#
|
1831
1837
|
# @option params [Integer] :expiry_duration_in_minutes
|
1832
1838
|
# Number of minutes the contact will be active for before expiring
|
@@ -1860,6 +1866,16 @@ module Aws::Connect
|
|
1860
1866
|
#
|
1861
1867
|
# </note>
|
1862
1868
|
#
|
1869
|
+
# @option params [String] :previous_contact_id
|
1870
|
+
# The ID of the previous contact when creating a transfer contact. This
|
1871
|
+
# value can be provided only for external audio contacts. For more
|
1872
|
+
# information, see [Integrate Amazon Connect Contact Lens with external
|
1873
|
+
# voice systems][1] in the *Amazon Connect Administrator Guide*.
|
1874
|
+
#
|
1875
|
+
#
|
1876
|
+
#
|
1877
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
1878
|
+
#
|
1863
1879
|
# @return [Types::CreateContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1864
1880
|
#
|
1865
1881
|
# * {Types::CreateContactResponse#contact_id #contact_id} => String
|
@@ -1903,6 +1919,7 @@ module Aws::Connect
|
|
1903
1919
|
# value_integer: 1,
|
1904
1920
|
# },
|
1905
1921
|
# },
|
1922
|
+
# previous_contact_id: "ContactId",
|
1906
1923
|
# })
|
1907
1924
|
#
|
1908
1925
|
# @example Response structure
|
@@ -3339,13 +3356,13 @@ module Aws::Connect
|
|
3339
3356
|
# instance_id: "InstanceId", # required
|
3340
3357
|
# name: "RuleName", # required
|
3341
3358
|
# trigger_event_source: { # required
|
3342
|
-
# event_source_name: "OnPostCallAnalysisAvailable", # required, accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnRealTimeChatAnalysisAvailable, OnPostChatAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit, OnMetricDataUpdate, OnCaseCreate, OnCaseUpdate
|
3359
|
+
# event_source_name: "OnPostCallAnalysisAvailable", # required, accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnRealTimeChatAnalysisAvailable, OnPostChatAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit, OnMetricDataUpdate, OnCaseCreate, OnCaseUpdate, OnSlaBreach
|
3343
3360
|
# integration_association_id: "IntegrationAssociationId",
|
3344
3361
|
# },
|
3345
3362
|
# function: "RuleFunction", # required
|
3346
3363
|
# actions: [ # required
|
3347
3364
|
# {
|
3348
|
-
# action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, END_ASSOCIATED_TASKS, SUBMIT_AUTO_EVALUATION
|
3365
|
+
# action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, ASSIGN_SLA, END_ASSOCIATED_TASKS, SUBMIT_AUTO_EVALUATION
|
3349
3366
|
# task_action: {
|
3350
3367
|
# name: "TaskNameExpression", # required
|
3351
3368
|
# description: "TaskDescriptionExpression",
|
@@ -3406,6 +3423,24 @@ module Aws::Connect
|
|
3406
3423
|
# },
|
3407
3424
|
# ],
|
3408
3425
|
# },
|
3426
|
+
# assign_sla_action: {
|
3427
|
+
# sla_assignment_type: "CASES", # required, accepts CASES
|
3428
|
+
# case_sla_configuration: {
|
3429
|
+
# name: "SlaName", # required
|
3430
|
+
# type: "CaseField", # required, accepts CaseField
|
3431
|
+
# field_id: "FieldValueId",
|
3432
|
+
# target_field_values: [
|
3433
|
+
# {
|
3434
|
+
# boolean_value: false,
|
3435
|
+
# double_value: 1.0,
|
3436
|
+
# empty_value: {
|
3437
|
+
# },
|
3438
|
+
# string_value: "FieldStringValue",
|
3439
|
+
# },
|
3440
|
+
# ],
|
3441
|
+
# target_sla_minutes: 1, # required
|
3442
|
+
# },
|
3443
|
+
# },
|
3409
3444
|
# end_associated_tasks_action: {
|
3410
3445
|
# },
|
3411
3446
|
# submit_auto_evaluation_action: {
|
@@ -6415,11 +6450,11 @@ module Aws::Connect
|
|
6415
6450
|
# resp.rule.name #=> String
|
6416
6451
|
# resp.rule.rule_id #=> String
|
6417
6452
|
# resp.rule.rule_arn #=> String
|
6418
|
-
# resp.rule.trigger_event_source.event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate"
|
6453
|
+
# resp.rule.trigger_event_source.event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate", "OnSlaBreach"
|
6419
6454
|
# resp.rule.trigger_event_source.integration_association_id #=> String
|
6420
6455
|
# resp.rule.function #=> String
|
6421
6456
|
# resp.rule.actions #=> Array
|
6422
|
-
# resp.rule.actions[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "END_ASSOCIATED_TASKS", "SUBMIT_AUTO_EVALUATION"
|
6457
|
+
# resp.rule.actions[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "ASSIGN_SLA", "END_ASSOCIATED_TASKS", "SUBMIT_AUTO_EVALUATION"
|
6423
6458
|
# resp.rule.actions[0].task_action.name #=> String
|
6424
6459
|
# resp.rule.actions[0].task_action.description #=> String
|
6425
6460
|
# resp.rule.actions[0].task_action.contact_flow_id #=> String
|
@@ -6449,6 +6484,15 @@ module Aws::Connect
|
|
6449
6484
|
# resp.rule.actions[0].update_case_action.fields[0].value.boolean_value #=> Boolean
|
6450
6485
|
# resp.rule.actions[0].update_case_action.fields[0].value.double_value #=> Float
|
6451
6486
|
# resp.rule.actions[0].update_case_action.fields[0].value.string_value #=> String
|
6487
|
+
# resp.rule.actions[0].assign_sla_action.sla_assignment_type #=> String, one of "CASES"
|
6488
|
+
# resp.rule.actions[0].assign_sla_action.case_sla_configuration.name #=> String
|
6489
|
+
# resp.rule.actions[0].assign_sla_action.case_sla_configuration.type #=> String, one of "CaseField"
|
6490
|
+
# resp.rule.actions[0].assign_sla_action.case_sla_configuration.field_id #=> String
|
6491
|
+
# resp.rule.actions[0].assign_sla_action.case_sla_configuration.target_field_values #=> Array
|
6492
|
+
# resp.rule.actions[0].assign_sla_action.case_sla_configuration.target_field_values[0].boolean_value #=> Boolean
|
6493
|
+
# resp.rule.actions[0].assign_sla_action.case_sla_configuration.target_field_values[0].double_value #=> Float
|
6494
|
+
# resp.rule.actions[0].assign_sla_action.case_sla_configuration.target_field_values[0].string_value #=> String
|
6495
|
+
# resp.rule.actions[0].assign_sla_action.case_sla_configuration.target_sla_minutes #=> Integer
|
6452
6496
|
# resp.rule.actions[0].submit_auto_evaluation_action.evaluation_form_id #=> String
|
6453
6497
|
# resp.rule.publish_status #=> String, one of "DRAFT", "PUBLISHED"
|
6454
6498
|
# resp.rule.created_time #=> Time
|
@@ -12247,7 +12291,11 @@ module Aws::Connect
|
|
12247
12291
|
req.send_request(options)
|
12248
12292
|
end
|
12249
12293
|
|
12250
|
-
# Provides a list of analysis segments for a real-time analysis
|
12294
|
+
# Provides a list of analysis segments for a real-time chat analysis
|
12295
|
+
# session. This API supports CHAT channels only.
|
12296
|
+
#
|
12297
|
+
# This API does not support VOICE. If you attempt to use it for VOICE,
|
12298
|
+
# an `InvalidRequestException` occurs.
|
12251
12299
|
#
|
12252
12300
|
# @option params [required, String] :instance_id
|
12253
12301
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -12516,7 +12564,7 @@ module Aws::Connect
|
|
12516
12564
|
# resp = client.list_rules({
|
12517
12565
|
# instance_id: "InstanceId", # required
|
12518
12566
|
# publish_status: "DRAFT", # accepts DRAFT, PUBLISHED
|
12519
|
-
# event_source_name: "OnPostCallAnalysisAvailable", # accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnRealTimeChatAnalysisAvailable, OnPostChatAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit, OnMetricDataUpdate, OnCaseCreate, OnCaseUpdate
|
12567
|
+
# event_source_name: "OnPostCallAnalysisAvailable", # accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnRealTimeChatAnalysisAvailable, OnPostChatAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit, OnMetricDataUpdate, OnCaseCreate, OnCaseUpdate, OnSlaBreach
|
12520
12568
|
# max_results: 1,
|
12521
12569
|
# next_token: "NextToken",
|
12522
12570
|
# })
|
@@ -12527,10 +12575,10 @@ module Aws::Connect
|
|
12527
12575
|
# resp.rule_summary_list[0].name #=> String
|
12528
12576
|
# resp.rule_summary_list[0].rule_id #=> String
|
12529
12577
|
# resp.rule_summary_list[0].rule_arn #=> String
|
12530
|
-
# resp.rule_summary_list[0].event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate"
|
12578
|
+
# resp.rule_summary_list[0].event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate", "OnSlaBreach"
|
12531
12579
|
# resp.rule_summary_list[0].publish_status #=> String, one of "DRAFT", "PUBLISHED"
|
12532
12580
|
# resp.rule_summary_list[0].action_summaries #=> Array
|
12533
|
-
# resp.rule_summary_list[0].action_summaries[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "END_ASSOCIATED_TASKS", "SUBMIT_AUTO_EVALUATION"
|
12581
|
+
# resp.rule_summary_list[0].action_summaries[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "ASSIGN_SLA", "END_ASSOCIATED_TASKS", "SUBMIT_AUTO_EVALUATION"
|
12534
12582
|
# resp.rule_summary_list[0].created_time #=> Time
|
12535
12583
|
# resp.rule_summary_list[0].last_updated_time #=> Time
|
12536
12584
|
# resp.next_token #=> String
|
@@ -15770,6 +15818,10 @@ module Aws::Connect
|
|
15770
15818
|
# @option params [required, String] :traffic_type
|
15771
15819
|
# Denotes the class of traffic.
|
15772
15820
|
#
|
15821
|
+
# <note markdown="1"> Only the CAMPAIGN traffic type is supported.
|
15822
|
+
#
|
15823
|
+
# </note>
|
15824
|
+
#
|
15773
15825
|
# @option params [Types::SourceCampaign] :source_campaign
|
15774
15826
|
# A Campaign object need for Campaign traffic type.
|
15775
15827
|
#
|
@@ -16869,8 +16921,14 @@ module Aws::Connect
|
|
16869
16921
|
# Control Panel (CCP).
|
16870
16922
|
#
|
16871
16923
|
# @option params [String] :description
|
16872
|
-
# A description of the voice contact that
|
16873
|
-
#
|
16924
|
+
# A description of the voice contact that appears in the agent's
|
16925
|
+
# snapshot in the CCP logs. For more information about CCP logs, see
|
16926
|
+
# [Download and review CCP logs][1] in the *Amazon Connect Administrator
|
16927
|
+
# Guide*.
|
16928
|
+
#
|
16929
|
+
#
|
16930
|
+
#
|
16931
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/download-ccp-logs.html
|
16874
16932
|
#
|
16875
16933
|
# @option params [Hash<String,Types::Reference>] :references
|
16876
16934
|
# A formatted URL that is shown to an agent in the Contact Control Panel
|
@@ -17621,16 +17679,21 @@ module Aws::Connect
|
|
17621
17679
|
end
|
17622
17680
|
|
17623
17681
|
# When a contact is being recorded, this API suspends recording whatever
|
17624
|
-
# is selected in the flow configuration: call, screen, or
|
17625
|
-
# call recording or only screen recording is enabled, then
|
17626
|
-
# suspended. For example, you might suspend the screen
|
17627
|
-
# collecting sensitive information, such as a credit
|
17628
|
-
# use ResumeContactRecording to restart recording
|
17682
|
+
# is selected in the flow configuration: call (IVR or agent), screen, or
|
17683
|
+
# both. If only call recording or only screen recording is enabled, then
|
17684
|
+
# it would be suspended. For example, you might suspend the screen
|
17685
|
+
# recording while collecting sensitive information, such as a credit
|
17686
|
+
# card number. Then use [ResumeContactRecording][1] to restart recording
|
17687
|
+
# the screen.
|
17629
17688
|
#
|
17630
17689
|
# The period of time that the recording is suspended is filled with
|
17631
17690
|
# silence in the final recording.
|
17632
17691
|
#
|
17633
|
-
# Voice and screen recordings are supported.
|
17692
|
+
# Voice (IVR, agent) and screen recordings are supported.
|
17693
|
+
#
|
17694
|
+
#
|
17695
|
+
#
|
17696
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ResumeContactRecording.html
|
17634
17697
|
#
|
17635
17698
|
# @option params [required, String] :instance_id
|
17636
17699
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -17761,16 +17824,16 @@ module Aws::Connect
|
|
17761
17824
|
req.send_request(options)
|
17762
17825
|
end
|
17763
17826
|
|
17764
|
-
# Transfers contacts from one agent or queue to
|
17765
|
-
# at any point after a contact is created. You
|
17766
|
-
# another queue by providing the flow which
|
17767
|
-
# the destination queue. This gives you more
|
17768
|
-
# handling and helps you adhere to the service
|
17769
|
-
# guaranteed to your customers.
|
17827
|
+
# Transfers `TASK` or `EMAIL` contacts from one agent or queue to
|
17828
|
+
# another agent or queue at any point after a contact is created. You
|
17829
|
+
# can transfer a contact to another queue by providing the flow which
|
17830
|
+
# orchestrates the contact to the destination queue. This gives you more
|
17831
|
+
# control over contact handling and helps you adhere to the service
|
17832
|
+
# level agreement (SLA) guaranteed to your customers.
|
17770
17833
|
#
|
17771
17834
|
# Note the following requirements:
|
17772
17835
|
#
|
17773
|
-
# * Transfer is supported for
|
17836
|
+
# * Transfer is only supported for `TASK` and `EMAIL` contacts.
|
17774
17837
|
#
|
17775
17838
|
# * Do not use both `QueueId` and `UserId` in the same call.
|
17776
17839
|
#
|
@@ -20152,7 +20215,7 @@ module Aws::Connect
|
|
20152
20215
|
# function: "RuleFunction", # required
|
20153
20216
|
# actions: [ # required
|
20154
20217
|
# {
|
20155
|
-
# action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, END_ASSOCIATED_TASKS, SUBMIT_AUTO_EVALUATION
|
20218
|
+
# action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, ASSIGN_SLA, END_ASSOCIATED_TASKS, SUBMIT_AUTO_EVALUATION
|
20156
20219
|
# task_action: {
|
20157
20220
|
# name: "TaskNameExpression", # required
|
20158
20221
|
# description: "TaskDescriptionExpression",
|
@@ -20213,6 +20276,24 @@ module Aws::Connect
|
|
20213
20276
|
# },
|
20214
20277
|
# ],
|
20215
20278
|
# },
|
20279
|
+
# assign_sla_action: {
|
20280
|
+
# sla_assignment_type: "CASES", # required, accepts CASES
|
20281
|
+
# case_sla_configuration: {
|
20282
|
+
# name: "SlaName", # required
|
20283
|
+
# type: "CaseField", # required, accepts CaseField
|
20284
|
+
# field_id: "FieldValueId",
|
20285
|
+
# target_field_values: [
|
20286
|
+
# {
|
20287
|
+
# boolean_value: false,
|
20288
|
+
# double_value: 1.0,
|
20289
|
+
# empty_value: {
|
20290
|
+
# },
|
20291
|
+
# string_value: "FieldStringValue",
|
20292
|
+
# },
|
20293
|
+
# ],
|
20294
|
+
# target_sla_minutes: 1, # required
|
20295
|
+
# },
|
20296
|
+
# },
|
20216
20297
|
# end_associated_tasks_action: {
|
20217
20298
|
# },
|
20218
20299
|
# submit_auto_evaluation_action: {
|
@@ -21000,7 +21081,7 @@ module Aws::Connect
|
|
21000
21081
|
tracer: tracer
|
21001
21082
|
)
|
21002
21083
|
context[:gem_name] = 'aws-sdk-connect'
|
21003
|
-
context[:gem_version] = '1.
|
21084
|
+
context[:gem_version] = '1.200.0'
|
21004
21085
|
Seahorse::Client::Request.new(handlers, context)
|
21005
21086
|
end
|
21006
21087
|
|
@@ -75,6 +75,7 @@ module Aws::Connect
|
|
75
75
|
ArtifactId = Shapes::StringShape.new(name: 'ArtifactId')
|
76
76
|
ArtifactStatus = Shapes::StringShape.new(name: 'ArtifactStatus')
|
77
77
|
AssignContactCategoryActionDefinition = Shapes::StructureShape.new(name: 'AssignContactCategoryActionDefinition')
|
78
|
+
AssignSlaActionDefinition = Shapes::StructureShape.new(name: 'AssignSlaActionDefinition')
|
78
79
|
AssociateAnalyticsDataSetRequest = Shapes::StructureShape.new(name: 'AssociateAnalyticsDataSetRequest')
|
79
80
|
AssociateAnalyticsDataSetResponse = Shapes::StructureShape.new(name: 'AssociateAnalyticsDataSetResponse')
|
80
81
|
AssociateApprovedOriginRequest = Shapes::StructureShape.new(name: 'AssociateApprovedOriginRequest')
|
@@ -151,6 +152,7 @@ module Aws::Connect
|
|
151
152
|
BucketName = Shapes::StringShape.new(name: 'BucketName')
|
152
153
|
Campaign = Shapes::StructureShape.new(name: 'Campaign')
|
153
154
|
CampaignId = Shapes::StringShape.new(name: 'CampaignId')
|
155
|
+
CaseSlaConfiguration = Shapes::StructureShape.new(name: 'CaseSlaConfiguration')
|
154
156
|
Channel = Shapes::StringShape.new(name: 'Channel')
|
155
157
|
ChannelList = Shapes::ListShape.new(name: 'ChannelList')
|
156
158
|
ChannelToCountMap = Shapes::MapShape.new(name: 'ChannelToCountMap')
|
@@ -1233,6 +1235,10 @@ module Aws::Connect
|
|
1233
1235
|
SingleSelectQuestionRuleCategoryAutomation = Shapes::StructureShape.new(name: 'SingleSelectQuestionRuleCategoryAutomation')
|
1234
1236
|
SingleSelectQuestionRuleCategoryAutomationCondition = Shapes::StringShape.new(name: 'SingleSelectQuestionRuleCategoryAutomationCondition')
|
1235
1237
|
SingleSelectQuestionRuleCategoryAutomationLabel = Shapes::StringShape.new(name: 'SingleSelectQuestionRuleCategoryAutomationLabel')
|
1238
|
+
SlaAssignmentType = Shapes::StringShape.new(name: 'SlaAssignmentType')
|
1239
|
+
SlaFieldValueUnionList = Shapes::ListShape.new(name: 'SlaFieldValueUnionList')
|
1240
|
+
SlaName = Shapes::StringShape.new(name: 'SlaName')
|
1241
|
+
SlaType = Shapes::StringShape.new(name: 'SlaType')
|
1236
1242
|
SnapshotVersion = Shapes::StringShape.new(name: 'SnapshotVersion')
|
1237
1243
|
Sort = Shapes::StructureShape.new(name: 'Sort')
|
1238
1244
|
SortOrder = Shapes::StringShape.new(name: 'SortOrder')
|
@@ -1309,6 +1315,7 @@ module Aws::Connect
|
|
1309
1315
|
TagValueString = Shapes::StringShape.new(name: 'TagValueString')
|
1310
1316
|
TagsList = Shapes::ListShape.new(name: 'TagsList')
|
1311
1317
|
TargetListType = Shapes::StringShape.new(name: 'TargetListType')
|
1318
|
+
TargetSlaMinutes = Shapes::IntegerShape.new(name: 'TargetSlaMinutes')
|
1312
1319
|
TaskActionDefinition = Shapes::StructureShape.new(name: 'TaskActionDefinition')
|
1313
1320
|
TaskDescriptionExpression = Shapes::StringShape.new(name: 'TaskDescriptionExpression')
|
1314
1321
|
TaskNameExpression = Shapes::StringShape.new(name: 'TaskNameExpression')
|
@@ -1670,6 +1677,10 @@ module Aws::Connect
|
|
1670
1677
|
|
1671
1678
|
AssignContactCategoryActionDefinition.struct_class = Types::AssignContactCategoryActionDefinition
|
1672
1679
|
|
1680
|
+
AssignSlaActionDefinition.add_member(:sla_assignment_type, Shapes::ShapeRef.new(shape: SlaAssignmentType, required: true, location_name: "SlaAssignmentType"))
|
1681
|
+
AssignSlaActionDefinition.add_member(:case_sla_configuration, Shapes::ShapeRef.new(shape: CaseSlaConfiguration, location_name: "CaseSlaConfiguration"))
|
1682
|
+
AssignSlaActionDefinition.struct_class = Types::AssignSlaActionDefinition
|
1683
|
+
|
1673
1684
|
AssociateAnalyticsDataSetRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1674
1685
|
AssociateAnalyticsDataSetRequest.add_member(:data_set_id, Shapes::ShapeRef.new(shape: DataSetId, required: true, location_name: "DataSetId"))
|
1675
1686
|
AssociateAnalyticsDataSetRequest.add_member(:target_account_id, Shapes::ShapeRef.new(shape: AWSAccountId, location_name: "TargetAccountId"))
|
@@ -1915,6 +1926,13 @@ module Aws::Connect
|
|
1915
1926
|
Campaign.add_member(:campaign_id, Shapes::ShapeRef.new(shape: CampaignId, location_name: "CampaignId"))
|
1916
1927
|
Campaign.struct_class = Types::Campaign
|
1917
1928
|
|
1929
|
+
CaseSlaConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: SlaName, required: true, location_name: "Name"))
|
1930
|
+
CaseSlaConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: SlaType, required: true, location_name: "Type"))
|
1931
|
+
CaseSlaConfiguration.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldValueId, location_name: "FieldId"))
|
1932
|
+
CaseSlaConfiguration.add_member(:target_field_values, Shapes::ShapeRef.new(shape: SlaFieldValueUnionList, location_name: "TargetFieldValues"))
|
1933
|
+
CaseSlaConfiguration.add_member(:target_sla_minutes, Shapes::ShapeRef.new(shape: TargetSlaMinutes, required: true, location_name: "TargetSlaMinutes"))
|
1934
|
+
CaseSlaConfiguration.struct_class = Types::CaseSlaConfiguration
|
1935
|
+
|
1918
1936
|
ChannelList.member = Shapes::ShapeRef.new(shape: Channel)
|
1919
1937
|
|
1920
1938
|
ChannelToCountMap.key = Shapes::ShapeRef.new(shape: Channel)
|
@@ -2262,6 +2280,7 @@ module Aws::Connect
|
|
2262
2280
|
CreateContactRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
2263
2281
|
CreateContactRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
2264
2282
|
CreateContactRequest.add_member(:segment_attributes, Shapes::ShapeRef.new(shape: SegmentAttributes, location_name: "SegmentAttributes"))
|
2283
|
+
CreateContactRequest.add_member(:previous_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "PreviousContactId"))
|
2265
2284
|
CreateContactRequest.struct_class = Types::CreateContactRequest
|
2266
2285
|
|
2267
2286
|
CreateContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|
@@ -5104,6 +5123,7 @@ module Aws::Connect
|
|
5104
5123
|
RuleAction.add_member(:send_notification_action, Shapes::ShapeRef.new(shape: SendNotificationActionDefinition, location_name: "SendNotificationAction"))
|
5105
5124
|
RuleAction.add_member(:create_case_action, Shapes::ShapeRef.new(shape: CreateCaseActionDefinition, location_name: "CreateCaseAction"))
|
5106
5125
|
RuleAction.add_member(:update_case_action, Shapes::ShapeRef.new(shape: UpdateCaseActionDefinition, location_name: "UpdateCaseAction"))
|
5126
|
+
RuleAction.add_member(:assign_sla_action, Shapes::ShapeRef.new(shape: AssignSlaActionDefinition, location_name: "AssignSlaAction"))
|
5107
5127
|
RuleAction.add_member(:end_associated_tasks_action, Shapes::ShapeRef.new(shape: EndAssociatedTasksActionDefinition, location_name: "EndAssociatedTasksAction"))
|
5108
5128
|
RuleAction.add_member(:submit_auto_evaluation_action, Shapes::ShapeRef.new(shape: SubmitAutoEvaluationActionDefinition, location_name: "SubmitAutoEvaluationAction"))
|
5109
5129
|
RuleAction.struct_class = Types::RuleAction
|
@@ -5507,6 +5527,8 @@ module Aws::Connect
|
|
5507
5527
|
SingleSelectQuestionRuleCategoryAutomation.add_member(:option_ref_id, Shapes::ShapeRef.new(shape: ReferenceId, required: true, location_name: "OptionRefId"))
|
5508
5528
|
SingleSelectQuestionRuleCategoryAutomation.struct_class = Types::SingleSelectQuestionRuleCategoryAutomation
|
5509
5529
|
|
5530
|
+
SlaFieldValueUnionList.member = Shapes::ShapeRef.new(shape: FieldValueUnion)
|
5531
|
+
|
5510
5532
|
Sort.add_member(:field_name, Shapes::ShapeRef.new(shape: SortableFieldName, required: true, location_name: "FieldName"))
|
5511
5533
|
Sort.add_member(:order, Shapes::ShapeRef.new(shape: SortOrder, required: true, location_name: "Order"))
|
5512
5534
|
Sort.struct_class = Types::Sort
|
@@ -634,6 +634,25 @@ module Aws::Connect
|
|
634
634
|
#
|
635
635
|
class AssignContactCategoryActionDefinition < Aws::EmptyStructure; end
|
636
636
|
|
637
|
+
# The AssignSla action definition.
|
638
|
+
#
|
639
|
+
# @!attribute [rw] sla_assignment_type
|
640
|
+
# Type of SLA assignment.
|
641
|
+
# @return [String]
|
642
|
+
#
|
643
|
+
# @!attribute [rw] case_sla_configuration
|
644
|
+
# The SLA configuration for Case SLA Assignment.
|
645
|
+
# @return [Types::CaseSlaConfiguration]
|
646
|
+
#
|
647
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssignSlaActionDefinition AWS API Documentation
|
648
|
+
#
|
649
|
+
class AssignSlaActionDefinition < Struct.new(
|
650
|
+
:sla_assignment_type,
|
651
|
+
:case_sla_configuration)
|
652
|
+
SENSITIVE = []
|
653
|
+
include Aws::Structure
|
654
|
+
end
|
655
|
+
|
637
656
|
# @!attribute [rw] instance_id
|
638
657
|
# The identifier of the Amazon Connect instance. You can [find the
|
639
658
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -1204,8 +1223,10 @@ module Aws::Connect
|
|
1204
1223
|
# @return [Time]
|
1205
1224
|
#
|
1206
1225
|
# @!attribute [rw] disconnect_timestamp
|
1207
|
-
# The
|
1208
|
-
#
|
1226
|
+
# The date and time that the customer endpoint disconnected from the
|
1227
|
+
# current contact, in UTC time. In transfer scenarios, the
|
1228
|
+
# DisconnectTimestamp of the previous contact indicates the date and
|
1229
|
+
# time when that contact ended.
|
1209
1230
|
# @return [Time]
|
1210
1231
|
#
|
1211
1232
|
# @!attribute [rw] initial_contact_id
|
@@ -1958,6 +1979,42 @@ module Aws::Connect
|
|
1958
1979
|
include Aws::Structure
|
1959
1980
|
end
|
1960
1981
|
|
1982
|
+
# The SLA configuration for Case SlaAssignmentType.
|
1983
|
+
#
|
1984
|
+
# @!attribute [rw] name
|
1985
|
+
# Name of an SLA.
|
1986
|
+
# @return [String]
|
1987
|
+
#
|
1988
|
+
# @!attribute [rw] type
|
1989
|
+
# Type of SLA for Case SlaAssignmentType.
|
1990
|
+
# @return [String]
|
1991
|
+
#
|
1992
|
+
# @!attribute [rw] field_id
|
1993
|
+
# Unique identifier of a Case field.
|
1994
|
+
# @return [String]
|
1995
|
+
#
|
1996
|
+
# @!attribute [rw] target_field_values
|
1997
|
+
# Represents a list of target field values for the fieldId specified
|
1998
|
+
# in CaseSlaConfiguration. The SLA is considered met if any one of
|
1999
|
+
# these target field values matches the actual field value.
|
2000
|
+
# @return [Array<Types::FieldValueUnion>]
|
2001
|
+
#
|
2002
|
+
# @!attribute [rw] target_sla_minutes
|
2003
|
+
# Target duration in minutes within which an SLA should be completed.
|
2004
|
+
# @return [Integer]
|
2005
|
+
#
|
2006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CaseSlaConfiguration AWS API Documentation
|
2007
|
+
#
|
2008
|
+
class CaseSlaConfiguration < Struct.new(
|
2009
|
+
:name,
|
2010
|
+
:type,
|
2011
|
+
:field_id,
|
2012
|
+
:target_field_values,
|
2013
|
+
:target_sla_minutes)
|
2014
|
+
SENSITIVE = []
|
2015
|
+
include Aws::Structure
|
2016
|
+
end
|
2017
|
+
|
1961
2018
|
# Chat integration event containing payload to perform different chat
|
1962
2019
|
# actions such as:
|
1963
2020
|
#
|
@@ -2461,8 +2518,10 @@ module Aws::Connect
|
|
2461
2518
|
# @return [Time]
|
2462
2519
|
#
|
2463
2520
|
# @!attribute [rw] disconnect_timestamp
|
2464
|
-
# The
|
2465
|
-
#
|
2521
|
+
# The date and time that the customer endpoint disconnected from the
|
2522
|
+
# current contact, in UTC time. In transfer scenarios, the
|
2523
|
+
# DisconnectTimestamp of the previous contact indicates the date and
|
2524
|
+
# time when that contact ended.
|
2466
2525
|
# @return [Time]
|
2467
2526
|
#
|
2468
2527
|
# @!attribute [rw] last_update_timestamp
|
@@ -3745,18 +3804,22 @@ module Aws::Connect
|
|
3745
3804
|
# @!attribute [rw] channel
|
3746
3805
|
# The channel for the contact
|
3747
3806
|
#
|
3748
|
-
# CreateContact only supports the EMAIL
|
3749
|
-
# information that states other channels are supported is
|
3750
|
-
# We are working to update this topic.
|
3807
|
+
# CreateContact only supports the EMAIL and VOICE channels. The
|
3808
|
+
# following information that states other channels are supported is
|
3809
|
+
# incorrect. We are working to update this topic.
|
3751
3810
|
# @return [String]
|
3752
3811
|
#
|
3753
3812
|
# @!attribute [rw] initiation_method
|
3754
3813
|
# Indicates how the contact was initiated.
|
3755
3814
|
#
|
3756
3815
|
# CreateContact only supports the following initiation methods:
|
3757
|
-
#
|
3758
|
-
#
|
3759
|
-
#
|
3816
|
+
#
|
3817
|
+
# * For EMAIL: OUTBOUND, AGENT\_REPLY, and FLOW.
|
3818
|
+
#
|
3819
|
+
# * For VOICE: TRANSFER and the subtype connect:ExternalAudio.
|
3820
|
+
#
|
3821
|
+
# The following information that states other initiation methods are
|
3822
|
+
# supported is incorrect. We are working to update this topic.
|
3760
3823
|
# @return [String]
|
3761
3824
|
#
|
3762
3825
|
# @!attribute [rw] expiry_duration_in_minutes
|
@@ -3799,6 +3862,18 @@ module Aws::Connect
|
|
3799
3862
|
# </note>
|
3800
3863
|
# @return [Hash<String,Types::SegmentAttributeValue>]
|
3801
3864
|
#
|
3865
|
+
# @!attribute [rw] previous_contact_id
|
3866
|
+
# The ID of the previous contact when creating a transfer contact.
|
3867
|
+
# This value can be provided only for external audio contacts. For
|
3868
|
+
# more information, see [Integrate Amazon Connect Contact Lens with
|
3869
|
+
# external voice systems][1] in the *Amazon Connect Administrator
|
3870
|
+
# Guide*.
|
3871
|
+
#
|
3872
|
+
#
|
3873
|
+
#
|
3874
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
3875
|
+
# @return [String]
|
3876
|
+
#
|
3802
3877
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactRequest AWS API Documentation
|
3803
3878
|
#
|
3804
3879
|
class CreateContactRequest < Struct.new(
|
@@ -3814,7 +3889,8 @@ module Aws::Connect
|
|
3814
3889
|
:initiate_as,
|
3815
3890
|
:name,
|
3816
3891
|
:description,
|
3817
|
-
:segment_attributes
|
3892
|
+
:segment_attributes,
|
3893
|
+
:previous_contact_id)
|
3818
3894
|
SENSITIVE = [:name, :description]
|
3819
3895
|
include Aws::Structure
|
3820
3896
|
end
|
@@ -15409,7 +15485,11 @@ module Aws::Connect
|
|
15409
15485
|
end
|
15410
15486
|
|
15411
15487
|
# @!attribute [rw] channel
|
15412
|
-
# The channel of the contact.
|
15488
|
+
# The channel of the contact.
|
15489
|
+
#
|
15490
|
+
# Only `CHAT` is supported. This API does not support `VOICE`. If you
|
15491
|
+
# attempt to use it for the VOICE channel, an
|
15492
|
+
# `InvalidRequestException` error occurs.
|
15413
15493
|
# @return [String]
|
15414
15494
|
#
|
15415
15495
|
# @!attribute [rw] status
|
@@ -19598,6 +19678,10 @@ module Aws::Connect
|
|
19598
19678
|
# `OnCaseUpdate`.
|
19599
19679
|
# @return [Types::UpdateCaseActionDefinition]
|
19600
19680
|
#
|
19681
|
+
# @!attribute [rw] assign_sla_action
|
19682
|
+
# Information about the assign SLA action.
|
19683
|
+
# @return [Types::AssignSlaActionDefinition]
|
19684
|
+
#
|
19601
19685
|
# @!attribute [rw] end_associated_tasks_action
|
19602
19686
|
# Information about the end associated tasks action.
|
19603
19687
|
#
|
@@ -19618,6 +19702,7 @@ module Aws::Connect
|
|
19618
19702
|
:send_notification_action,
|
19619
19703
|
:create_case_action,
|
19620
19704
|
:update_case_action,
|
19705
|
+
:assign_sla_action,
|
19621
19706
|
:end_associated_tasks_action,
|
19622
19707
|
:submit_auto_evaluation_action)
|
19623
19708
|
SENSITIVE = []
|
@@ -21467,6 +21552,10 @@ module Aws::Connect
|
|
21467
21552
|
#
|
21468
21553
|
# @!attribute [rw] traffic_type
|
21469
21554
|
# Denotes the class of traffic.
|
21555
|
+
#
|
21556
|
+
# <note markdown="1"> Only the CAMPAIGN traffic type is supported.
|
21557
|
+
#
|
21558
|
+
# </note>
|
21470
21559
|
# @return [String]
|
21471
21560
|
#
|
21472
21561
|
# @!attribute [rw] source_campaign
|
@@ -22450,8 +22539,14 @@ module Aws::Connect
|
|
22450
22539
|
# @return [String]
|
22451
22540
|
#
|
22452
22541
|
# @!attribute [rw] description
|
22453
|
-
# A description of the voice contact that
|
22454
|
-
#
|
22542
|
+
# A description of the voice contact that appears in the agent's
|
22543
|
+
# snapshot in the CCP logs. For more information about CCP logs, see
|
22544
|
+
# [Download and review CCP logs][1] in the *Amazon Connect
|
22545
|
+
# Administrator Guide*.
|
22546
|
+
#
|
22547
|
+
#
|
22548
|
+
#
|
22549
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/download-ccp-logs.html
|
22455
22550
|
# @return [String]
|
22456
22551
|
#
|
22457
22552
|
# @!attribute [rw] references
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -433,7 +433,8 @@ module Aws
|
|
433
433
|
value_string: ::String?,
|
434
434
|
value_map: Hash[::String, untyped]?,
|
435
435
|
value_integer: ::Integer?
|
436
|
-
}]
|
436
|
+
}],
|
437
|
+
?previous_contact_id: ::String
|
437
438
|
) -> _CreateContactResponseSuccess
|
438
439
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactResponseSuccess
|
439
440
|
|
@@ -846,13 +847,13 @@ module Aws
|
|
846
847
|
instance_id: ::String,
|
847
848
|
name: ::String,
|
848
849
|
trigger_event_source: {
|
849
|
-
event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate"),
|
850
|
+
event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate" | "OnSlaBreach"),
|
850
851
|
integration_association_id: ::String?
|
851
852
|
},
|
852
853
|
function: ::String,
|
853
854
|
actions: Array[
|
854
855
|
{
|
855
|
-
action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION"),
|
856
|
+
action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "ASSIGN_SLA" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION"),
|
856
857
|
task_action: {
|
857
858
|
name: ::String,
|
858
859
|
description: ::String?,
|
@@ -909,6 +910,24 @@ module Aws
|
|
909
910
|
},
|
910
911
|
]
|
911
912
|
}?,
|
913
|
+
assign_sla_action: {
|
914
|
+
sla_assignment_type: ("CASES"),
|
915
|
+
case_sla_configuration: {
|
916
|
+
name: ::String,
|
917
|
+
type: ("CaseField"),
|
918
|
+
field_id: ::String?,
|
919
|
+
target_field_values: Array[
|
920
|
+
{
|
921
|
+
boolean_value: bool?,
|
922
|
+
double_value: ::Float?,
|
923
|
+
empty_value: {
|
924
|
+
}?,
|
925
|
+
string_value: ::String?
|
926
|
+
},
|
927
|
+
]?,
|
928
|
+
target_sla_minutes: ::Integer
|
929
|
+
}?
|
930
|
+
}?,
|
912
931
|
end_associated_tasks_action: {
|
913
932
|
}?,
|
914
933
|
submit_auto_evaluation_action: {
|
@@ -2579,7 +2598,7 @@ module Aws
|
|
2579
2598
|
def list_rules: (
|
2580
2599
|
instance_id: ::String,
|
2581
2600
|
?publish_status: ("DRAFT" | "PUBLISHED"),
|
2582
|
-
?event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate"),
|
2601
|
+
?event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate" | "OnSlaBreach"),
|
2583
2602
|
?max_results: ::Integer,
|
2584
2603
|
?next_token: ::String
|
2585
2604
|
) -> _ListRulesResponseSuccess
|
@@ -4929,7 +4948,7 @@ module Aws
|
|
4929
4948
|
function: ::String,
|
4930
4949
|
actions: Array[
|
4931
4950
|
{
|
4932
|
-
action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION"),
|
4951
|
+
action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "ASSIGN_SLA" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION"),
|
4933
4952
|
task_action: {
|
4934
4953
|
name: ::String,
|
4935
4954
|
description: ::String?,
|
@@ -4986,6 +5005,24 @@ module Aws
|
|
4986
5005
|
},
|
4987
5006
|
]
|
4988
5007
|
}?,
|
5008
|
+
assign_sla_action: {
|
5009
|
+
sla_assignment_type: ("CASES"),
|
5010
|
+
case_sla_configuration: {
|
5011
|
+
name: ::String,
|
5012
|
+
type: ("CaseField"),
|
5013
|
+
field_id: ::String?,
|
5014
|
+
target_field_values: Array[
|
5015
|
+
{
|
5016
|
+
boolean_value: bool?,
|
5017
|
+
double_value: ::Float?,
|
5018
|
+
empty_value: {
|
5019
|
+
}?,
|
5020
|
+
string_value: ::String?
|
5021
|
+
},
|
5022
|
+
]?,
|
5023
|
+
target_sla_minutes: ::Integer
|
5024
|
+
}?
|
5025
|
+
}?,
|
4989
5026
|
end_associated_tasks_action: {
|
4990
5027
|
}?,
|
4991
5028
|
submit_auto_evaluation_action: {
|
data/sig/types.rbs
CHANGED
@@ -14,7 +14,7 @@ module Aws::Connect
|
|
14
14
|
end
|
15
15
|
|
16
16
|
class ActionSummary
|
17
|
-
attr_accessor action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION")
|
17
|
+
attr_accessor action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "ASSIGN_SLA" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION")
|
18
18
|
SENSITIVE: []
|
19
19
|
end
|
20
20
|
|
@@ -167,6 +167,12 @@ module Aws::Connect
|
|
167
167
|
class AssignContactCategoryActionDefinition < Aws::EmptyStructure
|
168
168
|
end
|
169
169
|
|
170
|
+
class AssignSlaActionDefinition
|
171
|
+
attr_accessor sla_assignment_type: ("CASES")
|
172
|
+
attr_accessor case_sla_configuration: Types::CaseSlaConfiguration
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
170
176
|
class AssociateAnalyticsDataSetRequest
|
171
177
|
attr_accessor instance_id: ::String
|
172
178
|
attr_accessor data_set_id: ::String
|
@@ -478,6 +484,15 @@ module Aws::Connect
|
|
478
484
|
SENSITIVE: []
|
479
485
|
end
|
480
486
|
|
487
|
+
class CaseSlaConfiguration
|
488
|
+
attr_accessor name: ::String
|
489
|
+
attr_accessor type: ("CaseField")
|
490
|
+
attr_accessor field_id: ::String
|
491
|
+
attr_accessor target_field_values: ::Array[Types::FieldValueUnion]
|
492
|
+
attr_accessor target_sla_minutes: ::Integer
|
493
|
+
SENSITIVE: []
|
494
|
+
end
|
495
|
+
|
481
496
|
class ChatEvent
|
482
497
|
attr_accessor type: ("DISCONNECT" | "MESSAGE" | "EVENT")
|
483
498
|
attr_accessor content_type: ::String
|
@@ -873,6 +888,7 @@ module Aws::Connect
|
|
873
888
|
attr_accessor name: ::String
|
874
889
|
attr_accessor description: ::String
|
875
890
|
attr_accessor segment_attributes: ::Hash[::String, Types::SegmentAttributeValue]
|
891
|
+
attr_accessor previous_contact_id: ::String
|
876
892
|
SENSITIVE: [:name, :description]
|
877
893
|
end
|
878
894
|
|
@@ -3493,7 +3509,7 @@ module Aws::Connect
|
|
3493
3509
|
class ListRulesRequest
|
3494
3510
|
attr_accessor instance_id: ::String
|
3495
3511
|
attr_accessor publish_status: ("DRAFT" | "PUBLISHED")
|
3496
|
-
attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate")
|
3512
|
+
attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate" | "OnSlaBreach")
|
3497
3513
|
attr_accessor max_results: ::Integer
|
3498
3514
|
attr_accessor next_token: ::String
|
3499
3515
|
SENSITIVE: []
|
@@ -4533,13 +4549,14 @@ module Aws::Connect
|
|
4533
4549
|
end
|
4534
4550
|
|
4535
4551
|
class RuleAction
|
4536
|
-
attr_accessor action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION")
|
4552
|
+
attr_accessor action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "ASSIGN_SLA" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION")
|
4537
4553
|
attr_accessor task_action: Types::TaskActionDefinition
|
4538
4554
|
attr_accessor event_bridge_action: Types::EventBridgeActionDefinition
|
4539
4555
|
attr_accessor assign_contact_category_action: Types::AssignContactCategoryActionDefinition
|
4540
4556
|
attr_accessor send_notification_action: Types::SendNotificationActionDefinition
|
4541
4557
|
attr_accessor create_case_action: Types::CreateCaseActionDefinition
|
4542
4558
|
attr_accessor update_case_action: Types::UpdateCaseActionDefinition
|
4559
|
+
attr_accessor assign_sla_action: Types::AssignSlaActionDefinition
|
4543
4560
|
attr_accessor end_associated_tasks_action: Types::EndAssociatedTasksActionDefinition
|
4544
4561
|
attr_accessor submit_auto_evaluation_action: Types::SubmitAutoEvaluationActionDefinition
|
4545
4562
|
SENSITIVE: []
|
@@ -4549,7 +4566,7 @@ module Aws::Connect
|
|
4549
4566
|
attr_accessor name: ::String
|
4550
4567
|
attr_accessor rule_id: ::String
|
4551
4568
|
attr_accessor rule_arn: ::String
|
4552
|
-
attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate")
|
4569
|
+
attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate" | "OnSlaBreach")
|
4553
4570
|
attr_accessor publish_status: ("DRAFT" | "PUBLISHED")
|
4554
4571
|
attr_accessor action_summaries: ::Array[Types::ActionSummary]
|
4555
4572
|
attr_accessor created_time: ::Time
|
@@ -4558,7 +4575,7 @@ module Aws::Connect
|
|
4558
4575
|
end
|
4559
4576
|
|
4560
4577
|
class RuleTriggerEventSource
|
4561
|
-
attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate")
|
4578
|
+
attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate" | "OnSlaBreach")
|
4562
4579
|
attr_accessor integration_association_id: ::String
|
4563
4580
|
SENSITIVE: []
|
4564
4581
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.200.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|