aws-sdk-connect 1.57.0 → 1.58.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 +344 -15
- data/lib/aws-sdk-connect/client_api.rb +237 -0
- data/lib/aws-sdk-connect/errors.rb +32 -0
- data/lib/aws-sdk-connect/types.rb +499 -17
- 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: d71193917608be2212303890afb724f0c095038c6c4582abbf0a2815b25c3d52
|
4
|
+
data.tar.gz: 3640ae00d5b48fab43f45e2a4ddf89a6ae03195b217c5d61e3dbb353e2568e95
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fc086733bd4dfaf91997bf546485ff60ef94bb9eaf155b5c9edde13821775c8ce5bde70bea16acd5f69d68f694af2b3d8cbeac67cc71fe9018e0d476896a59e
|
7
|
+
data.tar.gz: 7e9bd84e4e2fee72001bd7401f5cea6522b21e82c545c33317507962b6c91c9c60d264f9ba484717c7c90732943274641b7dc81e5a98c8b81aaa931260044662
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.58.0 (2021-11-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for UpdateContactFlowMetadata, DeleteContactFlow and module APIs. For details, see the Release Notes in the Amazon Connect Administrator Guide.
|
8
|
+
|
4
9
|
1.57.0 (2021-11-12)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.58.0
|
@@ -677,7 +677,7 @@ module Aws::Connect
|
|
677
677
|
# The display order of the status.
|
678
678
|
#
|
679
679
|
# @option params [Hash<String,String>] :tags
|
680
|
-
#
|
680
|
+
# The tags used to organize, track, or control access for this resource.
|
681
681
|
#
|
682
682
|
# @return [Types::CreateAgentStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
683
683
|
#
|
@@ -776,6 +776,67 @@ module Aws::Connect
|
|
776
776
|
req.send_request(options)
|
777
777
|
end
|
778
778
|
|
779
|
+
# Creates a contact flow module for the specified Amazon Connect
|
780
|
+
# instance.
|
781
|
+
#
|
782
|
+
# @option params [required, String] :instance_id
|
783
|
+
# The identifier of the Amazon Connect instance. You can find the
|
784
|
+
# instanceId in the ARN of the instance.
|
785
|
+
#
|
786
|
+
# @option params [required, String] :name
|
787
|
+
# The name of the contact flow module.
|
788
|
+
#
|
789
|
+
# @option params [String] :description
|
790
|
+
# The description of the contact flow module.
|
791
|
+
#
|
792
|
+
# @option params [required, String] :content
|
793
|
+
# The content of the contact flow module.
|
794
|
+
#
|
795
|
+
# @option params [Hash<String,String>] :tags
|
796
|
+
# The tags used to organize, track, or control access for this resource.
|
797
|
+
#
|
798
|
+
# @option params [String] :client_token
|
799
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
800
|
+
# idempotency of the request.
|
801
|
+
#
|
802
|
+
# **A suitable default value is auto-generated.** You should normally
|
803
|
+
# not need to pass this option.**
|
804
|
+
#
|
805
|
+
# @return [Types::CreateContactFlowModuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
806
|
+
#
|
807
|
+
# * {Types::CreateContactFlowModuleResponse#id #id} => String
|
808
|
+
# * {Types::CreateContactFlowModuleResponse#arn #arn} => String
|
809
|
+
#
|
810
|
+
# @example Request syntax with placeholder values
|
811
|
+
#
|
812
|
+
# resp = client.create_contact_flow_module({
|
813
|
+
# instance_id: "InstanceId", # required
|
814
|
+
# name: "ContactFlowModuleName", # required
|
815
|
+
# description: "ContactFlowModuleDescription",
|
816
|
+
# content: "ContactFlowModuleContent", # required
|
817
|
+
# tags: {
|
818
|
+
# "TagKey" => "TagValue",
|
819
|
+
# },
|
820
|
+
# client_token: "ClientToken",
|
821
|
+
# })
|
822
|
+
#
|
823
|
+
# @example Response structure
|
824
|
+
#
|
825
|
+
# resp.id #=> String
|
826
|
+
# resp.arn #=> String
|
827
|
+
#
|
828
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowModule AWS API Documentation
|
829
|
+
#
|
830
|
+
# @overload create_contact_flow_module(params = {})
|
831
|
+
# @param [Hash] params ({})
|
832
|
+
def create_contact_flow_module(params = {}, options = {})
|
833
|
+
req = build_request(:create_contact_flow_module, params)
|
834
|
+
req.send_request(options)
|
835
|
+
end
|
836
|
+
|
837
|
+
# This API is in preview release for Amazon Connect and is subject to
|
838
|
+
# change.
|
839
|
+
#
|
779
840
|
# Creates hours of operation.
|
780
841
|
#
|
781
842
|
# @option params [required, String] :instance_id
|
@@ -796,7 +857,7 @@ module Aws::Connect
|
|
796
857
|
# and end time.
|
797
858
|
#
|
798
859
|
# @option params [Hash<String,String>] :tags
|
799
|
-
#
|
860
|
+
# The tags used to organize, track, or control access for this resource.
|
800
861
|
#
|
801
862
|
# @return [Types::CreateHoursOfOperationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
802
863
|
#
|
@@ -930,7 +991,7 @@ module Aws::Connect
|
|
930
991
|
# integration type.
|
931
992
|
#
|
932
993
|
# @option params [Hash<String,String>] :tags
|
933
|
-
#
|
994
|
+
# The tags used to organize, track, or control access for this resource.
|
934
995
|
#
|
935
996
|
# @return [Types::CreateIntegrationAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
936
997
|
#
|
@@ -994,7 +1055,7 @@ module Aws::Connect
|
|
994
1055
|
# The quick connects available to agents who are working the queue.
|
995
1056
|
#
|
996
1057
|
# @option params [Hash<String,String>] :tags
|
997
|
-
#
|
1058
|
+
# The tags used to organize, track, or control access for this resource.
|
998
1059
|
#
|
999
1060
|
# @return [Types::CreateQueueResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1000
1061
|
#
|
@@ -1050,7 +1111,7 @@ module Aws::Connect
|
|
1050
1111
|
# Configuration settings for the quick connect.
|
1051
1112
|
#
|
1052
1113
|
# @option params [Hash<String,String>] :tags
|
1053
|
-
#
|
1114
|
+
# The tags used to organize, track, or control access for this resource.
|
1054
1115
|
#
|
1055
1116
|
# @return [Types::CreateQuickConnectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1056
1117
|
#
|
@@ -1189,7 +1250,7 @@ module Aws::Connect
|
|
1189
1250
|
# instanceId in the ARN of the instance.
|
1190
1251
|
#
|
1191
1252
|
# @option params [Hash<String,String>] :tags
|
1192
|
-
#
|
1253
|
+
# The tags used to organize, track, or control access for this resource.
|
1193
1254
|
#
|
1194
1255
|
# @return [Types::CreateSecurityProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1195
1256
|
#
|
@@ -1236,7 +1297,7 @@ module Aws::Connect
|
|
1236
1297
|
# integration association can have only one of each use case type.
|
1237
1298
|
#
|
1238
1299
|
# @option params [Hash<String,String>] :tags
|
1239
|
-
#
|
1300
|
+
# The tags used to organize, track, or control access for this resource.
|
1240
1301
|
#
|
1241
1302
|
# @return [Types::CreateUseCaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1242
1303
|
#
|
@@ -1410,6 +1471,63 @@ module Aws::Connect
|
|
1410
1471
|
req.send_request(options)
|
1411
1472
|
end
|
1412
1473
|
|
1474
|
+
# Deletes a contact flow for the specified Amazon Connect instance.
|
1475
|
+
#
|
1476
|
+
# @option params [required, String] :instance_id
|
1477
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1478
|
+
# instanceId in the ARN of the instance.
|
1479
|
+
#
|
1480
|
+
# @option params [required, String] :contact_flow_id
|
1481
|
+
# The identifier of the contact flow.
|
1482
|
+
#
|
1483
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1484
|
+
#
|
1485
|
+
# @example Request syntax with placeholder values
|
1486
|
+
#
|
1487
|
+
# resp = client.delete_contact_flow({
|
1488
|
+
# instance_id: "InstanceId", # required
|
1489
|
+
# contact_flow_id: "ContactFlowId", # required
|
1490
|
+
# })
|
1491
|
+
#
|
1492
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlow AWS API Documentation
|
1493
|
+
#
|
1494
|
+
# @overload delete_contact_flow(params = {})
|
1495
|
+
# @param [Hash] params ({})
|
1496
|
+
def delete_contact_flow(params = {}, options = {})
|
1497
|
+
req = build_request(:delete_contact_flow, params)
|
1498
|
+
req.send_request(options)
|
1499
|
+
end
|
1500
|
+
|
1501
|
+
# Deletes the specified contact flow module.
|
1502
|
+
#
|
1503
|
+
# @option params [required, String] :instance_id
|
1504
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1505
|
+
# instanceId in the ARN of the instance.
|
1506
|
+
#
|
1507
|
+
# @option params [required, String] :contact_flow_module_id
|
1508
|
+
# The identifier of the contact flow module.
|
1509
|
+
#
|
1510
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1511
|
+
#
|
1512
|
+
# @example Request syntax with placeholder values
|
1513
|
+
#
|
1514
|
+
# resp = client.delete_contact_flow_module({
|
1515
|
+
# instance_id: "InstanceId", # required
|
1516
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
1517
|
+
# })
|
1518
|
+
#
|
1519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModule AWS API Documentation
|
1520
|
+
#
|
1521
|
+
# @overload delete_contact_flow_module(params = {})
|
1522
|
+
# @param [Hash] params ({})
|
1523
|
+
def delete_contact_flow_module(params = {}, options = {})
|
1524
|
+
req = build_request(:delete_contact_flow_module, params)
|
1525
|
+
req.send_request(options)
|
1526
|
+
end
|
1527
|
+
|
1528
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1529
|
+
# change.
|
1530
|
+
#
|
1413
1531
|
# Deletes an hours of operation.
|
1414
1532
|
#
|
1415
1533
|
# @option params [required, String] :instance_id
|
@@ -1698,15 +1816,15 @@ module Aws::Connect
|
|
1698
1816
|
#
|
1699
1817
|
# Describes the specified contact.
|
1700
1818
|
#
|
1701
|
-
# Contact information
|
1702
|
-
# then it is deleted.
|
1819
|
+
# Contact information remains available in Amazon Connect for 24 months,
|
1820
|
+
# and then it is deleted.
|
1703
1821
|
#
|
1704
1822
|
# @option params [required, String] :instance_id
|
1705
1823
|
# The identifier of the Amazon Connect instance. You can find the
|
1706
1824
|
# instanceId in the ARN of the instance.
|
1707
1825
|
#
|
1708
1826
|
# @option params [required, String] :contact_id
|
1709
|
-
# The identifier of the
|
1827
|
+
# The identifier of the contact.
|
1710
1828
|
#
|
1711
1829
|
# @return [Types::DescribeContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1712
1830
|
#
|
@@ -1779,6 +1897,7 @@ module Aws::Connect
|
|
1779
1897
|
# resp.contact_flow.id #=> String
|
1780
1898
|
# resp.contact_flow.name #=> String
|
1781
1899
|
# resp.contact_flow.type #=> String, one of "CONTACT_FLOW", "CUSTOMER_QUEUE", "CUSTOMER_HOLD", "CUSTOMER_WHISPER", "AGENT_HOLD", "AGENT_WHISPER", "OUTBOUND_WHISPER", "AGENT_TRANSFER", "QUEUE_TRANSFER"
|
1900
|
+
# resp.contact_flow.state #=> String, one of "ACTIVE", "ARCHIVED"
|
1782
1901
|
# resp.contact_flow.description #=> String
|
1783
1902
|
# resp.contact_flow.content #=> String
|
1784
1903
|
# resp.contact_flow.tags #=> Hash
|
@@ -1793,6 +1912,50 @@ module Aws::Connect
|
|
1793
1912
|
req.send_request(options)
|
1794
1913
|
end
|
1795
1914
|
|
1915
|
+
# Describes the specified contact flow module.
|
1916
|
+
#
|
1917
|
+
# @option params [required, String] :instance_id
|
1918
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1919
|
+
# instanceId in the ARN of the instance.
|
1920
|
+
#
|
1921
|
+
# @option params [required, String] :contact_flow_module_id
|
1922
|
+
# The identifier of the contact flow module.
|
1923
|
+
#
|
1924
|
+
# @return [Types::DescribeContactFlowModuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1925
|
+
#
|
1926
|
+
# * {Types::DescribeContactFlowModuleResponse#contact_flow_module #contact_flow_module} => Types::ContactFlowModule
|
1927
|
+
#
|
1928
|
+
# @example Request syntax with placeholder values
|
1929
|
+
#
|
1930
|
+
# resp = client.describe_contact_flow_module({
|
1931
|
+
# instance_id: "InstanceId", # required
|
1932
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
1933
|
+
# })
|
1934
|
+
#
|
1935
|
+
# @example Response structure
|
1936
|
+
#
|
1937
|
+
# resp.contact_flow_module.arn #=> String
|
1938
|
+
# resp.contact_flow_module.id #=> String
|
1939
|
+
# resp.contact_flow_module.name #=> String
|
1940
|
+
# resp.contact_flow_module.content #=> String
|
1941
|
+
# resp.contact_flow_module.description #=> String
|
1942
|
+
# resp.contact_flow_module.state #=> String, one of "ACTIVE", "ARCHIVED"
|
1943
|
+
# resp.contact_flow_module.status #=> String, one of "PUBLISHED", "SAVED"
|
1944
|
+
# resp.contact_flow_module.tags #=> Hash
|
1945
|
+
# resp.contact_flow_module.tags["TagKey"] #=> String
|
1946
|
+
#
|
1947
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlowModule AWS API Documentation
|
1948
|
+
#
|
1949
|
+
# @overload describe_contact_flow_module(params = {})
|
1950
|
+
# @param [Hash] params ({})
|
1951
|
+
def describe_contact_flow_module(params = {}, options = {})
|
1952
|
+
req = build_request(:describe_contact_flow_module, params)
|
1953
|
+
req.send_request(options)
|
1954
|
+
end
|
1955
|
+
|
1956
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1957
|
+
# change.
|
1958
|
+
#
|
1796
1959
|
# Describes the hours of operation.
|
1797
1960
|
#
|
1798
1961
|
# @option params [required, String] :instance_id
|
@@ -3296,6 +3459,58 @@ module Aws::Connect
|
|
3296
3459
|
req.send_request(options)
|
3297
3460
|
end
|
3298
3461
|
|
3462
|
+
# Provides information about the contact flow modules for the specified
|
3463
|
+
# Amazon Connect instance.
|
3464
|
+
#
|
3465
|
+
# @option params [required, String] :instance_id
|
3466
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3467
|
+
# instanceId in the ARN of the instance.
|
3468
|
+
#
|
3469
|
+
# @option params [String] :next_token
|
3470
|
+
# The token for the next set of results. Use the value returned in the
|
3471
|
+
# previous response in the next request to retrieve the next set of
|
3472
|
+
# results.
|
3473
|
+
#
|
3474
|
+
# @option params [Integer] :max_results
|
3475
|
+
# The maximum number of results to return per page.
|
3476
|
+
#
|
3477
|
+
# @option params [String] :contact_flow_module_state
|
3478
|
+
# The state of the contact flow module.
|
3479
|
+
#
|
3480
|
+
# @return [Types::ListContactFlowModulesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3481
|
+
#
|
3482
|
+
# * {Types::ListContactFlowModulesResponse#contact_flow_modules_summary_list #contact_flow_modules_summary_list} => Array<Types::ContactFlowModuleSummary>
|
3483
|
+
# * {Types::ListContactFlowModulesResponse#next_token #next_token} => String
|
3484
|
+
#
|
3485
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3486
|
+
#
|
3487
|
+
# @example Request syntax with placeholder values
|
3488
|
+
#
|
3489
|
+
# resp = client.list_contact_flow_modules({
|
3490
|
+
# instance_id: "InstanceId", # required
|
3491
|
+
# next_token: "NextToken",
|
3492
|
+
# max_results: 1,
|
3493
|
+
# contact_flow_module_state: "ACTIVE", # accepts ACTIVE, ARCHIVED
|
3494
|
+
# })
|
3495
|
+
#
|
3496
|
+
# @example Response structure
|
3497
|
+
#
|
3498
|
+
# resp.contact_flow_modules_summary_list #=> Array
|
3499
|
+
# resp.contact_flow_modules_summary_list[0].id #=> String
|
3500
|
+
# resp.contact_flow_modules_summary_list[0].arn #=> String
|
3501
|
+
# resp.contact_flow_modules_summary_list[0].name #=> String
|
3502
|
+
# resp.contact_flow_modules_summary_list[0].state #=> String, one of "ACTIVE", "ARCHIVED"
|
3503
|
+
# resp.next_token #=> String
|
3504
|
+
#
|
3505
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModules AWS API Documentation
|
3506
|
+
#
|
3507
|
+
# @overload list_contact_flow_modules(params = {})
|
3508
|
+
# @param [Hash] params ({})
|
3509
|
+
def list_contact_flow_modules(params = {}, options = {})
|
3510
|
+
req = build_request(:list_contact_flow_modules, params)
|
3511
|
+
req.send_request(options)
|
3512
|
+
end
|
3513
|
+
|
3299
3514
|
# Provides information about the contact flows for the specified Amazon
|
3300
3515
|
# Connect instance.
|
3301
3516
|
#
|
@@ -3348,6 +3563,7 @@ module Aws::Connect
|
|
3348
3563
|
# resp.contact_flow_summary_list[0].arn #=> String
|
3349
3564
|
# resp.contact_flow_summary_list[0].name #=> String
|
3350
3565
|
# resp.contact_flow_summary_list[0].contact_flow_type #=> String, one of "CONTACT_FLOW", "CUSTOMER_QUEUE", "CUSTOMER_HOLD", "CUSTOMER_WHISPER", "AGENT_HOLD", "AGENT_WHISPER", "OUTBOUND_WHISPER", "AGENT_TRANSFER", "QUEUE_TRANSFER"
|
3566
|
+
# resp.contact_flow_summary_list[0].contact_flow_state #=> String, one of "ACTIVE", "ARCHIVED"
|
3351
3567
|
# resp.next_token #=> String
|
3352
3568
|
#
|
3353
3569
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlows AWS API Documentation
|
@@ -3380,7 +3596,7 @@ module Aws::Connect
|
|
3380
3596
|
# previous response in the next request to retrieve the next set of
|
3381
3597
|
# results.
|
3382
3598
|
#
|
3383
|
-
# This is not expected to be set
|
3599
|
+
# This is not expected to be set, because the value returned in the
|
3384
3600
|
# previous response is always null.
|
3385
3601
|
#
|
3386
3602
|
# @return [Types::ListContactReferencesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -3645,6 +3861,7 @@ module Aws::Connect
|
|
3645
3861
|
# instanceId in the ARN of the instance.
|
3646
3862
|
#
|
3647
3863
|
# @option params [String] :integration_type
|
3864
|
+
# The integration type.
|
3648
3865
|
#
|
3649
3866
|
# @option params [String] :next_token
|
3650
3867
|
# The token for the next set of results. Use the value returned in the
|
@@ -4898,8 +5115,7 @@ module Aws::Connect
|
|
4898
5115
|
req.send_request(options)
|
4899
5116
|
end
|
4900
5117
|
|
4901
|
-
# Initiates a contact flow to start a new task
|
4902
|
-
# future date and time.
|
5118
|
+
# Initiates a contact flow to start a new task.
|
4903
5119
|
#
|
4904
5120
|
# @option params [required, String] :instance_id
|
4905
5121
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -5251,7 +5467,7 @@ module Aws::Connect
|
|
5251
5467
|
# This API is in preview release for Amazon Connect and is subject to
|
5252
5468
|
# change.
|
5253
5469
|
#
|
5254
|
-
# Adds or updates user
|
5470
|
+
# Adds or updates user-defined contact information associated with the
|
5255
5471
|
# specified contact. At least one field to be updated must be present in
|
5256
5472
|
# the request.
|
5257
5473
|
#
|
@@ -5413,6 +5629,116 @@ module Aws::Connect
|
|
5413
5629
|
req.send_request(options)
|
5414
5630
|
end
|
5415
5631
|
|
5632
|
+
# Updates metadata about specified contact flow.
|
5633
|
+
#
|
5634
|
+
# @option params [required, String] :instance_id
|
5635
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5636
|
+
# instanceId in the ARN of the instance.
|
5637
|
+
#
|
5638
|
+
# @option params [required, String] :contact_flow_id
|
5639
|
+
# The identifier of the contact flow.
|
5640
|
+
#
|
5641
|
+
# @option params [String] :name
|
5642
|
+
# TThe name of the contact flow.
|
5643
|
+
#
|
5644
|
+
# @option params [String] :description
|
5645
|
+
# The description of the contact flow.
|
5646
|
+
#
|
5647
|
+
# @option params [String] :contact_flow_state
|
5648
|
+
# The state of contact flow.
|
5649
|
+
#
|
5650
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5651
|
+
#
|
5652
|
+
# @example Request syntax with placeholder values
|
5653
|
+
#
|
5654
|
+
# resp = client.update_contact_flow_metadata({
|
5655
|
+
# instance_id: "InstanceId", # required
|
5656
|
+
# contact_flow_id: "ContactFlowId", # required
|
5657
|
+
# name: "ContactFlowName",
|
5658
|
+
# description: "ContactFlowDescription",
|
5659
|
+
# contact_flow_state: "ACTIVE", # accepts ACTIVE, ARCHIVED
|
5660
|
+
# })
|
5661
|
+
#
|
5662
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowMetadata AWS API Documentation
|
5663
|
+
#
|
5664
|
+
# @overload update_contact_flow_metadata(params = {})
|
5665
|
+
# @param [Hash] params ({})
|
5666
|
+
def update_contact_flow_metadata(params = {}, options = {})
|
5667
|
+
req = build_request(:update_contact_flow_metadata, params)
|
5668
|
+
req.send_request(options)
|
5669
|
+
end
|
5670
|
+
|
5671
|
+
# Updates specified contact flow module for the specified Amazon Connect
|
5672
|
+
# instance.
|
5673
|
+
#
|
5674
|
+
# @option params [required, String] :instance_id
|
5675
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5676
|
+
# instanceId in the ARN of the instance.
|
5677
|
+
#
|
5678
|
+
# @option params [required, String] :contact_flow_module_id
|
5679
|
+
# The identifier of the contact flow module.
|
5680
|
+
#
|
5681
|
+
# @option params [required, String] :content
|
5682
|
+
# The content of the contact flow module.
|
5683
|
+
#
|
5684
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5685
|
+
#
|
5686
|
+
# @example Request syntax with placeholder values
|
5687
|
+
#
|
5688
|
+
# resp = client.update_contact_flow_module_content({
|
5689
|
+
# instance_id: "InstanceId", # required
|
5690
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
5691
|
+
# content: "ContactFlowModuleContent", # required
|
5692
|
+
# })
|
5693
|
+
#
|
5694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleContent AWS API Documentation
|
5695
|
+
#
|
5696
|
+
# @overload update_contact_flow_module_content(params = {})
|
5697
|
+
# @param [Hash] params ({})
|
5698
|
+
def update_contact_flow_module_content(params = {}, options = {})
|
5699
|
+
req = build_request(:update_contact_flow_module_content, params)
|
5700
|
+
req.send_request(options)
|
5701
|
+
end
|
5702
|
+
|
5703
|
+
# Updates metadata about specified contact flow module.
|
5704
|
+
#
|
5705
|
+
# @option params [required, String] :instance_id
|
5706
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5707
|
+
# instanceId in the ARN of the instance.
|
5708
|
+
#
|
5709
|
+
# @option params [required, String] :contact_flow_module_id
|
5710
|
+
# The identifier of the contact flow module.
|
5711
|
+
#
|
5712
|
+
# @option params [String] :name
|
5713
|
+
# The name of the contact flow module.
|
5714
|
+
#
|
5715
|
+
# @option params [String] :description
|
5716
|
+
# The description of the contact flow module.
|
5717
|
+
#
|
5718
|
+
# @option params [String] :state
|
5719
|
+
# The state of contact flow module.
|
5720
|
+
#
|
5721
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5722
|
+
#
|
5723
|
+
# @example Request syntax with placeholder values
|
5724
|
+
#
|
5725
|
+
# resp = client.update_contact_flow_module_metadata({
|
5726
|
+
# instance_id: "InstanceId", # required
|
5727
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
5728
|
+
# name: "ContactFlowModuleName",
|
5729
|
+
# description: "ContactFlowModuleDescription",
|
5730
|
+
# state: "ACTIVE", # accepts ACTIVE, ARCHIVED
|
5731
|
+
# })
|
5732
|
+
#
|
5733
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleMetadata AWS API Documentation
|
5734
|
+
#
|
5735
|
+
# @overload update_contact_flow_module_metadata(params = {})
|
5736
|
+
# @param [Hash] params ({})
|
5737
|
+
def update_contact_flow_module_metadata(params = {}, options = {})
|
5738
|
+
req = build_request(:update_contact_flow_module_metadata, params)
|
5739
|
+
req.send_request(options)
|
5740
|
+
end
|
5741
|
+
|
5416
5742
|
# The name of the contact flow.
|
5417
5743
|
#
|
5418
5744
|
# You can also create and update contact flows using the [Amazon Connect
|
@@ -5488,6 +5814,9 @@ module Aws::Connect
|
|
5488
5814
|
req.send_request(options)
|
5489
5815
|
end
|
5490
5816
|
|
5817
|
+
# This API is in preview release for Amazon Connect and is subject to
|
5818
|
+
# change.
|
5819
|
+
#
|
5491
5820
|
# Updates the hours of operation.
|
5492
5821
|
#
|
5493
5822
|
# @option params [required, String] :instance_id
|
@@ -6362,7 +6691,7 @@ module Aws::Connect
|
|
6362
6691
|
params: params,
|
6363
6692
|
config: config)
|
6364
6693
|
context[:gem_name] = 'aws-sdk-connect'
|
6365
|
-
context[:gem_version] = '1.
|
6694
|
+
context[:gem_version] = '1.58.0'
|
6366
6695
|
Seahorse::Client::Request.new(handlers, context)
|
6367
6696
|
end
|
6368
6697
|
|