aws-sdk-connect 1.199.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +94 -29
- data/lib/aws-sdk-connect/client_api.rb +21 -0
- data/lib/aws-sdk-connect/types.rb +87 -12
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +40 -4
- data/sig/types.rbs +21 -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,11 @@
|
|
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
|
+
|
4
9
|
1.199.0 (2025-03-10)
|
5
10
|
------------------
|
6
11
|
|
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
|
@@ -1797,8 +1799,7 @@ module Aws::Connect
|
|
1797
1799
|
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
1798
1800
|
#
|
1799
1801
|
# @option params [String] :related_contact_id
|
1800
|
-
# The
|
1801
|
-
# is related to the contact starting.
|
1802
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
1802
1803
|
#
|
1803
1804
|
# @option params [Hash<String,String>] :attributes
|
1804
1805
|
# A custom key-value pair using an attribute map. The attributes are
|
@@ -1817,17 +1818,21 @@ module Aws::Connect
|
|
1817
1818
|
# @option params [required, String] :channel
|
1818
1819
|
# The channel for the contact
|
1819
1820
|
#
|
1820
|
-
# CreateContact only supports the EMAIL
|
1821
|
-
# information that states other channels are supported is
|
1822
|
-
# 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.
|
1823
1824
|
#
|
1824
1825
|
# @option params [required, String] :initiation_method
|
1825
1826
|
# Indicates how the contact was initiated.
|
1826
1827
|
#
|
1827
1828
|
# CreateContact only supports the following initiation methods:
|
1828
|
-
#
|
1829
|
-
#
|
1830
|
-
#
|
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.
|
1831
1836
|
#
|
1832
1837
|
# @option params [Integer] :expiry_duration_in_minutes
|
1833
1838
|
# Number of minutes the contact will be active for before expiring
|
@@ -3351,13 +3356,13 @@ module Aws::Connect
|
|
3351
3356
|
# instance_id: "InstanceId", # required
|
3352
3357
|
# name: "RuleName", # required
|
3353
3358
|
# trigger_event_source: { # required
|
3354
|
-
# 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
|
3355
3360
|
# integration_association_id: "IntegrationAssociationId",
|
3356
3361
|
# },
|
3357
3362
|
# function: "RuleFunction", # required
|
3358
3363
|
# actions: [ # required
|
3359
3364
|
# {
|
3360
|
-
# 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
|
3361
3366
|
# task_action: {
|
3362
3367
|
# name: "TaskNameExpression", # required
|
3363
3368
|
# description: "TaskDescriptionExpression",
|
@@ -3418,6 +3423,24 @@ module Aws::Connect
|
|
3418
3423
|
# },
|
3419
3424
|
# ],
|
3420
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
|
+
# },
|
3421
3444
|
# end_associated_tasks_action: {
|
3422
3445
|
# },
|
3423
3446
|
# submit_auto_evaluation_action: {
|
@@ -6427,11 +6450,11 @@ module Aws::Connect
|
|
6427
6450
|
# resp.rule.name #=> String
|
6428
6451
|
# resp.rule.rule_id #=> String
|
6429
6452
|
# resp.rule.rule_arn #=> String
|
6430
|
-
# 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"
|
6431
6454
|
# resp.rule.trigger_event_source.integration_association_id #=> String
|
6432
6455
|
# resp.rule.function #=> String
|
6433
6456
|
# resp.rule.actions #=> Array
|
6434
|
-
# 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"
|
6435
6458
|
# resp.rule.actions[0].task_action.name #=> String
|
6436
6459
|
# resp.rule.actions[0].task_action.description #=> String
|
6437
6460
|
# resp.rule.actions[0].task_action.contact_flow_id #=> String
|
@@ -6461,6 +6484,15 @@ module Aws::Connect
|
|
6461
6484
|
# resp.rule.actions[0].update_case_action.fields[0].value.boolean_value #=> Boolean
|
6462
6485
|
# resp.rule.actions[0].update_case_action.fields[0].value.double_value #=> Float
|
6463
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
|
6464
6496
|
# resp.rule.actions[0].submit_auto_evaluation_action.evaluation_form_id #=> String
|
6465
6497
|
# resp.rule.publish_status #=> String, one of "DRAFT", "PUBLISHED"
|
6466
6498
|
# resp.rule.created_time #=> Time
|
@@ -12532,7 +12564,7 @@ module Aws::Connect
|
|
12532
12564
|
# resp = client.list_rules({
|
12533
12565
|
# instance_id: "InstanceId", # required
|
12534
12566
|
# publish_status: "DRAFT", # accepts DRAFT, PUBLISHED
|
12535
|
-
# 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
|
12536
12568
|
# max_results: 1,
|
12537
12569
|
# next_token: "NextToken",
|
12538
12570
|
# })
|
@@ -12543,10 +12575,10 @@ module Aws::Connect
|
|
12543
12575
|
# resp.rule_summary_list[0].name #=> String
|
12544
12576
|
# resp.rule_summary_list[0].rule_id #=> String
|
12545
12577
|
# resp.rule_summary_list[0].rule_arn #=> String
|
12546
|
-
# 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"
|
12547
12579
|
# resp.rule_summary_list[0].publish_status #=> String, one of "DRAFT", "PUBLISHED"
|
12548
12580
|
# resp.rule_summary_list[0].action_summaries #=> Array
|
12549
|
-
# 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"
|
12550
12582
|
# resp.rule_summary_list[0].created_time #=> Time
|
12551
12583
|
# resp.rule_summary_list[0].last_updated_time #=> Time
|
12552
12584
|
# resp.next_token #=> String
|
@@ -15786,6 +15818,10 @@ module Aws::Connect
|
|
15786
15818
|
# @option params [required, String] :traffic_type
|
15787
15819
|
# Denotes the class of traffic.
|
15788
15820
|
#
|
15821
|
+
# <note markdown="1"> Only the CAMPAIGN traffic type is supported.
|
15822
|
+
#
|
15823
|
+
# </note>
|
15824
|
+
#
|
15789
15825
|
# @option params [Types::SourceCampaign] :source_campaign
|
15790
15826
|
# A Campaign object need for Campaign traffic type.
|
15791
15827
|
#
|
@@ -16885,8 +16921,14 @@ module Aws::Connect
|
|
16885
16921
|
# Control Panel (CCP).
|
16886
16922
|
#
|
16887
16923
|
# @option params [String] :description
|
16888
|
-
# A description of the voice contact that
|
16889
|
-
#
|
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
|
16890
16932
|
#
|
16891
16933
|
# @option params [Hash<String,Types::Reference>] :references
|
16892
16934
|
# A formatted URL that is shown to an agent in the Contact Control Panel
|
@@ -17637,16 +17679,21 @@ module Aws::Connect
|
|
17637
17679
|
end
|
17638
17680
|
|
17639
17681
|
# When a contact is being recorded, this API suspends recording whatever
|
17640
|
-
# is selected in the flow configuration: call, screen, or
|
17641
|
-
# call recording or only screen recording is enabled, then
|
17642
|
-
# suspended. For example, you might suspend the screen
|
17643
|
-
# collecting sensitive information, such as a credit
|
17644
|
-
# 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.
|
17645
17688
|
#
|
17646
17689
|
# The period of time that the recording is suspended is filled with
|
17647
17690
|
# silence in the final recording.
|
17648
17691
|
#
|
17649
|
-
# 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
|
17650
17697
|
#
|
17651
17698
|
# @option params [required, String] :instance_id
|
17652
17699
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -17786,7 +17833,7 @@ module Aws::Connect
|
|
17786
17833
|
#
|
17787
17834
|
# Note the following requirements:
|
17788
17835
|
#
|
17789
|
-
# * Transfer is supported for
|
17836
|
+
# * Transfer is only supported for `TASK` and `EMAIL` contacts.
|
17790
17837
|
#
|
17791
17838
|
# * Do not use both `QueueId` and `UserId` in the same call.
|
17792
17839
|
#
|
@@ -20168,7 +20215,7 @@ module Aws::Connect
|
|
20168
20215
|
# function: "RuleFunction", # required
|
20169
20216
|
# actions: [ # required
|
20170
20217
|
# {
|
20171
|
-
# 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
|
20172
20219
|
# task_action: {
|
20173
20220
|
# name: "TaskNameExpression", # required
|
20174
20221
|
# description: "TaskDescriptionExpression",
|
@@ -20229,6 +20276,24 @@ module Aws::Connect
|
|
20229
20276
|
# },
|
20230
20277
|
# ],
|
20231
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
|
+
# },
|
20232
20297
|
# end_associated_tasks_action: {
|
20233
20298
|
# },
|
20234
20299
|
# submit_auto_evaluation_action: {
|
@@ -21016,7 +21081,7 @@ module Aws::Connect
|
|
21016
21081
|
tracer: tracer
|
21017
21082
|
)
|
21018
21083
|
context[:gem_name] = 'aws-sdk-connect'
|
21019
|
-
context[:gem_version] = '1.
|
21084
|
+
context[:gem_version] = '1.200.0'
|
21020
21085
|
Seahorse::Client::Request.new(handlers, context)
|
21021
21086
|
end
|
21022
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)
|
@@ -5105,6 +5123,7 @@ module Aws::Connect
|
|
5105
5123
|
RuleAction.add_member(:send_notification_action, Shapes::ShapeRef.new(shape: SendNotificationActionDefinition, location_name: "SendNotificationAction"))
|
5106
5124
|
RuleAction.add_member(:create_case_action, Shapes::ShapeRef.new(shape: CreateCaseActionDefinition, location_name: "CreateCaseAction"))
|
5107
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"))
|
5108
5127
|
RuleAction.add_member(:end_associated_tasks_action, Shapes::ShapeRef.new(shape: EndAssociatedTasksActionDefinition, location_name: "EndAssociatedTasksAction"))
|
5109
5128
|
RuleAction.add_member(:submit_auto_evaluation_action, Shapes::ShapeRef.new(shape: SubmitAutoEvaluationActionDefinition, location_name: "SubmitAutoEvaluationAction"))
|
5110
5129
|
RuleAction.struct_class = Types::RuleAction
|
@@ -5508,6 +5527,8 @@ module Aws::Connect
|
|
5508
5527
|
SingleSelectQuestionRuleCategoryAutomation.add_member(:option_ref_id, Shapes::ShapeRef.new(shape: ReferenceId, required: true, location_name: "OptionRefId"))
|
5509
5528
|
SingleSelectQuestionRuleCategoryAutomation.struct_class = Types::SingleSelectQuestionRuleCategoryAutomation
|
5510
5529
|
|
5530
|
+
SlaFieldValueUnionList.member = Shapes::ShapeRef.new(shape: FieldValueUnion)
|
5531
|
+
|
5511
5532
|
Sort.add_member(:field_name, Shapes::ShapeRef.new(shape: SortableFieldName, required: true, location_name: "FieldName"))
|
5512
5533
|
Sort.add_member(:order, Shapes::ShapeRef.new(shape: SortOrder, required: true, location_name: "Order"))
|
5513
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
|
#
|
@@ -3724,8 +3781,7 @@ module Aws::Connect
|
|
3724
3781
|
# @return [String]
|
3725
3782
|
#
|
3726
3783
|
# @!attribute [rw] related_contact_id
|
3727
|
-
# The
|
3728
|
-
# is related to the contact starting.
|
3784
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
3729
3785
|
# @return [String]
|
3730
3786
|
#
|
3731
3787
|
# @!attribute [rw] attributes
|
@@ -3748,18 +3804,22 @@ module Aws::Connect
|
|
3748
3804
|
# @!attribute [rw] channel
|
3749
3805
|
# The channel for the contact
|
3750
3806
|
#
|
3751
|
-
# CreateContact only supports the EMAIL
|
3752
|
-
# information that states other channels are supported is
|
3753
|
-
# 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.
|
3754
3810
|
# @return [String]
|
3755
3811
|
#
|
3756
3812
|
# @!attribute [rw] initiation_method
|
3757
3813
|
# Indicates how the contact was initiated.
|
3758
3814
|
#
|
3759
3815
|
# CreateContact only supports the following initiation methods:
|
3760
|
-
#
|
3761
|
-
#
|
3762
|
-
#
|
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.
|
3763
3823
|
# @return [String]
|
3764
3824
|
#
|
3765
3825
|
# @!attribute [rw] expiry_duration_in_minutes
|
@@ -19618,6 +19678,10 @@ module Aws::Connect
|
|
19618
19678
|
# `OnCaseUpdate`.
|
19619
19679
|
# @return [Types::UpdateCaseActionDefinition]
|
19620
19680
|
#
|
19681
|
+
# @!attribute [rw] assign_sla_action
|
19682
|
+
# Information about the assign SLA action.
|
19683
|
+
# @return [Types::AssignSlaActionDefinition]
|
19684
|
+
#
|
19621
19685
|
# @!attribute [rw] end_associated_tasks_action
|
19622
19686
|
# Information about the end associated tasks action.
|
19623
19687
|
#
|
@@ -19638,6 +19702,7 @@ module Aws::Connect
|
|
19638
19702
|
:send_notification_action,
|
19639
19703
|
:create_case_action,
|
19640
19704
|
:update_case_action,
|
19705
|
+
:assign_sla_action,
|
19641
19706
|
:end_associated_tasks_action,
|
19642
19707
|
:submit_auto_evaluation_action)
|
19643
19708
|
SENSITIVE = []
|
@@ -21487,6 +21552,10 @@ module Aws::Connect
|
|
21487
21552
|
#
|
21488
21553
|
# @!attribute [rw] traffic_type
|
21489
21554
|
# Denotes the class of traffic.
|
21555
|
+
#
|
21556
|
+
# <note markdown="1"> Only the CAMPAIGN traffic type is supported.
|
21557
|
+
#
|
21558
|
+
# </note>
|
21490
21559
|
# @return [String]
|
21491
21560
|
#
|
21492
21561
|
# @!attribute [rw] source_campaign
|
@@ -22470,8 +22539,14 @@ module Aws::Connect
|
|
22470
22539
|
# @return [String]
|
22471
22540
|
#
|
22472
22541
|
# @!attribute [rw] description
|
22473
|
-
# A description of the voice contact that
|
22474
|
-
#
|
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
|
22475
22550
|
# @return [String]
|
22476
22551
|
#
|
22477
22552
|
# @!attribute [rw] references
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -847,13 +847,13 @@ module Aws
|
|
847
847
|
instance_id: ::String,
|
848
848
|
name: ::String,
|
849
849
|
trigger_event_source: {
|
850
|
-
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"),
|
851
851
|
integration_association_id: ::String?
|
852
852
|
},
|
853
853
|
function: ::String,
|
854
854
|
actions: Array[
|
855
855
|
{
|
856
|
-
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"),
|
857
857
|
task_action: {
|
858
858
|
name: ::String,
|
859
859
|
description: ::String?,
|
@@ -910,6 +910,24 @@ module Aws
|
|
910
910
|
},
|
911
911
|
]
|
912
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
|
+
}?,
|
913
931
|
end_associated_tasks_action: {
|
914
932
|
}?,
|
915
933
|
submit_auto_evaluation_action: {
|
@@ -2580,7 +2598,7 @@ module Aws
|
|
2580
2598
|
def list_rules: (
|
2581
2599
|
instance_id: ::String,
|
2582
2600
|
?publish_status: ("DRAFT" | "PUBLISHED"),
|
2583
|
-
?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"),
|
2584
2602
|
?max_results: ::Integer,
|
2585
2603
|
?next_token: ::String
|
2586
2604
|
) -> _ListRulesResponseSuccess
|
@@ -4930,7 +4948,7 @@ module Aws
|
|
4930
4948
|
function: ::String,
|
4931
4949
|
actions: Array[
|
4932
4950
|
{
|
4933
|
-
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"),
|
4934
4952
|
task_action: {
|
4935
4953
|
name: ::String,
|
4936
4954
|
description: ::String?,
|
@@ -4987,6 +5005,24 @@ module Aws
|
|
4987
5005
|
},
|
4988
5006
|
]
|
4989
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
|
+
}?,
|
4990
5026
|
end_associated_tasks_action: {
|
4991
5027
|
}?,
|
4992
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
|
@@ -3494,7 +3509,7 @@ module Aws::Connect
|
|
3494
3509
|
class ListRulesRequest
|
3495
3510
|
attr_accessor instance_id: ::String
|
3496
3511
|
attr_accessor publish_status: ("DRAFT" | "PUBLISHED")
|
3497
|
-
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")
|
3498
3513
|
attr_accessor max_results: ::Integer
|
3499
3514
|
attr_accessor next_token: ::String
|
3500
3515
|
SENSITIVE: []
|
@@ -4534,13 +4549,14 @@ module Aws::Connect
|
|
4534
4549
|
end
|
4535
4550
|
|
4536
4551
|
class RuleAction
|
4537
|
-
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")
|
4538
4553
|
attr_accessor task_action: Types::TaskActionDefinition
|
4539
4554
|
attr_accessor event_bridge_action: Types::EventBridgeActionDefinition
|
4540
4555
|
attr_accessor assign_contact_category_action: Types::AssignContactCategoryActionDefinition
|
4541
4556
|
attr_accessor send_notification_action: Types::SendNotificationActionDefinition
|
4542
4557
|
attr_accessor create_case_action: Types::CreateCaseActionDefinition
|
4543
4558
|
attr_accessor update_case_action: Types::UpdateCaseActionDefinition
|
4559
|
+
attr_accessor assign_sla_action: Types::AssignSlaActionDefinition
|
4544
4560
|
attr_accessor end_associated_tasks_action: Types::EndAssociatedTasksActionDefinition
|
4545
4561
|
attr_accessor submit_auto_evaluation_action: Types::SubmitAutoEvaluationActionDefinition
|
4546
4562
|
SENSITIVE: []
|
@@ -4550,7 +4566,7 @@ module Aws::Connect
|
|
4550
4566
|
attr_accessor name: ::String
|
4551
4567
|
attr_accessor rule_id: ::String
|
4552
4568
|
attr_accessor rule_arn: ::String
|
4553
|
-
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")
|
4554
4570
|
attr_accessor publish_status: ("DRAFT" | "PUBLISHED")
|
4555
4571
|
attr_accessor action_summaries: ::Array[Types::ActionSummary]
|
4556
4572
|
attr_accessor created_time: ::Time
|
@@ -4559,7 +4575,7 @@ module Aws::Connect
|
|
4559
4575
|
end
|
4560
4576
|
|
4561
4577
|
class RuleTriggerEventSource
|
4562
|
-
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")
|
4563
4579
|
attr_accessor integration_association_id: ::String
|
4564
4580
|
SENSITIVE: []
|
4565
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
|