aws-sdk-connect 1.142.0 → 1.144.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +307 -29
- data/lib/aws-sdk-connect/client_api.rb +156 -0
- data/lib/aws-sdk-connect/endpoints.rb +56 -0
- data/lib/aws-sdk-connect/errors.rb +16 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-connect/types.rb +373 -41
- data/lib/aws-sdk-connect.rb +1 -1
- 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: 18f3da201be1a8e9e2bb80ceb05fd312beb6ab3556cf5d2880065a8a69632780
|
4
|
+
data.tar.gz: ae5abf718b1659b2562f6701ae491e00c27810f204e31e7fe020cf7d00c578b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe0e67d9a72f2296cd842b6ee46516f23f1169d75edccb476f4bc0772ef6c3373ad0d69b61ebee5a1abfc5100cc0ec523f999d9885a209ab3e0b9a4a391bc11f
|
7
|
+
data.tar.gz: 848150ba6317411d7838202080b194e44b182b62af403f0e36117959f019e9fc41327b8bf99d52207e4298a1496af795414a039398991c82f132396beaed8ed7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.144.0 (2023-12-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds relatedContactId field to StartOutboundVoiceContact API input. Introduces PauseContact API and ResumeContact API for Task contacts. Adds pause duration, number of pauses, timestamps for last paused and resumed events to DescribeContact API response. Adds new Rule type and new Rule action.
|
8
|
+
|
9
|
+
1.143.0 (2023-12-14)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for more granular billing using tags (key:value pairs)
|
13
|
+
|
4
14
|
1.142.0 (2023-12-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.144.0
|
@@ -1324,7 +1324,7 @@ module Aws::Connect
|
|
1324
1324
|
#
|
1325
1325
|
# @option params [Hash<String,String>] :tags
|
1326
1326
|
# The tags used to organize, track, or control access for this resource.
|
1327
|
-
# For example, \\\{ "
|
1327
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
1328
1328
|
# "key2":"value2"\\} \\}.
|
1329
1329
|
#
|
1330
1330
|
# @option params [String] :client_token
|
@@ -1402,7 +1402,7 @@ module Aws::Connect
|
|
1402
1402
|
#
|
1403
1403
|
# @option params [Hash<String,String>] :tags
|
1404
1404
|
# The tags used to organize, track, or control access for this resource.
|
1405
|
-
# For example, \\\{ "
|
1405
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
1406
1406
|
# "key2":"value2"\\} \\}.
|
1407
1407
|
#
|
1408
1408
|
# @return [Types::CreateAgentStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1475,7 +1475,7 @@ module Aws::Connect
|
|
1475
1475
|
#
|
1476
1476
|
# @option params [Hash<String,String>] :tags
|
1477
1477
|
# The tags used to organize, track, or control access for this resource.
|
1478
|
-
# For example, \\\{ "
|
1478
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
1479
1479
|
# "key2":"value2"\\} \\}.
|
1480
1480
|
#
|
1481
1481
|
# @return [Types::CreateContactFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1536,7 +1536,7 @@ module Aws::Connect
|
|
1536
1536
|
#
|
1537
1537
|
# @option params [Hash<String,String>] :tags
|
1538
1538
|
# The tags used to organize, track, or control access for this resource.
|
1539
|
-
# For example, \\\{ "
|
1539
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
1540
1540
|
# "key2":"value2"\\} \\}.
|
1541
1541
|
#
|
1542
1542
|
# @option params [String] :client_token
|
@@ -1747,7 +1747,7 @@ module Aws::Connect
|
|
1747
1747
|
#
|
1748
1748
|
# @option params [Hash<String,String>] :tags
|
1749
1749
|
# The tags used to organize, track, or control access for this resource.
|
1750
|
-
# For example, \\\{ "
|
1750
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
1751
1751
|
# "key2":"value2"\\} \\}.
|
1752
1752
|
#
|
1753
1753
|
# @return [Types::CreateHoursOfOperationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1900,7 +1900,7 @@ module Aws::Connect
|
|
1900
1900
|
#
|
1901
1901
|
# @option params [Hash<String,String>] :tags
|
1902
1902
|
# The tags used to organize, track, or control access for this resource.
|
1903
|
-
# For example, \\\{ "
|
1903
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
1904
1904
|
# "key2":"value2"\\} \\}.
|
1905
1905
|
#
|
1906
1906
|
# @return [Types::CreateIntegrationAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1916,7 +1916,7 @@ module Aws::Connect
|
|
1916
1916
|
# integration_arn: "ARN", # required
|
1917
1917
|
# source_application_url: "URI",
|
1918
1918
|
# source_application_name: "SourceApplicationName",
|
1919
|
-
# source_type: "SALESFORCE", # accepts SALESFORCE, ZENDESK
|
1919
|
+
# source_type: "SALESFORCE", # accepts SALESFORCE, ZENDESK, CASES
|
1920
1920
|
# tags: {
|
1921
1921
|
# "TagKey" => "TagValue",
|
1922
1922
|
# },
|
@@ -2166,7 +2166,7 @@ module Aws::Connect
|
|
2166
2166
|
#
|
2167
2167
|
# @option params [Hash<String,String>] :tags
|
2168
2168
|
# The tags used to organize, track, or control access for this resource.
|
2169
|
-
# For example, \\\{ "
|
2169
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
2170
2170
|
# "key2":"value2"\\} \\}.
|
2171
2171
|
#
|
2172
2172
|
# @return [Types::CreatePromptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -2261,7 +2261,7 @@ module Aws::Connect
|
|
2261
2261
|
#
|
2262
2262
|
# @option params [Hash<String,String>] :tags
|
2263
2263
|
# The tags used to organize, track, or control access for this resource.
|
2264
|
-
# For example, \\\{ "
|
2264
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
2265
2265
|
# "key2":"value2"\\} \\}.
|
2266
2266
|
#
|
2267
2267
|
# @return [Types::CreateQueueResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -2323,7 +2323,7 @@ module Aws::Connect
|
|
2323
2323
|
#
|
2324
2324
|
# @option params [Hash<String,String>] :tags
|
2325
2325
|
# The tags used to organize, track, or control access for this resource.
|
2326
|
-
# For example, \\\{ "
|
2326
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
2327
2327
|
# "key2":"value2"\\} \\}.
|
2328
2328
|
#
|
2329
2329
|
# @return [Types::CreateQuickConnectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -2410,7 +2410,7 @@ module Aws::Connect
|
|
2410
2410
|
#
|
2411
2411
|
# @option params [Hash<String,String>] :tags
|
2412
2412
|
# The tags used to organize, track, or control access for this resource.
|
2413
|
-
# For example, \\\{ "
|
2413
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
2414
2414
|
# "key2":"value2"\\} \\}.
|
2415
2415
|
#
|
2416
2416
|
# @option params [String] :agent_availability_timer
|
@@ -2524,13 +2524,13 @@ module Aws::Connect
|
|
2524
2524
|
# instance_id: "InstanceId", # required
|
2525
2525
|
# name: "RuleName", # required
|
2526
2526
|
# trigger_event_source: { # required
|
2527
|
-
# event_source_name: "OnPostCallAnalysisAvailable", # required, accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnRealTimeChatAnalysisAvailable, OnPostChatAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit, OnMetricDataUpdate
|
2527
|
+
# event_source_name: "OnPostCallAnalysisAvailable", # required, accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnRealTimeChatAnalysisAvailable, OnPostChatAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit, OnMetricDataUpdate, OnCaseCreate, OnCaseUpdate
|
2528
2528
|
# integration_association_id: "IntegrationAssociationId",
|
2529
2529
|
# },
|
2530
2530
|
# function: "RuleFunction", # required
|
2531
2531
|
# actions: [ # required
|
2532
2532
|
# {
|
2533
|
-
# action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION
|
2533
|
+
# action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, END_ASSOCIATED_TASKS
|
2534
2534
|
# task_action: {
|
2535
2535
|
# name: "TaskNameExpression", # required
|
2536
2536
|
# description: "TaskDescriptionExpression",
|
@@ -2559,6 +2559,37 @@ module Aws::Connect
|
|
2559
2559
|
# user_ids: ["UserId"],
|
2560
2560
|
# },
|
2561
2561
|
# },
|
2562
|
+
# create_case_action: {
|
2563
|
+
# fields: [ # required
|
2564
|
+
# {
|
2565
|
+
# id: "FieldValueId", # required
|
2566
|
+
# value: { # required
|
2567
|
+
# boolean_value: false,
|
2568
|
+
# double_value: 1.0,
|
2569
|
+
# empty_value: {
|
2570
|
+
# },
|
2571
|
+
# string_value: "FieldStringValue",
|
2572
|
+
# },
|
2573
|
+
# },
|
2574
|
+
# ],
|
2575
|
+
# template_id: "TemplateId", # required
|
2576
|
+
# },
|
2577
|
+
# update_case_action: {
|
2578
|
+
# fields: [ # required
|
2579
|
+
# {
|
2580
|
+
# id: "FieldValueId", # required
|
2581
|
+
# value: { # required
|
2582
|
+
# boolean_value: false,
|
2583
|
+
# double_value: 1.0,
|
2584
|
+
# empty_value: {
|
2585
|
+
# },
|
2586
|
+
# string_value: "FieldStringValue",
|
2587
|
+
# },
|
2588
|
+
# },
|
2589
|
+
# ],
|
2590
|
+
# },
|
2591
|
+
# end_associated_tasks_action: {
|
2592
|
+
# },
|
2562
2593
|
# },
|
2563
2594
|
# ],
|
2564
2595
|
# publish_status: "DRAFT", # required, accepts DRAFT, PUBLISHED
|
@@ -2605,7 +2636,7 @@ module Aws::Connect
|
|
2605
2636
|
#
|
2606
2637
|
# @option params [Hash<String,String>] :tags
|
2607
2638
|
# The tags used to organize, track, or control access for this resource.
|
2608
|
-
# For example, \\\{ "
|
2639
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
2609
2640
|
# "key2":"value2"\\} \\}.
|
2610
2641
|
#
|
2611
2642
|
# @option params [Hash<String,String>] :allowed_access_control_tags
|
@@ -2833,7 +2864,7 @@ module Aws::Connect
|
|
2833
2864
|
#
|
2834
2865
|
# @option params [Hash<String,String>] :tags
|
2835
2866
|
# The tags used to organize, track, or control access for this resource.
|
2836
|
-
# For example, \\\{ "
|
2867
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
2837
2868
|
# "key2":"value2"\\} \\}.
|
2838
2869
|
#
|
2839
2870
|
# @return [Types::CreateTrafficDistributionGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -2886,7 +2917,7 @@ module Aws::Connect
|
|
2886
2917
|
#
|
2887
2918
|
# @option params [Hash<String,String>] :tags
|
2888
2919
|
# The tags used to organize, track, or control access for this resource.
|
2889
|
-
# For example, \\\{ "
|
2920
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
2890
2921
|
# "key2":"value2"\\} \\}.
|
2891
2922
|
#
|
2892
2923
|
# @return [Types::CreateUseCaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -2984,7 +3015,7 @@ module Aws::Connect
|
|
2984
3015
|
#
|
2985
3016
|
# @option params [Hash<String,String>] :tags
|
2986
3017
|
# The tags used to organize, track, or control access for this resource.
|
2987
|
-
# For example, \\\{ "
|
3018
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
2988
3019
|
# "key2":"value2"\\} \\}.
|
2989
3020
|
#
|
2990
3021
|
# @return [Types::CreateUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -3054,7 +3085,7 @@ module Aws::Connect
|
|
3054
3085
|
#
|
3055
3086
|
# @option params [Hash<String,String>] :tags
|
3056
3087
|
# The tags used to organize, track, or control access for this resource.
|
3057
|
-
# For example, \\\{ "
|
3088
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
3058
3089
|
# "key2":"value2"\\} \\}.
|
3059
3090
|
#
|
3060
3091
|
# @return [Types::CreateUserHierarchyGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -3296,7 +3327,7 @@ module Aws::Connect
|
|
3296
3327
|
#
|
3297
3328
|
# @option params [Hash<String,String>] :tags
|
3298
3329
|
# The tags used to organize, track, or control access for this resource.
|
3299
|
-
# For example, \\\{ "
|
3330
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
3300
3331
|
# "key2":"value2"\\} \\}.
|
3301
3332
|
#
|
3302
3333
|
# @return [Types::CreateVocabularyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -4172,12 +4203,19 @@ module Aws::Connect
|
|
4172
4203
|
# resp.contact.queue_info.enqueue_timestamp #=> Time
|
4173
4204
|
# resp.contact.agent_info.id #=> String
|
4174
4205
|
# resp.contact.agent_info.connected_to_agent_timestamp #=> Time
|
4206
|
+
# resp.contact.agent_info.agent_pause_duration_in_seconds #=> Integer
|
4175
4207
|
# resp.contact.initiation_timestamp #=> Time
|
4176
4208
|
# resp.contact.disconnect_timestamp #=> Time
|
4177
4209
|
# resp.contact.last_update_timestamp #=> Time
|
4210
|
+
# resp.contact.last_paused_timestamp #=> Time
|
4211
|
+
# resp.contact.last_resumed_timestamp #=> Time
|
4212
|
+
# resp.contact.total_pause_count #=> Integer
|
4213
|
+
# resp.contact.total_pause_duration_in_seconds #=> Integer
|
4178
4214
|
# resp.contact.scheduled_timestamp #=> Time
|
4179
4215
|
# resp.contact.related_contact_id #=> String
|
4180
4216
|
# resp.contact.wisdom_info.session_arn #=> String
|
4217
|
+
# resp.contact.tags #=> Hash
|
4218
|
+
# resp.contact.tags["ContactTagKey"] #=> String
|
4181
4219
|
#
|
4182
4220
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContact AWS API Documentation
|
4183
4221
|
#
|
@@ -4958,11 +4996,11 @@ module Aws::Connect
|
|
4958
4996
|
# resp.rule.name #=> String
|
4959
4997
|
# resp.rule.rule_id #=> String
|
4960
4998
|
# resp.rule.rule_arn #=> String
|
4961
|
-
# resp.rule.trigger_event_source.event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate"
|
4999
|
+
# resp.rule.trigger_event_source.event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate"
|
4962
5000
|
# resp.rule.trigger_event_source.integration_association_id #=> String
|
4963
5001
|
# resp.rule.function #=> String
|
4964
5002
|
# resp.rule.actions #=> Array
|
4965
|
-
# resp.rule.actions[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION"
|
5003
|
+
# 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"
|
4966
5004
|
# resp.rule.actions[0].task_action.name #=> String
|
4967
5005
|
# resp.rule.actions[0].task_action.description #=> String
|
4968
5006
|
# resp.rule.actions[0].task_action.contact_flow_id #=> String
|
@@ -4978,6 +5016,17 @@ module Aws::Connect
|
|
4978
5016
|
# resp.rule.actions[0].send_notification_action.recipient.user_tags["String"] #=> String
|
4979
5017
|
# resp.rule.actions[0].send_notification_action.recipient.user_ids #=> Array
|
4980
5018
|
# resp.rule.actions[0].send_notification_action.recipient.user_ids[0] #=> String
|
5019
|
+
# resp.rule.actions[0].create_case_action.fields #=> Array
|
5020
|
+
# resp.rule.actions[0].create_case_action.fields[0].id #=> String
|
5021
|
+
# resp.rule.actions[0].create_case_action.fields[0].value.boolean_value #=> Boolean
|
5022
|
+
# resp.rule.actions[0].create_case_action.fields[0].value.double_value #=> Float
|
5023
|
+
# resp.rule.actions[0].create_case_action.fields[0].value.string_value #=> String
|
5024
|
+
# resp.rule.actions[0].create_case_action.template_id #=> String
|
5025
|
+
# resp.rule.actions[0].update_case_action.fields #=> Array
|
5026
|
+
# resp.rule.actions[0].update_case_action.fields[0].id #=> String
|
5027
|
+
# resp.rule.actions[0].update_case_action.fields[0].value.boolean_value #=> Boolean
|
5028
|
+
# resp.rule.actions[0].update_case_action.fields[0].value.double_value #=> Float
|
5029
|
+
# resp.rule.actions[0].update_case_action.fields[0].value.string_value #=> String
|
4981
5030
|
# resp.rule.publish_status #=> String, one of "DRAFT", "PUBLISHED"
|
4982
5031
|
# resp.rule.created_time #=> Time
|
4983
5032
|
# resp.rule.last_updated_time #=> Time
|
@@ -6916,6 +6965,13 @@ module Aws::Connect
|
|
6916
6965
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
6917
6966
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype
|
6918
6967
|
#
|
6968
|
+
# AVG\_ACTIVE\_TIME
|
6969
|
+
#
|
6970
|
+
# : Unit: Seconds
|
6971
|
+
#
|
6972
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
6973
|
+
# Agent Hierarchy
|
6974
|
+
#
|
6919
6975
|
# AVG\_AFTER\_CONTACT\_WORK\_TIME
|
6920
6976
|
#
|
6921
6977
|
# : Unit: Seconds
|
@@ -6945,6 +7001,13 @@ module Aws::Connect
|
|
6945
7001
|
#
|
6946
7002
|
# </note>
|
6947
7003
|
#
|
7004
|
+
# AVG\_AGENT\_PAUSE\_TIME
|
7005
|
+
#
|
7006
|
+
# : Unit: Seconds
|
7007
|
+
#
|
7008
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7009
|
+
# Agent Hierarchy
|
7010
|
+
#
|
6948
7011
|
# AVG\_CONTACT\_DURATION
|
6949
7012
|
#
|
6950
7013
|
# : Unit: Seconds
|
@@ -7692,7 +7755,7 @@ module Aws::Connect
|
|
7692
7755
|
#
|
7693
7756
|
# @option params [Hash<String,String>] :tags
|
7694
7757
|
# The tags used to organize, track, or control access for this resource.
|
7695
|
-
# For example, \\\{ "
|
7758
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
7696
7759
|
# "key2":"value2"\\} \\}.
|
7697
7760
|
#
|
7698
7761
|
# @option params [String] :client_token
|
@@ -8746,7 +8809,7 @@ module Aws::Connect
|
|
8746
8809
|
# resp.integration_association_summary_list[0].integration_arn #=> String
|
8747
8810
|
# resp.integration_association_summary_list[0].source_application_url #=> String
|
8748
8811
|
# resp.integration_association_summary_list[0].source_application_name #=> String
|
8749
|
-
# resp.integration_association_summary_list[0].source_type #=> String, one of "SALESFORCE", "ZENDESK"
|
8812
|
+
# resp.integration_association_summary_list[0].source_type #=> String, one of "SALESFORCE", "ZENDESK", "CASES"
|
8750
8813
|
# resp.next_token #=> String
|
8751
8814
|
#
|
8752
8815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListIntegrationAssociations AWS API Documentation
|
@@ -9579,7 +9642,7 @@ module Aws::Connect
|
|
9579
9642
|
# resp = client.list_rules({
|
9580
9643
|
# instance_id: "InstanceId", # required
|
9581
9644
|
# publish_status: "DRAFT", # accepts DRAFT, PUBLISHED
|
9582
|
-
# event_source_name: "OnPostCallAnalysisAvailable", # accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnRealTimeChatAnalysisAvailable, OnPostChatAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit, OnMetricDataUpdate
|
9645
|
+
# event_source_name: "OnPostCallAnalysisAvailable", # accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnRealTimeChatAnalysisAvailable, OnPostChatAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit, OnMetricDataUpdate, OnCaseCreate, OnCaseUpdate
|
9583
9646
|
# max_results: 1,
|
9584
9647
|
# next_token: "NextToken",
|
9585
9648
|
# })
|
@@ -9590,10 +9653,10 @@ module Aws::Connect
|
|
9590
9653
|
# resp.rule_summary_list[0].name #=> String
|
9591
9654
|
# resp.rule_summary_list[0].rule_id #=> String
|
9592
9655
|
# resp.rule_summary_list[0].rule_arn #=> String
|
9593
|
-
# resp.rule_summary_list[0].event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate"
|
9656
|
+
# resp.rule_summary_list[0].event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate"
|
9594
9657
|
# resp.rule_summary_list[0].publish_status #=> String, one of "DRAFT", "PUBLISHED"
|
9595
9658
|
# resp.rule_summary_list[0].action_summaries #=> Array
|
9596
|
-
# resp.rule_summary_list[0].action_summaries[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION"
|
9659
|
+
# 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"
|
9597
9660
|
# resp.rule_summary_list[0].created_time #=> Time
|
9598
9661
|
# resp.rule_summary_list[0].last_updated_time #=> Time
|
9599
9662
|
# resp.next_token #=> String
|
@@ -10393,6 +10456,37 @@ module Aws::Connect
|
|
10393
10456
|
req.send_request(options)
|
10394
10457
|
end
|
10395
10458
|
|
10459
|
+
# Allows pausing an ongoing task contact.
|
10460
|
+
#
|
10461
|
+
# @option params [required, String] :contact_id
|
10462
|
+
# The identifier of the contact.
|
10463
|
+
#
|
10464
|
+
# @option params [required, String] :instance_id
|
10465
|
+
# The identifier of the Amazon Connect instance. You can find the
|
10466
|
+
# `instanceId` in the ARN of the instance.
|
10467
|
+
#
|
10468
|
+
# @option params [String] :contact_flow_id
|
10469
|
+
# The identifier of the flow.
|
10470
|
+
#
|
10471
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
10472
|
+
#
|
10473
|
+
# @example Request syntax with placeholder values
|
10474
|
+
#
|
10475
|
+
# resp = client.pause_contact({
|
10476
|
+
# contact_id: "ContactId", # required
|
10477
|
+
# instance_id: "InstanceId", # required
|
10478
|
+
# contact_flow_id: "ContactFlowId",
|
10479
|
+
# })
|
10480
|
+
#
|
10481
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PauseContact AWS API Documentation
|
10482
|
+
#
|
10483
|
+
# @overload pause_contact(params = {})
|
10484
|
+
# @param [Hash] params ({})
|
10485
|
+
def pause_contact(params = {}, options = {})
|
10486
|
+
req = build_request(:pause_contact, params)
|
10487
|
+
req.send_request(options)
|
10488
|
+
end
|
10489
|
+
|
10396
10490
|
# Changes the current status of a user or agent in Amazon Connect. If
|
10397
10491
|
# the agent is currently handling a contact, this sets the agent's next
|
10398
10492
|
# status.
|
@@ -10572,6 +10666,37 @@ module Aws::Connect
|
|
10572
10666
|
req.send_request(options)
|
10573
10667
|
end
|
10574
10668
|
|
10669
|
+
# Allows resuming a task contact in a paused state.
|
10670
|
+
#
|
10671
|
+
# @option params [required, String] :contact_id
|
10672
|
+
# The identifier of the contact.
|
10673
|
+
#
|
10674
|
+
# @option params [required, String] :instance_id
|
10675
|
+
# The identifier of the Amazon Connect instance. You can find the
|
10676
|
+
# `instanceId` in the ARN of the instance.
|
10677
|
+
#
|
10678
|
+
# @option params [String] :contact_flow_id
|
10679
|
+
# The identifier of the flow.
|
10680
|
+
#
|
10681
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
10682
|
+
#
|
10683
|
+
# @example Request syntax with placeholder values
|
10684
|
+
#
|
10685
|
+
# resp = client.resume_contact({
|
10686
|
+
# contact_id: "ContactId", # required
|
10687
|
+
# instance_id: "InstanceId", # required
|
10688
|
+
# contact_flow_id: "ContactFlowId",
|
10689
|
+
# })
|
10690
|
+
#
|
10691
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ResumeContact AWS API Documentation
|
10692
|
+
#
|
10693
|
+
# @overload resume_contact(params = {})
|
10694
|
+
# @param [Hash] params ({})
|
10695
|
+
def resume_contact(params = {}, options = {})
|
10696
|
+
req = build_request(:resume_contact, params)
|
10697
|
+
req.send_request(options)
|
10698
|
+
end
|
10699
|
+
|
10575
10700
|
# When a contact is being recorded, and the recording has been suspended
|
10576
10701
|
# using SuspendContactRecording, this API resumes recording whatever
|
10577
10702
|
# recording is selected in the flow configuration: call, screen, or
|
@@ -12132,6 +12257,29 @@ module Aws::Connect
|
|
12132
12257
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html
|
12133
12258
|
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#outbound-communications-quotas
|
12134
12259
|
#
|
12260
|
+
# @option params [String] :name
|
12261
|
+
# The name of a voice contact that is shown to an agent in the Contact
|
12262
|
+
# Control Panel (CCP).
|
12263
|
+
#
|
12264
|
+
# @option params [String] :description
|
12265
|
+
# A description of the voice contact that is shown to an agent in the
|
12266
|
+
# Contact Control Panel (CCP).
|
12267
|
+
#
|
12268
|
+
# @option params [Hash<String,Types::Reference>] :references
|
12269
|
+
# A formatted URL that is shown to an agent in the Contact Control Panel
|
12270
|
+
# (CCP). Contacts can have the following reference types at the time of
|
12271
|
+
# creation: `URL` \| `NUMBER` \| `STRING` \| `DATE` \| `EMAIL`.
|
12272
|
+
# `ATTACHMENT` is not a supported reference type during voice contact
|
12273
|
+
# creation.
|
12274
|
+
#
|
12275
|
+
# @option params [String] :related_contact_id
|
12276
|
+
# The `contactId` that is related to this contact. Linking voice, task,
|
12277
|
+
# or chat by using `RelatedContactID` copies over contact attributes
|
12278
|
+
# from the related contact to the new contact. All updates to
|
12279
|
+
# user-defined attributes in the new contact are limited to the
|
12280
|
+
# individual contact ID. There are no limits to the number of contacts
|
12281
|
+
# that can be linked by using `RelatedContactId`.
|
12282
|
+
#
|
12135
12283
|
# @option params [required, String] :destination_phone_number
|
12136
12284
|
# The phone number of the customer, in E.164 format.
|
12137
12285
|
#
|
@@ -12208,6 +12356,15 @@ module Aws::Connect
|
|
12208
12356
|
# @example Request syntax with placeholder values
|
12209
12357
|
#
|
12210
12358
|
# resp = client.start_outbound_voice_contact({
|
12359
|
+
# name: "Name",
|
12360
|
+
# description: "Description",
|
12361
|
+
# references: {
|
12362
|
+
# "ReferenceKey" => {
|
12363
|
+
# value: "ReferenceValue", # required
|
12364
|
+
# type: "URL", # required, accepts URL, ATTACHMENT, NUMBER, STRING, DATE, EMAIL
|
12365
|
+
# },
|
12366
|
+
# },
|
12367
|
+
# related_contact_id: "ContactId",
|
12211
12368
|
# destination_phone_number: "PhoneNumber", # required
|
12212
12369
|
# contact_flow_id: "ContactFlowId", # required
|
12213
12370
|
# instance_id: "InstanceId", # required
|
@@ -12800,6 +12957,54 @@ module Aws::Connect
|
|
12800
12957
|
req.send_request(options)
|
12801
12958
|
end
|
12802
12959
|
|
12960
|
+
# Adds the specified tags to the contact resource. For more information
|
12961
|
+
# about this API is used, see [Set up granular billing for a detailed
|
12962
|
+
# view of your Amazon Connect usage][1].
|
12963
|
+
#
|
12964
|
+
#
|
12965
|
+
#
|
12966
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/granular-billing.html
|
12967
|
+
#
|
12968
|
+
# @option params [required, String] :contact_id
|
12969
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
12970
|
+
#
|
12971
|
+
# @option params [required, String] :instance_id
|
12972
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
12973
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
12974
|
+
#
|
12975
|
+
#
|
12976
|
+
#
|
12977
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
12978
|
+
#
|
12979
|
+
# @option params [required, Hash<String,String>] :tags
|
12980
|
+
# The tags to be assigned to the contact resource. For example, \\\{
|
12981
|
+
# "Tags": \\\{"key1":"value1", "key2":"value2"\\} \\}.
|
12982
|
+
#
|
12983
|
+
# <note markdown="1"> Authorization is not supported by this tag.
|
12984
|
+
#
|
12985
|
+
# </note>
|
12986
|
+
#
|
12987
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
12988
|
+
#
|
12989
|
+
# @example Request syntax with placeholder values
|
12990
|
+
#
|
12991
|
+
# resp = client.tag_contact({
|
12992
|
+
# contact_id: "ContactId", # required
|
12993
|
+
# instance_id: "InstanceId", # required
|
12994
|
+
# tags: { # required
|
12995
|
+
# "ContactTagKey" => "ContactTagValue",
|
12996
|
+
# },
|
12997
|
+
# })
|
12998
|
+
#
|
12999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TagContact AWS API Documentation
|
13000
|
+
#
|
13001
|
+
# @overload tag_contact(params = {})
|
13002
|
+
# @param [Hash] params ({})
|
13003
|
+
def tag_contact(params = {}, options = {})
|
13004
|
+
req = build_request(:tag_contact, params)
|
13005
|
+
req.send_request(options)
|
13006
|
+
end
|
13007
|
+
|
12803
13008
|
# Adds the specified tags to the specified resource.
|
12804
13009
|
#
|
12805
13010
|
# Some of the supported resource types are agents, routing profiles,
|
@@ -12820,7 +13025,7 @@ module Aws::Connect
|
|
12820
13025
|
#
|
12821
13026
|
# @option params [required, Hash<String,String>] :tags
|
12822
13027
|
# The tags used to organize, track, or control access for this resource.
|
12823
|
-
# For example, \\\{ "
|
13028
|
+
# For example, \\\{ "Tags": \\\{"key1":"value1",
|
12824
13029
|
# "key2":"value2"\\} \\}.
|
12825
13030
|
#
|
12826
13031
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -12927,6 +13132,48 @@ module Aws::Connect
|
|
12927
13132
|
req.send_request(options)
|
12928
13133
|
end
|
12929
13134
|
|
13135
|
+
# Removes the specified tags from the contact resource. For more
|
13136
|
+
# information about this API is used, see [Set up granular billing for a
|
13137
|
+
# detailed view of your Amazon Connect usage][1].
|
13138
|
+
#
|
13139
|
+
#
|
13140
|
+
#
|
13141
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/granular-billing.html
|
13142
|
+
#
|
13143
|
+
# @option params [required, String] :contact_id
|
13144
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
13145
|
+
#
|
13146
|
+
# @option params [required, String] :instance_id
|
13147
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
13148
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
13149
|
+
#
|
13150
|
+
#
|
13151
|
+
#
|
13152
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
13153
|
+
#
|
13154
|
+
# @option params [required, Array<String>] :tag_keys
|
13155
|
+
# A list of tag keys. Existing tags on the contact whose keys are
|
13156
|
+
# members of this list will be removed.
|
13157
|
+
#
|
13158
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
13159
|
+
#
|
13160
|
+
# @example Request syntax with placeholder values
|
13161
|
+
#
|
13162
|
+
# resp = client.untag_contact({
|
13163
|
+
# contact_id: "ContactId", # required
|
13164
|
+
# instance_id: "InstanceId", # required
|
13165
|
+
# tag_keys: ["ContactTagKey"], # required
|
13166
|
+
# })
|
13167
|
+
#
|
13168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UntagContact AWS API Documentation
|
13169
|
+
#
|
13170
|
+
# @overload untag_contact(params = {})
|
13171
|
+
# @param [Hash] params ({})
|
13172
|
+
def untag_contact(params = {}, options = {})
|
13173
|
+
req = build_request(:untag_contact, params)
|
13174
|
+
req.send_request(options)
|
13175
|
+
end
|
13176
|
+
|
12930
13177
|
# Removes the specified tags from the specified resource.
|
12931
13178
|
#
|
12932
13179
|
# @option params [required, String] :resource_arn
|
@@ -14586,7 +14833,7 @@ module Aws::Connect
|
|
14586
14833
|
# function: "RuleFunction", # required
|
14587
14834
|
# actions: [ # required
|
14588
14835
|
# {
|
14589
|
-
# action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION
|
14836
|
+
# action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, END_ASSOCIATED_TASKS
|
14590
14837
|
# task_action: {
|
14591
14838
|
# name: "TaskNameExpression", # required
|
14592
14839
|
# description: "TaskDescriptionExpression",
|
@@ -14615,6 +14862,37 @@ module Aws::Connect
|
|
14615
14862
|
# user_ids: ["UserId"],
|
14616
14863
|
# },
|
14617
14864
|
# },
|
14865
|
+
# create_case_action: {
|
14866
|
+
# fields: [ # required
|
14867
|
+
# {
|
14868
|
+
# id: "FieldValueId", # required
|
14869
|
+
# value: { # required
|
14870
|
+
# boolean_value: false,
|
14871
|
+
# double_value: 1.0,
|
14872
|
+
# empty_value: {
|
14873
|
+
# },
|
14874
|
+
# string_value: "FieldStringValue",
|
14875
|
+
# },
|
14876
|
+
# },
|
14877
|
+
# ],
|
14878
|
+
# template_id: "TemplateId", # required
|
14879
|
+
# },
|
14880
|
+
# update_case_action: {
|
14881
|
+
# fields: [ # required
|
14882
|
+
# {
|
14883
|
+
# id: "FieldValueId", # required
|
14884
|
+
# value: { # required
|
14885
|
+
# boolean_value: false,
|
14886
|
+
# double_value: 1.0,
|
14887
|
+
# empty_value: {
|
14888
|
+
# },
|
14889
|
+
# string_value: "FieldStringValue",
|
14890
|
+
# },
|
14891
|
+
# },
|
14892
|
+
# ],
|
14893
|
+
# },
|
14894
|
+
# end_associated_tasks_action: {
|
14895
|
+
# },
|
14618
14896
|
# },
|
14619
14897
|
# ],
|
14620
14898
|
# publish_status: "DRAFT", # required, accepts DRAFT, PUBLISHED
|
@@ -15323,7 +15601,7 @@ module Aws::Connect
|
|
15323
15601
|
params: params,
|
15324
15602
|
config: config)
|
15325
15603
|
context[:gem_name] = 'aws-sdk-connect'
|
15326
|
-
context[:gem_version] = '1.
|
15604
|
+
context[:gem_version] = '1.144.0'
|
15327
15605
|
Seahorse::Client::Request.new(handlers, context)
|
15328
15606
|
end
|
15329
15607
|
|