aws-sdk-connect 1.44.0 → 1.45.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.rb +1 -1
- data/lib/aws-sdk-connect/client.rb +317 -91
- data/lib/aws-sdk-connect/client_api.rb +83 -0
- data/lib/aws-sdk-connect/types.rb +362 -93
- 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: 189cbd7348a77b9954141bac70a97da521eeab8eb2885e897e091ef2631c368f
|
4
|
+
data.tar.gz: 93053d9dea09f28d2b14996004fc01611217a18b307ba795f739290cf177372f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62c5767bd9f4ca66aa43de9e29e338f0382fe0e3948bde25911f8478731856955ff324815ece63ef79a53c4ca02f93cc878b9406a37a05cc97323c6d42e224a3
|
7
|
+
data.tar.gz: 8307c3f1e4e336e0a2b980d1ec2d74d44a0d97e253cb24ac71f42610674cb96f5c8152565a1908e7ef9a33c94ce0f583d7a512b8874f49adfb57ea907664414d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.45.0 (2021-06-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds new sets of APIs: AssociateBot, DisassociateBot, and ListBots. You can use it to programmatically add an Amazon Lex bot or Amazon Lex V2 bot on the specified Amazon Connect instance
|
8
|
+
|
4
9
|
1.44.0 (2021-05-07)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.45.0
|
data/lib/aws-sdk-connect.rb
CHANGED
@@ -333,7 +333,8 @@ module Aws::Connect
|
|
333
333
|
# Associates an approved origin to an Amazon Connect instance.
|
334
334
|
#
|
335
335
|
# @option params [required, String] :instance_id
|
336
|
-
# The identifier of the Amazon Connect instance.
|
336
|
+
# The identifier of the Amazon Connect instance. You can find the
|
337
|
+
# instanceId in the ARN of the instance.
|
337
338
|
#
|
338
339
|
# @option params [required, String] :origin
|
339
340
|
# The domain to add to your allow list.
|
@@ -356,6 +357,46 @@ module Aws::Connect
|
|
356
357
|
req.send_request(options)
|
357
358
|
end
|
358
359
|
|
360
|
+
# This API is in preview release for Amazon Connect and is subject to
|
361
|
+
# change.
|
362
|
+
#
|
363
|
+
# Allows the specified Amazon Connect instance to access the specified
|
364
|
+
# Amazon Lex or Amazon Lex V2 bot.
|
365
|
+
#
|
366
|
+
# @option params [required, String] :instance_id
|
367
|
+
# The identifier of the Amazon Connect instance. You can find the
|
368
|
+
# instanceId in the ARN of the instance.
|
369
|
+
#
|
370
|
+
# @option params [Types::LexBot] :lex_bot
|
371
|
+
# Configuration information of an Amazon Lex bot.
|
372
|
+
#
|
373
|
+
# @option params [Types::LexV2Bot] :lex_v2_bot
|
374
|
+
# The Amazon Lex V2 bot to associate with the instance.
|
375
|
+
#
|
376
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
377
|
+
#
|
378
|
+
# @example Request syntax with placeholder values
|
379
|
+
#
|
380
|
+
# resp = client.associate_bot({
|
381
|
+
# instance_id: "InstanceId", # required
|
382
|
+
# lex_bot: {
|
383
|
+
# name: "BotName",
|
384
|
+
# lex_region: "LexRegion",
|
385
|
+
# },
|
386
|
+
# lex_v2_bot: {
|
387
|
+
# alias_arn: "AliasArn",
|
388
|
+
# },
|
389
|
+
# })
|
390
|
+
#
|
391
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateBot AWS API Documentation
|
392
|
+
#
|
393
|
+
# @overload associate_bot(params = {})
|
394
|
+
# @param [Hash] params ({})
|
395
|
+
def associate_bot(params = {}, options = {})
|
396
|
+
req = build_request(:associate_bot, params)
|
397
|
+
req.send_request(options)
|
398
|
+
end
|
399
|
+
|
359
400
|
# This API is in preview release for Amazon Connect and is subject to
|
360
401
|
# change.
|
361
402
|
#
|
@@ -370,7 +411,8 @@ module Aws::Connect
|
|
370
411
|
# being used for association.
|
371
412
|
#
|
372
413
|
# @option params [required, String] :instance_id
|
373
|
-
# The identifier of the Amazon Connect instance.
|
414
|
+
# The identifier of the Amazon Connect instance. You can find the
|
415
|
+
# instanceId in the ARN of the instance.
|
374
416
|
#
|
375
417
|
# @option params [required, String] :resource_type
|
376
418
|
# A valid resource type.
|
@@ -435,7 +477,8 @@ module Aws::Connect
|
|
435
477
|
# Lambda function.
|
436
478
|
#
|
437
479
|
# @option params [required, String] :instance_id
|
438
|
-
# The identifier of the Amazon Connect instance.
|
480
|
+
# The identifier of the Amazon Connect instance. You can find the
|
481
|
+
# instanceId in the ARN of the instance.
|
439
482
|
#
|
440
483
|
# @option params [required, String] :function_arn
|
441
484
|
# The Amazon Resource Name (ARN) for the Lambda function being
|
@@ -466,10 +509,11 @@ module Aws::Connect
|
|
466
509
|
# Amazon Lex bot.
|
467
510
|
#
|
468
511
|
# @option params [required, String] :instance_id
|
469
|
-
# The identifier of the Amazon Connect instance.
|
512
|
+
# The identifier of the Amazon Connect instance. You can find the
|
513
|
+
# instanceId in the ARN of the instance.
|
470
514
|
#
|
471
515
|
# @option params [required, Types::LexBot] :lex_bot
|
472
|
-
# The Amazon Lex
|
516
|
+
# The Amazon Lex bot to associate with the instance.
|
473
517
|
#
|
474
518
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
475
519
|
#
|
@@ -498,7 +542,8 @@ module Aws::Connect
|
|
498
542
|
# Associates a set of quick connects with a queue.
|
499
543
|
#
|
500
544
|
# @option params [required, String] :instance_id
|
501
|
-
# The identifier of the Amazon Connect instance.
|
545
|
+
# The identifier of the Amazon Connect instance. You can find the
|
546
|
+
# instanceId in the ARN of the instance.
|
502
547
|
#
|
503
548
|
# @option params [required, String] :queue_id
|
504
549
|
# The identifier for the queue.
|
@@ -528,7 +573,8 @@ module Aws::Connect
|
|
528
573
|
# Associates a set of queues with a routing profile.
|
529
574
|
#
|
530
575
|
# @option params [required, String] :instance_id
|
531
|
-
# The identifier of the Amazon Connect instance.
|
576
|
+
# The identifier of the Amazon Connect instance. You can find the
|
577
|
+
# instanceId in the ARN of the instance.
|
532
578
|
#
|
533
579
|
# @option params [required, String] :routing_profile_id
|
534
580
|
# The identifier of the routing profile.
|
@@ -570,7 +616,8 @@ module Aws::Connect
|
|
570
616
|
# Associates a security key to the instance.
|
571
617
|
#
|
572
618
|
# @option params [required, String] :instance_id
|
573
|
-
# The identifier of the Amazon Connect instance.
|
619
|
+
# The identifier of the Amazon Connect instance. You can find the
|
620
|
+
# instanceId in the ARN of the instance.
|
574
621
|
#
|
575
622
|
# @option params [required, String] :key
|
576
623
|
# A valid security key in PEM format.
|
@@ -730,7 +777,8 @@ module Aws::Connect
|
|
730
777
|
# Create an AppIntegration association with an Amazon Connect instance.
|
731
778
|
#
|
732
779
|
# @option params [required, String] :instance_id
|
733
|
-
# The identifier of the Amazon Connect instance.
|
780
|
+
# The identifier of the Amazon Connect instance. You can find the
|
781
|
+
# instanceId in the ARN of the instance.
|
734
782
|
#
|
735
783
|
# @option params [required, String] :integration_type
|
736
784
|
# The type of information to be ingested.
|
@@ -789,7 +837,8 @@ module Aws::Connect
|
|
789
837
|
# Creates a new queue for the specified Amazon Connect instance.
|
790
838
|
#
|
791
839
|
# @option params [required, String] :instance_id
|
792
|
-
# The identifier of the Amazon Connect instance.
|
840
|
+
# The identifier of the Amazon Connect instance. You can find the
|
841
|
+
# instanceId in the ARN of the instance.
|
793
842
|
#
|
794
843
|
# @option params [required, String] :name
|
795
844
|
# The name of the queue.
|
@@ -857,7 +906,8 @@ module Aws::Connect
|
|
857
906
|
# Creates a quick connect for the specified Amazon Connect instance.
|
858
907
|
#
|
859
908
|
# @option params [required, String] :instance_id
|
860
|
-
# The identifier of the Amazon Connect instance.
|
909
|
+
# The identifier of the Amazon Connect instance. You can find the
|
910
|
+
# instanceId in the ARN of the instance.
|
861
911
|
#
|
862
912
|
# @option params [required, String] :name
|
863
913
|
# The name of the quick connect.
|
@@ -918,7 +968,8 @@ module Aws::Connect
|
|
918
968
|
# Creates a new routing profile.
|
919
969
|
#
|
920
970
|
# @option params [required, String] :instance_id
|
921
|
-
# The identifier of the Amazon Connect instance.
|
971
|
+
# The identifier of the Amazon Connect instance. You can find the
|
972
|
+
# instanceId in the ARN of the instance.
|
922
973
|
#
|
923
974
|
# @option params [required, String] :name
|
924
975
|
# The name of the routing profile. Must not be more than 127 characters.
|
@@ -991,7 +1042,8 @@ module Aws::Connect
|
|
991
1042
|
# Creates a use case for an AppIntegration association.
|
992
1043
|
#
|
993
1044
|
# @option params [required, String] :instance_id
|
994
|
-
# The identifier of the Amazon Connect instance.
|
1045
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1046
|
+
# instanceId in the ARN of the instance.
|
995
1047
|
#
|
996
1048
|
# @option params [required, String] :integration_association_id
|
997
1049
|
# The identifier for the AppIntegration association.
|
@@ -1084,7 +1136,8 @@ module Aws::Connect
|
|
1084
1136
|
# The identifier of the hierarchy group for the user.
|
1085
1137
|
#
|
1086
1138
|
# @option params [required, String] :instance_id
|
1087
|
-
# The identifier of the Amazon Connect instance.
|
1139
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1140
|
+
# instanceId in the ARN of the instance.
|
1088
1141
|
#
|
1089
1142
|
# @option params [Hash<String,String>] :tags
|
1090
1143
|
# One or more tags.
|
@@ -1145,7 +1198,8 @@ module Aws::Connect
|
|
1145
1198
|
# created at level one if the parent group ID is null.
|
1146
1199
|
#
|
1147
1200
|
# @option params [required, String] :instance_id
|
1148
|
-
# The identifier of the Amazon Connect instance.
|
1201
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1202
|
+
# instanceId in the ARN of the instance.
|
1149
1203
|
#
|
1150
1204
|
# @return [Types::CreateUserHierarchyGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1151
1205
|
#
|
@@ -1187,7 +1241,8 @@ module Aws::Connect
|
|
1187
1241
|
# account.
|
1188
1242
|
#
|
1189
1243
|
# @option params [required, String] :instance_id
|
1190
|
-
# The identifier of the Amazon Connect instance.
|
1244
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1245
|
+
# instanceId in the ARN of the instance.
|
1191
1246
|
#
|
1192
1247
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1193
1248
|
#
|
@@ -1210,7 +1265,8 @@ module Aws::Connect
|
|
1210
1265
|
# The association must not have any use cases associated with it.
|
1211
1266
|
#
|
1212
1267
|
# @option params [required, String] :instance_id
|
1213
|
-
# The identifier of the Amazon Connect instance.
|
1268
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1269
|
+
# instanceId in the ARN of the instance.
|
1214
1270
|
#
|
1215
1271
|
# @option params [required, String] :integration_association_id
|
1216
1272
|
# The identifier for the AppIntegration association.
|
@@ -1239,7 +1295,8 @@ module Aws::Connect
|
|
1239
1295
|
# Deletes a quick connect.
|
1240
1296
|
#
|
1241
1297
|
# @option params [required, String] :instance_id
|
1242
|
-
# The identifier of the Amazon Connect instance.
|
1298
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1299
|
+
# instanceId in the ARN of the instance.
|
1243
1300
|
#
|
1244
1301
|
# @option params [required, String] :quick_connect_id
|
1245
1302
|
# The identifier for the quick connect.
|
@@ -1265,7 +1322,8 @@ module Aws::Connect
|
|
1265
1322
|
# Deletes a use case from an AppIntegration association.
|
1266
1323
|
#
|
1267
1324
|
# @option params [required, String] :instance_id
|
1268
|
-
# The identifier of the Amazon Connect instance.
|
1325
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1326
|
+
# instanceId in the ARN of the instance.
|
1269
1327
|
#
|
1270
1328
|
# @option params [required, String] :integration_association_id
|
1271
1329
|
# The identifier for the AppIntegration association.
|
@@ -1303,7 +1361,8 @@ module Aws::Connect
|
|
1303
1361
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/delete-users.html
|
1304
1362
|
#
|
1305
1363
|
# @option params [required, String] :instance_id
|
1306
|
-
# The identifier of the Amazon Connect instance.
|
1364
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1365
|
+
# instanceId in the ARN of the instance.
|
1307
1366
|
#
|
1308
1367
|
# @option params [required, String] :user_id
|
1309
1368
|
# The identifier of the user.
|
@@ -1333,7 +1392,8 @@ module Aws::Connect
|
|
1333
1392
|
# The identifier of the hierarchy group.
|
1334
1393
|
#
|
1335
1394
|
# @option params [required, String] :instance_id
|
1336
|
-
# The identifier of the Amazon Connect instance.
|
1395
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1396
|
+
# instanceId in the ARN of the instance.
|
1337
1397
|
#
|
1338
1398
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1339
1399
|
#
|
@@ -1405,7 +1465,8 @@ module Aws::Connect
|
|
1405
1465
|
# Describes the hours of operation.
|
1406
1466
|
#
|
1407
1467
|
# @option params [required, String] :instance_id
|
1408
|
-
# The identifier of the Amazon Connect instance.
|
1468
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1469
|
+
# instanceId in the ARN of the instance.
|
1409
1470
|
#
|
1410
1471
|
# @option params [required, String] :hours_of_operation_id
|
1411
1472
|
# The identifier for the hours of operation.
|
@@ -1459,7 +1520,8 @@ module Aws::Connect
|
|
1459
1520
|
# invoked.
|
1460
1521
|
#
|
1461
1522
|
# @option params [required, String] :instance_id
|
1462
|
-
# The identifier of the Amazon Connect instance.
|
1523
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1524
|
+
# instanceId in the ARN of the instance.
|
1463
1525
|
#
|
1464
1526
|
# @return [Types::DescribeInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1465
1527
|
#
|
@@ -1499,7 +1561,8 @@ module Aws::Connect
|
|
1499
1561
|
# Describes the specified instance attribute.
|
1500
1562
|
#
|
1501
1563
|
# @option params [required, String] :instance_id
|
1502
|
-
# The identifier of the Amazon Connect instance.
|
1564
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1565
|
+
# instanceId in the ARN of the instance.
|
1503
1566
|
#
|
1504
1567
|
# @option params [required, String] :attribute_type
|
1505
1568
|
# The type of attribute.
|
@@ -1536,7 +1599,8 @@ module Aws::Connect
|
|
1536
1599
|
# resource type, association ID, and instance ID.
|
1537
1600
|
#
|
1538
1601
|
# @option params [required, String] :instance_id
|
1539
|
-
# The identifier of the Amazon Connect instance.
|
1602
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1603
|
+
# instanceId in the ARN of the instance.
|
1540
1604
|
#
|
1541
1605
|
# @option params [required, String] :association_id
|
1542
1606
|
# The existing association identifier that uniquely identifies the
|
@@ -1587,7 +1651,8 @@ module Aws::Connect
|
|
1587
1651
|
# Describes the specified queue.
|
1588
1652
|
#
|
1589
1653
|
# @option params [required, String] :instance_id
|
1590
|
-
# The identifier of the Amazon Connect instance.
|
1654
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1655
|
+
# instanceId in the ARN of the instance.
|
1591
1656
|
#
|
1592
1657
|
# @option params [required, String] :queue_id
|
1593
1658
|
# The identifier for the queue.
|
@@ -1633,7 +1698,8 @@ module Aws::Connect
|
|
1633
1698
|
# Describes the quick connect.
|
1634
1699
|
#
|
1635
1700
|
# @option params [required, String] :instance_id
|
1636
|
-
# The identifier of the Amazon Connect instance.
|
1701
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1702
|
+
# instanceId in the ARN of the instance.
|
1637
1703
|
#
|
1638
1704
|
# @option params [required, String] :quick_connect_id
|
1639
1705
|
# The identifier for the quick connect.
|
@@ -1676,7 +1742,8 @@ module Aws::Connect
|
|
1676
1742
|
# Describes the specified routing profile.
|
1677
1743
|
#
|
1678
1744
|
# @option params [required, String] :instance_id
|
1679
|
-
# The identifier of the Amazon Connect instance.
|
1745
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1746
|
+
# instanceId in the ARN of the instance.
|
1680
1747
|
#
|
1681
1748
|
# @option params [required, String] :routing_profile_id
|
1682
1749
|
# The identifier of the routing profile.
|
@@ -1724,7 +1791,8 @@ module Aws::Connect
|
|
1724
1791
|
# The identifier of the user account.
|
1725
1792
|
#
|
1726
1793
|
# @option params [required, String] :instance_id
|
1727
|
-
# The identifier of the Amazon Connect instance.
|
1794
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1795
|
+
# instanceId in the ARN of the instance.
|
1728
1796
|
#
|
1729
1797
|
# @return [Types::DescribeUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1730
1798
|
#
|
@@ -1772,7 +1840,8 @@ module Aws::Connect
|
|
1772
1840
|
# The identifier of the hierarchy group.
|
1773
1841
|
#
|
1774
1842
|
# @option params [required, String] :instance_id
|
1775
|
-
# The identifier of the Amazon Connect instance.
|
1843
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1844
|
+
# instanceId in the ARN of the instance.
|
1776
1845
|
#
|
1777
1846
|
# @return [Types::DescribeUserHierarchyGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1778
1847
|
#
|
@@ -1820,7 +1889,8 @@ module Aws::Connect
|
|
1820
1889
|
# instance.
|
1821
1890
|
#
|
1822
1891
|
# @option params [required, String] :instance_id
|
1823
|
-
# The identifier of the Amazon Connect instance.
|
1892
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1893
|
+
# instanceId in the ARN of the instance.
|
1824
1894
|
#
|
1825
1895
|
# @return [Types::DescribeUserHierarchyStructureResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1826
1896
|
#
|
@@ -1865,7 +1935,8 @@ module Aws::Connect
|
|
1865
1935
|
# Revokes access to integrated applications from Amazon Connect.
|
1866
1936
|
#
|
1867
1937
|
# @option params [required, String] :instance_id
|
1868
|
-
# The identifier of the Amazon Connect instance.
|
1938
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1939
|
+
# instanceId in the ARN of the instance.
|
1869
1940
|
#
|
1870
1941
|
# @option params [required, String] :origin
|
1871
1942
|
# The domain URL of the integrated application.
|
@@ -1888,6 +1959,46 @@ module Aws::Connect
|
|
1888
1959
|
req.send_request(options)
|
1889
1960
|
end
|
1890
1961
|
|
1962
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1963
|
+
# change.
|
1964
|
+
#
|
1965
|
+
# Revokes authorization from the specified instance to access the
|
1966
|
+
# specified Amazon Lex or Amazon Lex V2 bot.
|
1967
|
+
#
|
1968
|
+
# @option params [required, String] :instance_id
|
1969
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1970
|
+
# instanceId in the ARN of the instance.
|
1971
|
+
#
|
1972
|
+
# @option params [Types::LexBot] :lex_bot
|
1973
|
+
# Configuration information of an Amazon Lex bot.
|
1974
|
+
#
|
1975
|
+
# @option params [Types::LexV2Bot] :lex_v2_bot
|
1976
|
+
# The Amazon Lex V2 bot to disassociate from the instance.
|
1977
|
+
#
|
1978
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1979
|
+
#
|
1980
|
+
# @example Request syntax with placeholder values
|
1981
|
+
#
|
1982
|
+
# resp = client.disassociate_bot({
|
1983
|
+
# instance_id: "InstanceId", # required
|
1984
|
+
# lex_bot: {
|
1985
|
+
# name: "BotName",
|
1986
|
+
# lex_region: "LexRegion",
|
1987
|
+
# },
|
1988
|
+
# lex_v2_bot: {
|
1989
|
+
# alias_arn: "AliasArn",
|
1990
|
+
# },
|
1991
|
+
# })
|
1992
|
+
#
|
1993
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateBot AWS API Documentation
|
1994
|
+
#
|
1995
|
+
# @overload disassociate_bot(params = {})
|
1996
|
+
# @param [Hash] params ({})
|
1997
|
+
def disassociate_bot(params = {}, options = {})
|
1998
|
+
req = build_request(:disassociate_bot, params)
|
1999
|
+
req.send_request(options)
|
2000
|
+
end
|
2001
|
+
|
1891
2002
|
# This API is in preview release for Amazon Connect and is subject to
|
1892
2003
|
# change.
|
1893
2004
|
#
|
@@ -1895,7 +2006,8 @@ module Aws::Connect
|
|
1895
2006
|
# type and association ID.
|
1896
2007
|
#
|
1897
2008
|
# @option params [required, String] :instance_id
|
1898
|
-
# The identifier of the Amazon Connect instance.
|
2009
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2010
|
+
# instanceId in the ARN of the instance.
|
1899
2011
|
#
|
1900
2012
|
# @option params [required, String] :association_id
|
1901
2013
|
# The existing association identifier that uniquely identifies the
|
@@ -1930,7 +2042,8 @@ module Aws::Connect
|
|
1930
2042
|
# relevant contact flow blocks.
|
1931
2043
|
#
|
1932
2044
|
# @option params [required, String] :instance_id
|
1933
|
-
# The identifier of the Amazon Connect instance
|
2045
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2046
|
+
# instanceId in the ARN of the instance..
|
1934
2047
|
#
|
1935
2048
|
# @option params [required, String] :function_arn
|
1936
2049
|
# The Amazon Resource Name (ARN) of the Lambda function being
|
@@ -1961,7 +2074,8 @@ module Aws::Connect
|
|
1961
2074
|
# specified Amazon Lex bot.
|
1962
2075
|
#
|
1963
2076
|
# @option params [required, String] :instance_id
|
1964
|
-
# The identifier of the Amazon Connect instance.
|
2077
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2078
|
+
# instanceId in the ARN of the instance.
|
1965
2079
|
#
|
1966
2080
|
# @option params [required, String] :bot_name
|
1967
2081
|
# The name of the Amazon Lex bot. Maximum character limit of 50.
|
@@ -1994,7 +2108,8 @@ module Aws::Connect
|
|
1994
2108
|
# Disassociates a set of quick connects from a queue.
|
1995
2109
|
#
|
1996
2110
|
# @option params [required, String] :instance_id
|
1997
|
-
# The identifier of the Amazon Connect instance.
|
2111
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2112
|
+
# instanceId in the ARN of the instance.
|
1998
2113
|
#
|
1999
2114
|
# @option params [required, String] :queue_id
|
2000
2115
|
# The identifier for the queue.
|
@@ -2024,7 +2139,8 @@ module Aws::Connect
|
|
2024
2139
|
# Disassociates a set of queues from a routing profile.
|
2025
2140
|
#
|
2026
2141
|
# @option params [required, String] :instance_id
|
2027
|
-
# The identifier of the Amazon Connect instance.
|
2142
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2143
|
+
# instanceId in the ARN of the instance.
|
2028
2144
|
#
|
2029
2145
|
# @option params [required, String] :routing_profile_id
|
2030
2146
|
# The identifier of the routing profile.
|
@@ -2062,7 +2178,8 @@ module Aws::Connect
|
|
2062
2178
|
# Deletes the specified security key.
|
2063
2179
|
#
|
2064
2180
|
# @option params [required, String] :instance_id
|
2065
|
-
# The identifier of the Amazon Connect instance.
|
2181
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2182
|
+
# instanceId in the ARN of the instance.
|
2066
2183
|
#
|
2067
2184
|
# @option params [required, String] :association_id
|
2068
2185
|
# The existing association identifier that uniquely identifies the
|
@@ -2130,7 +2247,8 @@ module Aws::Connect
|
|
2130
2247
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html
|
2131
2248
|
#
|
2132
2249
|
# @option params [required, String] :instance_id
|
2133
|
-
# The identifier of the Amazon Connect instance.
|
2250
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2251
|
+
# instanceId in the ARN of the instance.
|
2134
2252
|
#
|
2135
2253
|
# @option params [required, Types::Filters] :filters
|
2136
2254
|
# The queues, up to 100, or channels, to use to filter the metrics
|
@@ -2330,7 +2448,8 @@ module Aws::Connect
|
|
2330
2448
|
# </note>
|
2331
2449
|
#
|
2332
2450
|
# @option params [required, String] :instance_id
|
2333
|
-
# The identifier of the Amazon Connect instance.
|
2451
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2452
|
+
# instanceId in the ARN of the instance.
|
2334
2453
|
#
|
2335
2454
|
# @return [Types::GetFederationTokenResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2336
2455
|
#
|
@@ -2369,7 +2488,8 @@ module Aws::Connect
|
|
2369
2488
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
2370
2489
|
#
|
2371
2490
|
# @option params [required, String] :instance_id
|
2372
|
-
# The identifier of the Amazon Connect instance.
|
2491
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2492
|
+
# instanceId in the ARN of the instance.
|
2373
2493
|
#
|
2374
2494
|
# @option params [required, Time,DateTime,Date,Integer,String] :start_time
|
2375
2495
|
# The timestamp, in UNIX Epoch time format, at which to start the
|
@@ -2416,6 +2536,11 @@ module Aws::Connect
|
|
2416
2536
|
# description of each metric, see [Historical Metrics Definitions][1] in
|
2417
2537
|
# the *Amazon Connect Administrator Guide*.
|
2418
2538
|
#
|
2539
|
+
# <note markdown="1"> This API does not support a contacts incoming metric (there's no
|
2540
|
+
# CONTACTS\_INCOMING metric missing from the documented list).
|
2541
|
+
#
|
2542
|
+
# </note>
|
2543
|
+
#
|
2419
2544
|
# ABANDON\_TIME
|
2420
2545
|
#
|
2421
2546
|
# : Unit: SECONDS
|
@@ -2648,7 +2773,8 @@ module Aws::Connect
|
|
2648
2773
|
# instance.
|
2649
2774
|
#
|
2650
2775
|
# @option params [required, String] :instance_id
|
2651
|
-
# The identifier of the Amazon Connect instance.
|
2776
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2777
|
+
# instanceId in the ARN of the instance.
|
2652
2778
|
#
|
2653
2779
|
# @option params [String] :next_token
|
2654
2780
|
# The token for the next set of results. Use the value returned in the
|
@@ -2688,6 +2814,60 @@ module Aws::Connect
|
|
2688
2814
|
req.send_request(options)
|
2689
2815
|
end
|
2690
2816
|
|
2817
|
+
# This API is in preview release for Amazon Connect and is subject to
|
2818
|
+
# change.
|
2819
|
+
#
|
2820
|
+
# For the specified version of Amazon Lex, returns a paginated list of
|
2821
|
+
# all the Amazon Lex bots currently associated with the instance.
|
2822
|
+
#
|
2823
|
+
# @option params [required, String] :instance_id
|
2824
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2825
|
+
# instanceId in the ARN of the instance.
|
2826
|
+
#
|
2827
|
+
# @option params [String] :next_token
|
2828
|
+
# The token for the next set of results. Use the value returned in the
|
2829
|
+
# previous response in the next request to retrieve the next set of
|
2830
|
+
# results.
|
2831
|
+
#
|
2832
|
+
# @option params [Integer] :max_results
|
2833
|
+
# The maximum number of results to return per page.
|
2834
|
+
#
|
2835
|
+
# @option params [required, String] :lex_version
|
2836
|
+
# The version of Amazon Lex or Amazon Lex V2.
|
2837
|
+
#
|
2838
|
+
# @return [Types::ListBotsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2839
|
+
#
|
2840
|
+
# * {Types::ListBotsResponse#lex_bots #lex_bots} => Array<Types::LexBotConfig>
|
2841
|
+
# * {Types::ListBotsResponse#next_token #next_token} => String
|
2842
|
+
#
|
2843
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2844
|
+
#
|
2845
|
+
# @example Request syntax with placeholder values
|
2846
|
+
#
|
2847
|
+
# resp = client.list_bots({
|
2848
|
+
# instance_id: "InstanceId", # required
|
2849
|
+
# next_token: "NextToken",
|
2850
|
+
# max_results: 1,
|
2851
|
+
# lex_version: "V1", # required, accepts V1, V2
|
2852
|
+
# })
|
2853
|
+
#
|
2854
|
+
# @example Response structure
|
2855
|
+
#
|
2856
|
+
# resp.lex_bots #=> Array
|
2857
|
+
# resp.lex_bots[0].lex_bot.name #=> String
|
2858
|
+
# resp.lex_bots[0].lex_bot.lex_region #=> String
|
2859
|
+
# resp.lex_bots[0].lex_v2_bot.alias_arn #=> String
|
2860
|
+
# resp.next_token #=> String
|
2861
|
+
#
|
2862
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListBots AWS API Documentation
|
2863
|
+
#
|
2864
|
+
# @overload list_bots(params = {})
|
2865
|
+
# @param [Hash] params ({})
|
2866
|
+
def list_bots(params = {}, options = {})
|
2867
|
+
req = build_request(:list_bots, params)
|
2868
|
+
req.send_request(options)
|
2869
|
+
end
|
2870
|
+
|
2691
2871
|
# Provides information about the contact flows for the specified Amazon
|
2692
2872
|
# Connect instance.
|
2693
2873
|
#
|
@@ -2703,7 +2883,8 @@ module Aws::Connect
|
|
2703
2883
|
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/concepts-contact-flows.html
|
2704
2884
|
#
|
2705
2885
|
# @option params [required, String] :instance_id
|
2706
|
-
# The identifier of the Amazon Connect instance.
|
2886
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2887
|
+
# instanceId in the ARN of the instance.
|
2707
2888
|
#
|
2708
2889
|
# @option params [Array<String>] :contact_flow_types
|
2709
2890
|
# The type of contact flow.
|
@@ -2761,7 +2942,8 @@ module Aws::Connect
|
|
2761
2942
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/set-hours-operation.html
|
2762
2943
|
#
|
2763
2944
|
# @option params [required, String] :instance_id
|
2764
|
-
# The identifier of the Amazon Connect instance.
|
2945
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2946
|
+
# instanceId in the ARN of the instance.
|
2765
2947
|
#
|
2766
2948
|
# @option params [String] :next_token
|
2767
2949
|
# The token for the next set of results. Use the value returned in the
|
@@ -2810,7 +2992,8 @@ module Aws::Connect
|
|
2810
2992
|
# instance.
|
2811
2993
|
#
|
2812
2994
|
# @option params [required, String] :instance_id
|
2813
|
-
# The identifier of the Amazon Connect instance.
|
2995
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2996
|
+
# instanceId in the ARN of the instance.
|
2814
2997
|
#
|
2815
2998
|
# @option params [String] :next_token
|
2816
2999
|
# The token for the next set of results. Use the value returned in the
|
@@ -2858,7 +3041,8 @@ module Aws::Connect
|
|
2858
3041
|
# instance and resource type.
|
2859
3042
|
#
|
2860
3043
|
# @option params [required, String] :instance_id
|
2861
|
-
# The identifier of the Amazon Connect instance.
|
3044
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3045
|
+
# instanceId in the ARN of the instance.
|
2862
3046
|
#
|
2863
3047
|
# @option params [required, String] :resource_type
|
2864
3048
|
# A valid resource type.
|
@@ -2970,7 +3154,8 @@ module Aws::Connect
|
|
2970
3154
|
# the specified Amazon Connect instance.
|
2971
3155
|
#
|
2972
3156
|
# @option params [required, String] :instance_id
|
2973
|
-
# The identifier of the Amazon Connect instance.
|
3157
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3158
|
+
# instanceId in the ARN of the instance.
|
2974
3159
|
#
|
2975
3160
|
# @option params [String] :next_token
|
2976
3161
|
# The token for the next set of results. Use the value returned in the
|
@@ -3024,7 +3209,8 @@ module Aws::Connect
|
|
3024
3209
|
# dropdown options in the relevant contact flow blocks.
|
3025
3210
|
#
|
3026
3211
|
# @option params [required, String] :instance_id
|
3027
|
-
# The identifier of the Amazon Connect instance.
|
3212
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3213
|
+
# instanceId in the ARN of the instance.
|
3028
3214
|
#
|
3029
3215
|
# @option params [String] :next_token
|
3030
3216
|
# The token for the next set of results. Use the value returned in the
|
@@ -3071,7 +3257,8 @@ module Aws::Connect
|
|
3071
3257
|
# associated with the instance.
|
3072
3258
|
#
|
3073
3259
|
# @option params [required, String] :instance_id
|
3074
|
-
# The identifier of the Amazon Connect instance.
|
3260
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3261
|
+
# instanceId in the ARN of the instance.
|
3075
3262
|
#
|
3076
3263
|
# @option params [String] :next_token
|
3077
3264
|
# The token for the next set of results. Use the value returned in the
|
@@ -3124,7 +3311,8 @@ module Aws::Connect
|
|
3124
3311
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-center-phone-number.html
|
3125
3312
|
#
|
3126
3313
|
# @option params [required, String] :instance_id
|
3127
|
-
# The identifier of the Amazon Connect instance.
|
3314
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3315
|
+
# instanceId in the ARN of the instance.
|
3128
3316
|
#
|
3129
3317
|
# @option params [Array<String>] :phone_number_types
|
3130
3318
|
# The type of phone number.
|
@@ -3228,7 +3416,8 @@ module Aws::Connect
|
|
3228
3416
|
# Lists the quick connects associated with a queue.
|
3229
3417
|
#
|
3230
3418
|
# @option params [required, String] :instance_id
|
3231
|
-
# The identifier of the Amazon Connect instance.
|
3419
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3420
|
+
# instanceId in the ARN of the instance.
|
3232
3421
|
#
|
3233
3422
|
# @option params [required, String] :queue_id
|
3234
3423
|
# The identifier for the queue.
|
@@ -3291,7 +3480,8 @@ module Aws::Connect
|
|
3291
3480
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/concepts-queues-standard-and-agent.html
|
3292
3481
|
#
|
3293
3482
|
# @option params [required, String] :instance_id
|
3294
|
-
# The identifier of the Amazon Connect instance.
|
3483
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3484
|
+
# instanceId in the ARN of the instance.
|
3295
3485
|
#
|
3296
3486
|
# @option params [Array<String>] :queue_types
|
3297
3487
|
# The type of queue.
|
@@ -3345,7 +3535,8 @@ module Aws::Connect
|
|
3345
3535
|
# Connect instance.
|
3346
3536
|
#
|
3347
3537
|
# @option params [required, String] :instance_id
|
3348
|
-
# The identifier of the Amazon Connect instance.
|
3538
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3539
|
+
# instanceId in the ARN of the instance.
|
3349
3540
|
#
|
3350
3541
|
# @option params [String] :next_token
|
3351
3542
|
# The token for the next set of results. Use the value returned in the
|
@@ -3398,7 +3589,8 @@ module Aws::Connect
|
|
3398
3589
|
# Lists the queues associated with a routing profile.
|
3399
3590
|
#
|
3400
3591
|
# @option params [required, String] :instance_id
|
3401
|
-
# The identifier of the Amazon Connect instance.
|
3592
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3593
|
+
# instanceId in the ARN of the instance.
|
3402
3594
|
#
|
3403
3595
|
# @option params [required, String] :routing_profile_id
|
3404
3596
|
# The identifier of the routing profile.
|
@@ -3460,7 +3652,8 @@ module Aws::Connect
|
|
3460
3652
|
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/routing-profiles.html
|
3461
3653
|
#
|
3462
3654
|
# @option params [required, String] :instance_id
|
3463
|
-
# The identifier of the Amazon Connect instance.
|
3655
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3656
|
+
# instanceId in the ARN of the instance.
|
3464
3657
|
#
|
3465
3658
|
# @option params [String] :next_token
|
3466
3659
|
# The token for the next set of results. Use the value returned in the
|
@@ -3509,7 +3702,8 @@ module Aws::Connect
|
|
3509
3702
|
# instance.
|
3510
3703
|
#
|
3511
3704
|
# @option params [required, String] :instance_id
|
3512
|
-
# The identifier of the Amazon Connect instance.
|
3705
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3706
|
+
# instanceId in the ARN of the instance.
|
3513
3707
|
#
|
3514
3708
|
# @option params [String] :next_token
|
3515
3709
|
# The token for the next set of results. Use the value returned in the
|
@@ -3562,7 +3756,8 @@ module Aws::Connect
|
|
3562
3756
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/connect-security-profiles.html
|
3563
3757
|
#
|
3564
3758
|
# @option params [required, String] :instance_id
|
3565
|
-
# The identifier of the Amazon Connect instance.
|
3759
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3760
|
+
# instanceId in the ARN of the instance.
|
3566
3761
|
#
|
3567
3762
|
# @option params [String] :next_token
|
3568
3763
|
# The token for the next set of results. Use the value returned in the
|
@@ -3643,7 +3838,8 @@ module Aws::Connect
|
|
3643
3838
|
# Lists the use cases.
|
3644
3839
|
#
|
3645
3840
|
# @option params [required, String] :instance_id
|
3646
|
-
# The identifier of the Amazon Connect instance.
|
3841
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3842
|
+
# instanceId in the ARN of the instance.
|
3647
3843
|
#
|
3648
3844
|
# @option params [required, String] :integration_association_id
|
3649
3845
|
# The identifier for the integration association.
|
@@ -3700,7 +3896,8 @@ module Aws::Connect
|
|
3700
3896
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/agent-hierarchy.html
|
3701
3897
|
#
|
3702
3898
|
# @option params [required, String] :instance_id
|
3703
|
-
# The identifier of the Amazon Connect instance.
|
3899
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3900
|
+
# instanceId in the ARN of the instance.
|
3704
3901
|
#
|
3705
3902
|
# @option params [String] :next_token
|
3706
3903
|
# The token for the next set of results. Use the value returned in the
|
@@ -3746,7 +3943,8 @@ module Aws::Connect
|
|
3746
3943
|
# Connect instance.
|
3747
3944
|
#
|
3748
3945
|
# @option params [required, String] :instance_id
|
3749
|
-
# The identifier of the Amazon Connect instance.
|
3946
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3947
|
+
# instanceId in the ARN of the instance.
|
3750
3948
|
#
|
3751
3949
|
# @option params [String] :next_token
|
3752
3950
|
# The token for the next set of results. Use the value returned in the
|
@@ -3794,7 +3992,8 @@ module Aws::Connect
|
|
3794
3992
|
# Only voice recordings are supported at this time.
|
3795
3993
|
#
|
3796
3994
|
# @option params [required, String] :instance_id
|
3797
|
-
# The identifier of the Amazon Connect instance.
|
3995
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3996
|
+
# instanceId in the ARN of the instance.
|
3798
3997
|
#
|
3799
3998
|
# @option params [required, String] :contact_id
|
3800
3999
|
# The identifier of the contact.
|
@@ -3851,7 +4050,8 @@ module Aws::Connect
|
|
3851
4050
|
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/chat.html
|
3852
4051
|
#
|
3853
4052
|
# @option params [required, String] :instance_id
|
3854
|
-
# The identifier of the Amazon Connect instance.
|
4053
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4054
|
+
# instanceId in the ARN of the instance.
|
3855
4055
|
#
|
3856
4056
|
# @option params [required, String] :contact_flow_id
|
3857
4057
|
# The identifier of the contact flow for initiating the chat. To see the
|
@@ -3942,7 +4142,8 @@ module Aws::Connect
|
|
3942
4142
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/set-recording-behavior.html
|
3943
4143
|
#
|
3944
4144
|
# @option params [required, String] :instance_id
|
3945
|
-
# The identifier of the Amazon Connect instance.
|
4145
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4146
|
+
# instanceId in the ARN of the instance.
|
3946
4147
|
#
|
3947
4148
|
# @option params [required, String] :contact_id
|
3948
4149
|
# The identifier of the contact.
|
@@ -4013,13 +4214,13 @@ module Aws::Connect
|
|
4013
4214
|
# arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/**846ec553-a005-41c0-8341-xxxxxxxxxxxx**
|
4014
4215
|
#
|
4015
4216
|
# @option params [required, String] :instance_id
|
4016
|
-
# The identifier of the Amazon Connect instance.
|
4217
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4218
|
+
# instanceId in the ARN of the instance.
|
4017
4219
|
#
|
4018
4220
|
# @option params [String] :client_token
|
4019
4221
|
# A unique, case-sensitive identifier that you provide to ensure the
|
4020
4222
|
# idempotency of the request. The token is valid for 7 days after
|
4021
4223
|
# creation. If a contact is already started, the contact ID is returned.
|
4022
|
-
# If the contact is disconnected, a new contact is started.
|
4023
4224
|
#
|
4024
4225
|
# **A suitable default value is auto-generated.** You should normally
|
4025
4226
|
# not need to pass this option.**
|
@@ -4078,7 +4279,8 @@ module Aws::Connect
|
|
4078
4279
|
# Initiates a contact flow to start a new task.
|
4079
4280
|
#
|
4080
4281
|
# @option params [required, String] :instance_id
|
4081
|
-
# The identifier of the Amazon Connect instance.
|
4282
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4283
|
+
# instanceId in the ARN of the instance.
|
4082
4284
|
#
|
4083
4285
|
# @option params [String] :previous_contact_id
|
4084
4286
|
# The identifier of the previous chat, voice, or task contact.
|
@@ -4164,7 +4366,8 @@ module Aws::Connect
|
|
4164
4366
|
# The ID of the contact.
|
4165
4367
|
#
|
4166
4368
|
# @option params [required, String] :instance_id
|
4167
|
-
# The identifier of the Amazon Connect instance.
|
4369
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4370
|
+
# instanceId in the ARN of the instance.
|
4168
4371
|
#
|
4169
4372
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4170
4373
|
#
|
@@ -4195,7 +4398,8 @@ module Aws::Connect
|
|
4195
4398
|
# Only voice recordings are supported at this time.
|
4196
4399
|
#
|
4197
4400
|
# @option params [required, String] :instance_id
|
4198
|
-
# The identifier of the Amazon Connect instance.
|
4401
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4402
|
+
# instanceId in the ARN of the instance.
|
4199
4403
|
#
|
4200
4404
|
# @option params [required, String] :contact_id
|
4201
4405
|
# The identifier of the contact.
|
@@ -4234,7 +4438,8 @@ module Aws::Connect
|
|
4234
4438
|
# Only voice recordings are supported at this time.
|
4235
4439
|
#
|
4236
4440
|
# @option params [required, String] :instance_id
|
4237
|
-
# The identifier of the Amazon Connect instance.
|
4441
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4442
|
+
# instanceId in the ARN of the instance.
|
4238
4443
|
#
|
4239
4444
|
# @option params [required, String] :contact_id
|
4240
4445
|
# The identifier of the contact.
|
@@ -4363,7 +4568,8 @@ module Aws::Connect
|
|
4363
4568
|
# associated with the first interaction with the contact center.
|
4364
4569
|
#
|
4365
4570
|
# @option params [required, String] :instance_id
|
4366
|
-
# The identifier of the Amazon Connect instance.
|
4571
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4572
|
+
# instanceId in the ARN of the instance.
|
4367
4573
|
#
|
4368
4574
|
# @option params [required, Hash<String,String>] :attributes
|
4369
4575
|
# The Amazon Connect attributes. These attributes can be accessed in
|
@@ -4484,7 +4690,8 @@ module Aws::Connect
|
|
4484
4690
|
# Updates the value for the specified attribute type.
|
4485
4691
|
#
|
4486
4692
|
# @option params [required, String] :instance_id
|
4487
|
-
# The identifier of the Amazon Connect instance.
|
4693
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4694
|
+
# instanceId in the ARN of the instance.
|
4488
4695
|
#
|
4489
4696
|
# @option params [required, String] :attribute_type
|
4490
4697
|
# The type of attribute.
|
@@ -4518,7 +4725,8 @@ module Aws::Connect
|
|
4518
4725
|
# idempotent.
|
4519
4726
|
#
|
4520
4727
|
# @option params [required, String] :instance_id
|
4521
|
-
# The identifier of the Amazon Connect instance.
|
4728
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4729
|
+
# instanceId in the ARN of the instance.
|
4522
4730
|
#
|
4523
4731
|
# @option params [required, String] :association_id
|
4524
4732
|
# The existing association identifier that uniquely identifies the
|
@@ -4581,7 +4789,8 @@ module Aws::Connect
|
|
4581
4789
|
# Updates the hours of operation for the specified queue.
|
4582
4790
|
#
|
4583
4791
|
# @option params [required, String] :instance_id
|
4584
|
-
# The identifier of the Amazon Connect instance.
|
4792
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4793
|
+
# instanceId in the ARN of the instance.
|
4585
4794
|
#
|
4586
4795
|
# @option params [required, String] :queue_id
|
4587
4796
|
# The identifier for the queue.
|
@@ -4615,7 +4824,8 @@ module Aws::Connect
|
|
4615
4824
|
# considered full.
|
4616
4825
|
#
|
4617
4826
|
# @option params [required, String] :instance_id
|
4618
|
-
# The identifier of the Amazon Connect instance.
|
4827
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4828
|
+
# instanceId in the ARN of the instance.
|
4619
4829
|
#
|
4620
4830
|
# @option params [required, String] :queue_id
|
4621
4831
|
# The identifier for the queue.
|
@@ -4650,7 +4860,8 @@ module Aws::Connect
|
|
4650
4860
|
# `Description` must be provided.
|
4651
4861
|
#
|
4652
4862
|
# @option params [required, String] :instance_id
|
4653
|
-
# The identifier of the Amazon Connect instance.
|
4863
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4864
|
+
# instanceId in the ARN of the instance.
|
4654
4865
|
#
|
4655
4866
|
# @option params [required, String] :queue_id
|
4656
4867
|
# The identifier for the queue.
|
@@ -4688,7 +4899,8 @@ module Aws::Connect
|
|
4688
4899
|
# for a specified queue.
|
4689
4900
|
#
|
4690
4901
|
# @option params [required, String] :instance_id
|
4691
|
-
# The identifier of the Amazon Connect instance.
|
4902
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4903
|
+
# instanceId in the ARN of the instance.
|
4692
4904
|
#
|
4693
4905
|
# @option params [required, String] :queue_id
|
4694
4906
|
# The identifier for the queue.
|
@@ -4725,7 +4937,8 @@ module Aws::Connect
|
|
4725
4937
|
# Updates the status of the queue.
|
4726
4938
|
#
|
4727
4939
|
# @option params [required, String] :instance_id
|
4728
|
-
# The identifier of the Amazon Connect instance.
|
4940
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4941
|
+
# instanceId in the ARN of the instance.
|
4729
4942
|
#
|
4730
4943
|
# @option params [required, String] :queue_id
|
4731
4944
|
# The identifier for the queue.
|
@@ -4758,7 +4971,8 @@ module Aws::Connect
|
|
4758
4971
|
# Updates the configuration settings for the specified quick connect.
|
4759
4972
|
#
|
4760
4973
|
# @option params [required, String] :instance_id
|
4761
|
-
# The identifier of the Amazon Connect instance.
|
4974
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4975
|
+
# instanceId in the ARN of the instance.
|
4762
4976
|
#
|
4763
4977
|
# @option params [required, String] :quick_connect_id
|
4764
4978
|
# The identifier for the quick connect.
|
@@ -4806,7 +5020,8 @@ module Aws::Connect
|
|
4806
5020
|
# `Description` must be provided.
|
4807
5021
|
#
|
4808
5022
|
# @option params [required, String] :instance_id
|
4809
|
-
# The identifier of the Amazon Connect instance.
|
5023
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5024
|
+
# instanceId in the ARN of the instance.
|
4810
5025
|
#
|
4811
5026
|
# @option params [required, String] :quick_connect_id
|
4812
5027
|
# The identifier for the quick connect.
|
@@ -4841,7 +5056,8 @@ module Aws::Connect
|
|
4841
5056
|
# Panel (CCP) for a routing profile.
|
4842
5057
|
#
|
4843
5058
|
# @option params [required, String] :instance_id
|
4844
|
-
# The identifier of the Amazon Connect instance.
|
5059
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5060
|
+
# instanceId in the ARN of the instance.
|
4845
5061
|
#
|
4846
5062
|
# @option params [required, String] :routing_profile_id
|
4847
5063
|
# The identifier of the routing profile.
|
@@ -4877,7 +5093,8 @@ module Aws::Connect
|
|
4877
5093
|
# Updates the default outbound queue of a routing profile.
|
4878
5094
|
#
|
4879
5095
|
# @option params [required, String] :instance_id
|
4880
|
-
# The identifier of the Amazon Connect instance.
|
5096
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5097
|
+
# instanceId in the ARN of the instance.
|
4881
5098
|
#
|
4882
5099
|
# @option params [required, String] :routing_profile_id
|
4883
5100
|
# The identifier of the routing profile.
|
@@ -4909,7 +5126,8 @@ module Aws::Connect
|
|
4909
5126
|
# `Description` must be provided.
|
4910
5127
|
#
|
4911
5128
|
# @option params [required, String] :instance_id
|
4912
|
-
# The identifier of the Amazon Connect instance.
|
5129
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5130
|
+
# instanceId in the ARN of the instance.
|
4913
5131
|
#
|
4914
5132
|
# @option params [required, String] :routing_profile_id
|
4915
5133
|
# The identifier of the routing profile.
|
@@ -4945,7 +5163,8 @@ module Aws::Connect
|
|
4945
5163
|
# profile.
|
4946
5164
|
#
|
4947
5165
|
# @option params [required, String] :instance_id
|
4948
|
-
# The identifier of the Amazon Connect instance.
|
5166
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5167
|
+
# instanceId in the ARN of the instance.
|
4949
5168
|
#
|
4950
5169
|
# @option params [required, String] :routing_profile_id
|
4951
5170
|
# The identifier of the routing profile.
|
@@ -4992,7 +5211,8 @@ module Aws::Connect
|
|
4992
5211
|
# The identifier of the user account.
|
4993
5212
|
#
|
4994
5213
|
# @option params [required, String] :instance_id
|
4995
|
-
# The identifier of the Amazon Connect instance.
|
5214
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5215
|
+
# instanceId in the ARN of the instance.
|
4996
5216
|
#
|
4997
5217
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4998
5218
|
#
|
@@ -5022,7 +5242,8 @@ module Aws::Connect
|
|
5022
5242
|
# The identifier of the hierarchy group.
|
5023
5243
|
#
|
5024
5244
|
# @option params [required, String] :instance_id
|
5025
|
-
# The identifier of the Amazon Connect instance.
|
5245
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5246
|
+
# instanceId in the ARN of the instance.
|
5026
5247
|
#
|
5027
5248
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5028
5249
|
#
|
@@ -5050,7 +5271,8 @@ module Aws::Connect
|
|
5050
5271
|
# The hierarchy levels to update.
|
5051
5272
|
#
|
5052
5273
|
# @option params [required, String] :instance_id
|
5053
|
-
# The identifier of the Amazon Connect instance.
|
5274
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5275
|
+
# instanceId in the ARN of the instance.
|
5054
5276
|
#
|
5055
5277
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5056
5278
|
#
|
@@ -5107,7 +5329,8 @@ module Aws::Connect
|
|
5107
5329
|
# The identifier of the user account.
|
5108
5330
|
#
|
5109
5331
|
# @option params [required, String] :instance_id
|
5110
|
-
# The identifier of the Amazon Connect instance.
|
5332
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5333
|
+
# instanceId in the ARN of the instance.
|
5111
5334
|
#
|
5112
5335
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5113
5336
|
#
|
@@ -5141,7 +5364,8 @@ module Aws::Connect
|
|
5141
5364
|
# The identifier of the user account.
|
5142
5365
|
#
|
5143
5366
|
# @option params [required, String] :instance_id
|
5144
|
-
# The identifier of the Amazon Connect instance.
|
5367
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5368
|
+
# instanceId in the ARN of the instance.
|
5145
5369
|
#
|
5146
5370
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5147
5371
|
#
|
@@ -5176,7 +5400,8 @@ module Aws::Connect
|
|
5176
5400
|
# The identifier of the user account.
|
5177
5401
|
#
|
5178
5402
|
# @option params [required, String] :instance_id
|
5179
|
-
# The identifier of the Amazon Connect instance.
|
5403
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5404
|
+
# instanceId in the ARN of the instance.
|
5180
5405
|
#
|
5181
5406
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5182
5407
|
#
|
@@ -5206,7 +5431,8 @@ module Aws::Connect
|
|
5206
5431
|
# The identifier of the user account.
|
5207
5432
|
#
|
5208
5433
|
# @option params [required, String] :instance_id
|
5209
|
-
# The identifier of the Amazon Connect instance.
|
5434
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5435
|
+
# instanceId in the ARN of the instance.
|
5210
5436
|
#
|
5211
5437
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5212
5438
|
#
|
@@ -5240,7 +5466,7 @@ module Aws::Connect
|
|
5240
5466
|
params: params,
|
5241
5467
|
config: config)
|
5242
5468
|
context[:gem_name] = 'aws-sdk-connect'
|
5243
|
-
context[:gem_version] = '1.
|
5469
|
+
context[:gem_version] = '1.45.0'
|
5244
5470
|
Seahorse::Client::Request.new(handlers, context)
|
5245
5471
|
end
|
5246
5472
|
|