aws-sdk-connect 1.44.0 → 1.48.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d16cb51cb332e7eb7b41fcd816454fc07475da61860fac58debc41c259055fe0
4
- data.tar.gz: 2473f10a57bef02d91b56024d678f12e2539953e182311372bb760606f89696a
3
+ metadata.gz: a4287d1d6164c13dd276865e2c2c254768d8449e18071709e70a13ae8ce47895
4
+ data.tar.gz: f8af86f196475c475d688e69c1ba82ddf79534e52ac06e2cf51b2833d4d56533
5
5
  SHA512:
6
- metadata.gz: deaaab80d73ab2017512dba80a29bc9fbacfb90433509ede026232f5d2896bb0fd5e2a43a0cb18fbf8fe79ff66957b2dcb6ba63f32bade88b8863141d789ddd8
7
- data.tar.gz: 54d7e1e25d86d244b9ed5c8170f59b05f6389f5540387b2ec719add4686fb38537450c2c0b0733c95001ae44ebe829865f824c97f5bc98892bd029c85ed12c89
6
+ metadata.gz: 5bb019c060de2e6e7debd023b57c9447d5642b7e0ce1b4ab160bf8f8b571b438c1857474a33c97671de922ec720cd8a8ccd0082a5e7ab18bf64231bfc2c5c4c5
7
+ data.tar.gz: 3065dd7f4c128fc648eccff0f9f3dc6e5828cca14f12025fa2737d2a8d03101d1bbd135a8b00ccac7619290611b0b2a177e02f51a5270665c7a0db2109a49616
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.48.0 (2021-07-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.47.0 (2021-07-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.46.0 (2021-06-24)
15
+ ------------------
16
+
17
+ * Feature - Released Amazon Connect quick connects management API for general availability (GA). For more information, see https://docs.aws.amazon.com/connect/latest/APIReference/Welcome.html
18
+
19
+ 1.45.0 (2021-06-15)
20
+ ------------------
21
+
22
+ * 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
23
+
4
24
  1.44.0 (2021-05-07)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.48.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-connect/customizations'
48
48
  # @!group service
49
49
  module Aws::Connect
50
50
 
51
- GEM_VERSION = '1.44.0'
51
+ GEM_VERSION = '1.48.0'
52
52
 
53
53
  end
@@ -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 box to associate with the instance.
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.
@@ -851,13 +900,11 @@ module Aws::Connect
851
900
  req.send_request(options)
852
901
  end
853
902
 
854
- # This API is in preview release for Amazon Connect and is subject to
855
- # change.
856
- #
857
903
  # Creates a quick connect for the specified Amazon Connect instance.
858
904
  #
859
905
  # @option params [required, String] :instance_id
860
- # The identifier of the Amazon Connect instance.
906
+ # The identifier of the Amazon Connect instance. You can find the
907
+ # instanceId in the ARN of the instance.
861
908
  #
862
909
  # @option params [required, String] :name
863
910
  # The name of the quick connect.
@@ -918,7 +965,8 @@ module Aws::Connect
918
965
  # Creates a new routing profile.
919
966
  #
920
967
  # @option params [required, String] :instance_id
921
- # The identifier of the Amazon Connect instance.
968
+ # The identifier of the Amazon Connect instance. You can find the
969
+ # instanceId in the ARN of the instance.
922
970
  #
923
971
  # @option params [required, String] :name
924
972
  # The name of the routing profile. Must not be more than 127 characters.
@@ -991,7 +1039,8 @@ module Aws::Connect
991
1039
  # Creates a use case for an AppIntegration association.
992
1040
  #
993
1041
  # @option params [required, String] :instance_id
994
- # The identifier of the Amazon Connect instance.
1042
+ # The identifier of the Amazon Connect instance. You can find the
1043
+ # instanceId in the ARN of the instance.
995
1044
  #
996
1045
  # @option params [required, String] :integration_association_id
997
1046
  # The identifier for the AppIntegration association.
@@ -1084,7 +1133,8 @@ module Aws::Connect
1084
1133
  # The identifier of the hierarchy group for the user.
1085
1134
  #
1086
1135
  # @option params [required, String] :instance_id
1087
- # The identifier of the Amazon Connect instance.
1136
+ # The identifier of the Amazon Connect instance. You can find the
1137
+ # instanceId in the ARN of the instance.
1088
1138
  #
1089
1139
  # @option params [Hash<String,String>] :tags
1090
1140
  # One or more tags.
@@ -1145,7 +1195,8 @@ module Aws::Connect
1145
1195
  # created at level one if the parent group ID is null.
1146
1196
  #
1147
1197
  # @option params [required, String] :instance_id
1148
- # The identifier of the Amazon Connect instance.
1198
+ # The identifier of the Amazon Connect instance. You can find the
1199
+ # instanceId in the ARN of the instance.
1149
1200
  #
1150
1201
  # @return [Types::CreateUserHierarchyGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1151
1202
  #
@@ -1187,7 +1238,8 @@ module Aws::Connect
1187
1238
  # account.
1188
1239
  #
1189
1240
  # @option params [required, String] :instance_id
1190
- # The identifier of the Amazon Connect instance.
1241
+ # The identifier of the Amazon Connect instance. You can find the
1242
+ # instanceId in the ARN of the instance.
1191
1243
  #
1192
1244
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1193
1245
  #
@@ -1210,7 +1262,8 @@ module Aws::Connect
1210
1262
  # The association must not have any use cases associated with it.
1211
1263
  #
1212
1264
  # @option params [required, String] :instance_id
1213
- # The identifier of the Amazon Connect instance.
1265
+ # The identifier of the Amazon Connect instance. You can find the
1266
+ # instanceId in the ARN of the instance.
1214
1267
  #
1215
1268
  # @option params [required, String] :integration_association_id
1216
1269
  # The identifier for the AppIntegration association.
@@ -1233,13 +1286,11 @@ module Aws::Connect
1233
1286
  req.send_request(options)
1234
1287
  end
1235
1288
 
1236
- # This API is in preview release for Amazon Connect and is subject to
1237
- # change.
1238
- #
1239
1289
  # Deletes a quick connect.
1240
1290
  #
1241
1291
  # @option params [required, String] :instance_id
1242
- # The identifier of the Amazon Connect instance.
1292
+ # The identifier of the Amazon Connect instance. You can find the
1293
+ # instanceId in the ARN of the instance.
1243
1294
  #
1244
1295
  # @option params [required, String] :quick_connect_id
1245
1296
  # The identifier for the quick connect.
@@ -1265,7 +1316,8 @@ module Aws::Connect
1265
1316
  # Deletes a use case from an AppIntegration association.
1266
1317
  #
1267
1318
  # @option params [required, String] :instance_id
1268
- # The identifier of the Amazon Connect instance.
1319
+ # The identifier of the Amazon Connect instance. You can find the
1320
+ # instanceId in the ARN of the instance.
1269
1321
  #
1270
1322
  # @option params [required, String] :integration_association_id
1271
1323
  # The identifier for the AppIntegration association.
@@ -1303,7 +1355,8 @@ module Aws::Connect
1303
1355
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/delete-users.html
1304
1356
  #
1305
1357
  # @option params [required, String] :instance_id
1306
- # The identifier of the Amazon Connect instance.
1358
+ # The identifier of the Amazon Connect instance. You can find the
1359
+ # instanceId in the ARN of the instance.
1307
1360
  #
1308
1361
  # @option params [required, String] :user_id
1309
1362
  # The identifier of the user.
@@ -1333,7 +1386,8 @@ module Aws::Connect
1333
1386
  # The identifier of the hierarchy group.
1334
1387
  #
1335
1388
  # @option params [required, String] :instance_id
1336
- # The identifier of the Amazon Connect instance.
1389
+ # The identifier of the Amazon Connect instance. You can find the
1390
+ # instanceId in the ARN of the instance.
1337
1391
  #
1338
1392
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1339
1393
  #
@@ -1405,7 +1459,8 @@ module Aws::Connect
1405
1459
  # Describes the hours of operation.
1406
1460
  #
1407
1461
  # @option params [required, String] :instance_id
1408
- # The identifier of the Amazon Connect instance.
1462
+ # The identifier of the Amazon Connect instance. You can find the
1463
+ # instanceId in the ARN of the instance.
1409
1464
  #
1410
1465
  # @option params [required, String] :hours_of_operation_id
1411
1466
  # The identifier for the hours of operation.
@@ -1459,7 +1514,8 @@ module Aws::Connect
1459
1514
  # invoked.
1460
1515
  #
1461
1516
  # @option params [required, String] :instance_id
1462
- # The identifier of the Amazon Connect instance.
1517
+ # The identifier of the Amazon Connect instance. You can find the
1518
+ # instanceId in the ARN of the instance.
1463
1519
  #
1464
1520
  # @return [Types::DescribeInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1465
1521
  #
@@ -1499,7 +1555,8 @@ module Aws::Connect
1499
1555
  # Describes the specified instance attribute.
1500
1556
  #
1501
1557
  # @option params [required, String] :instance_id
1502
- # The identifier of the Amazon Connect instance.
1558
+ # The identifier of the Amazon Connect instance. You can find the
1559
+ # instanceId in the ARN of the instance.
1503
1560
  #
1504
1561
  # @option params [required, String] :attribute_type
1505
1562
  # The type of attribute.
@@ -1536,7 +1593,8 @@ module Aws::Connect
1536
1593
  # resource type, association ID, and instance ID.
1537
1594
  #
1538
1595
  # @option params [required, String] :instance_id
1539
- # The identifier of the Amazon Connect instance.
1596
+ # The identifier of the Amazon Connect instance. You can find the
1597
+ # instanceId in the ARN of the instance.
1540
1598
  #
1541
1599
  # @option params [required, String] :association_id
1542
1600
  # The existing association identifier that uniquely identifies the
@@ -1587,7 +1645,8 @@ module Aws::Connect
1587
1645
  # Describes the specified queue.
1588
1646
  #
1589
1647
  # @option params [required, String] :instance_id
1590
- # The identifier of the Amazon Connect instance.
1648
+ # The identifier of the Amazon Connect instance. You can find the
1649
+ # instanceId in the ARN of the instance.
1591
1650
  #
1592
1651
  # @option params [required, String] :queue_id
1593
1652
  # The identifier for the queue.
@@ -1627,13 +1686,11 @@ module Aws::Connect
1627
1686
  req.send_request(options)
1628
1687
  end
1629
1688
 
1630
- # This API is in preview release for Amazon Connect and is subject to
1631
- # change.
1632
- #
1633
1689
  # Describes the quick connect.
1634
1690
  #
1635
1691
  # @option params [required, String] :instance_id
1636
- # The identifier of the Amazon Connect instance.
1692
+ # The identifier of the Amazon Connect instance. You can find the
1693
+ # instanceId in the ARN of the instance.
1637
1694
  #
1638
1695
  # @option params [required, String] :quick_connect_id
1639
1696
  # The identifier for the quick connect.
@@ -1676,7 +1733,8 @@ module Aws::Connect
1676
1733
  # Describes the specified routing profile.
1677
1734
  #
1678
1735
  # @option params [required, String] :instance_id
1679
- # The identifier of the Amazon Connect instance.
1736
+ # The identifier of the Amazon Connect instance. You can find the
1737
+ # instanceId in the ARN of the instance.
1680
1738
  #
1681
1739
  # @option params [required, String] :routing_profile_id
1682
1740
  # The identifier of the routing profile.
@@ -1724,7 +1782,8 @@ module Aws::Connect
1724
1782
  # The identifier of the user account.
1725
1783
  #
1726
1784
  # @option params [required, String] :instance_id
1727
- # The identifier of the Amazon Connect instance.
1785
+ # The identifier of the Amazon Connect instance. You can find the
1786
+ # instanceId in the ARN of the instance.
1728
1787
  #
1729
1788
  # @return [Types::DescribeUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1730
1789
  #
@@ -1772,7 +1831,8 @@ module Aws::Connect
1772
1831
  # The identifier of the hierarchy group.
1773
1832
  #
1774
1833
  # @option params [required, String] :instance_id
1775
- # The identifier of the Amazon Connect instance.
1834
+ # The identifier of the Amazon Connect instance. You can find the
1835
+ # instanceId in the ARN of the instance.
1776
1836
  #
1777
1837
  # @return [Types::DescribeUserHierarchyGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1778
1838
  #
@@ -1820,7 +1880,8 @@ module Aws::Connect
1820
1880
  # instance.
1821
1881
  #
1822
1882
  # @option params [required, String] :instance_id
1823
- # The identifier of the Amazon Connect instance.
1883
+ # The identifier of the Amazon Connect instance. You can find the
1884
+ # instanceId in the ARN of the instance.
1824
1885
  #
1825
1886
  # @return [Types::DescribeUserHierarchyStructureResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1826
1887
  #
@@ -1865,7 +1926,8 @@ module Aws::Connect
1865
1926
  # Revokes access to integrated applications from Amazon Connect.
1866
1927
  #
1867
1928
  # @option params [required, String] :instance_id
1868
- # The identifier of the Amazon Connect instance.
1929
+ # The identifier of the Amazon Connect instance. You can find the
1930
+ # instanceId in the ARN of the instance.
1869
1931
  #
1870
1932
  # @option params [required, String] :origin
1871
1933
  # The domain URL of the integrated application.
@@ -1888,6 +1950,46 @@ module Aws::Connect
1888
1950
  req.send_request(options)
1889
1951
  end
1890
1952
 
1953
+ # This API is in preview release for Amazon Connect and is subject to
1954
+ # change.
1955
+ #
1956
+ # Revokes authorization from the specified instance to access the
1957
+ # specified Amazon Lex or Amazon Lex V2 bot.
1958
+ #
1959
+ # @option params [required, String] :instance_id
1960
+ # The identifier of the Amazon Connect instance. You can find the
1961
+ # instanceId in the ARN of the instance.
1962
+ #
1963
+ # @option params [Types::LexBot] :lex_bot
1964
+ # Configuration information of an Amazon Lex bot.
1965
+ #
1966
+ # @option params [Types::LexV2Bot] :lex_v2_bot
1967
+ # The Amazon Lex V2 bot to disassociate from the instance.
1968
+ #
1969
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1970
+ #
1971
+ # @example Request syntax with placeholder values
1972
+ #
1973
+ # resp = client.disassociate_bot({
1974
+ # instance_id: "InstanceId", # required
1975
+ # lex_bot: {
1976
+ # name: "BotName",
1977
+ # lex_region: "LexRegion",
1978
+ # },
1979
+ # lex_v2_bot: {
1980
+ # alias_arn: "AliasArn",
1981
+ # },
1982
+ # })
1983
+ #
1984
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateBot AWS API Documentation
1985
+ #
1986
+ # @overload disassociate_bot(params = {})
1987
+ # @param [Hash] params ({})
1988
+ def disassociate_bot(params = {}, options = {})
1989
+ req = build_request(:disassociate_bot, params)
1990
+ req.send_request(options)
1991
+ end
1992
+
1891
1993
  # This API is in preview release for Amazon Connect and is subject to
1892
1994
  # change.
1893
1995
  #
@@ -1895,7 +1997,8 @@ module Aws::Connect
1895
1997
  # type and association ID.
1896
1998
  #
1897
1999
  # @option params [required, String] :instance_id
1898
- # The identifier of the Amazon Connect instance.
2000
+ # The identifier of the Amazon Connect instance. You can find the
2001
+ # instanceId in the ARN of the instance.
1899
2002
  #
1900
2003
  # @option params [required, String] :association_id
1901
2004
  # The existing association identifier that uniquely identifies the
@@ -1930,7 +2033,8 @@ module Aws::Connect
1930
2033
  # relevant contact flow blocks.
1931
2034
  #
1932
2035
  # @option params [required, String] :instance_id
1933
- # The identifier of the Amazon Connect instance..
2036
+ # The identifier of the Amazon Connect instance. You can find the
2037
+ # instanceId in the ARN of the instance..
1934
2038
  #
1935
2039
  # @option params [required, String] :function_arn
1936
2040
  # The Amazon Resource Name (ARN) of the Lambda function being
@@ -1961,7 +2065,8 @@ module Aws::Connect
1961
2065
  # specified Amazon Lex bot.
1962
2066
  #
1963
2067
  # @option params [required, String] :instance_id
1964
- # The identifier of the Amazon Connect instance.
2068
+ # The identifier of the Amazon Connect instance. You can find the
2069
+ # instanceId in the ARN of the instance.
1965
2070
  #
1966
2071
  # @option params [required, String] :bot_name
1967
2072
  # The name of the Amazon Lex bot. Maximum character limit of 50.
@@ -1994,7 +2099,8 @@ module Aws::Connect
1994
2099
  # Disassociates a set of quick connects from a queue.
1995
2100
  #
1996
2101
  # @option params [required, String] :instance_id
1997
- # The identifier of the Amazon Connect instance.
2102
+ # The identifier of the Amazon Connect instance. You can find the
2103
+ # instanceId in the ARN of the instance.
1998
2104
  #
1999
2105
  # @option params [required, String] :queue_id
2000
2106
  # The identifier for the queue.
@@ -2024,7 +2130,8 @@ module Aws::Connect
2024
2130
  # Disassociates a set of queues from a routing profile.
2025
2131
  #
2026
2132
  # @option params [required, String] :instance_id
2027
- # The identifier of the Amazon Connect instance.
2133
+ # The identifier of the Amazon Connect instance. You can find the
2134
+ # instanceId in the ARN of the instance.
2028
2135
  #
2029
2136
  # @option params [required, String] :routing_profile_id
2030
2137
  # The identifier of the routing profile.
@@ -2062,7 +2169,8 @@ module Aws::Connect
2062
2169
  # Deletes the specified security key.
2063
2170
  #
2064
2171
  # @option params [required, String] :instance_id
2065
- # The identifier of the Amazon Connect instance.
2172
+ # The identifier of the Amazon Connect instance. You can find the
2173
+ # instanceId in the ARN of the instance.
2066
2174
  #
2067
2175
  # @option params [required, String] :association_id
2068
2176
  # The existing association identifier that uniquely identifies the
@@ -2130,7 +2238,8 @@ module Aws::Connect
2130
2238
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html
2131
2239
  #
2132
2240
  # @option params [required, String] :instance_id
2133
- # The identifier of the Amazon Connect instance.
2241
+ # The identifier of the Amazon Connect instance. You can find the
2242
+ # instanceId in the ARN of the instance.
2134
2243
  #
2135
2244
  # @option params [required, Types::Filters] :filters
2136
2245
  # The queues, up to 100, or channels, to use to filter the metrics
@@ -2330,7 +2439,8 @@ module Aws::Connect
2330
2439
  # </note>
2331
2440
  #
2332
2441
  # @option params [required, String] :instance_id
2333
- # The identifier of the Amazon Connect instance.
2442
+ # The identifier of the Amazon Connect instance. You can find the
2443
+ # instanceId in the ARN of the instance.
2334
2444
  #
2335
2445
  # @return [Types::GetFederationTokenResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2336
2446
  #
@@ -2369,7 +2479,8 @@ module Aws::Connect
2369
2479
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
2370
2480
  #
2371
2481
  # @option params [required, String] :instance_id
2372
- # The identifier of the Amazon Connect instance.
2482
+ # The identifier of the Amazon Connect instance. You can find the
2483
+ # instanceId in the ARN of the instance.
2373
2484
  #
2374
2485
  # @option params [required, Time,DateTime,Date,Integer,String] :start_time
2375
2486
  # The timestamp, in UNIX Epoch time format, at which to start the
@@ -2416,6 +2527,11 @@ module Aws::Connect
2416
2527
  # description of each metric, see [Historical Metrics Definitions][1] in
2417
2528
  # the *Amazon Connect Administrator Guide*.
2418
2529
  #
2530
+ # <note markdown="1"> This API does not support a contacts incoming metric (there's no
2531
+ # CONTACTS\_INCOMING metric missing from the documented list).
2532
+ #
2533
+ # </note>
2534
+ #
2419
2535
  # ABANDON\_TIME
2420
2536
  #
2421
2537
  # : Unit: SECONDS
@@ -2648,7 +2764,8 @@ module Aws::Connect
2648
2764
  # instance.
2649
2765
  #
2650
2766
  # @option params [required, String] :instance_id
2651
- # The identifier of the Amazon Connect instance.
2767
+ # The identifier of the Amazon Connect instance. You can find the
2768
+ # instanceId in the ARN of the instance.
2652
2769
  #
2653
2770
  # @option params [String] :next_token
2654
2771
  # The token for the next set of results. Use the value returned in the
@@ -2688,6 +2805,60 @@ module Aws::Connect
2688
2805
  req.send_request(options)
2689
2806
  end
2690
2807
 
2808
+ # This API is in preview release for Amazon Connect and is subject to
2809
+ # change.
2810
+ #
2811
+ # For the specified version of Amazon Lex, returns a paginated list of
2812
+ # all the Amazon Lex bots currently associated with the instance.
2813
+ #
2814
+ # @option params [required, String] :instance_id
2815
+ # The identifier of the Amazon Connect instance. You can find the
2816
+ # instanceId in the ARN of the instance.
2817
+ #
2818
+ # @option params [String] :next_token
2819
+ # The token for the next set of results. Use the value returned in the
2820
+ # previous response in the next request to retrieve the next set of
2821
+ # results.
2822
+ #
2823
+ # @option params [Integer] :max_results
2824
+ # The maximum number of results to return per page.
2825
+ #
2826
+ # @option params [required, String] :lex_version
2827
+ # The version of Amazon Lex or Amazon Lex V2.
2828
+ #
2829
+ # @return [Types::ListBotsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2830
+ #
2831
+ # * {Types::ListBotsResponse#lex_bots #lex_bots} => Array&lt;Types::LexBotConfig&gt;
2832
+ # * {Types::ListBotsResponse#next_token #next_token} => String
2833
+ #
2834
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2835
+ #
2836
+ # @example Request syntax with placeholder values
2837
+ #
2838
+ # resp = client.list_bots({
2839
+ # instance_id: "InstanceId", # required
2840
+ # next_token: "NextToken",
2841
+ # max_results: 1,
2842
+ # lex_version: "V1", # required, accepts V1, V2
2843
+ # })
2844
+ #
2845
+ # @example Response structure
2846
+ #
2847
+ # resp.lex_bots #=> Array
2848
+ # resp.lex_bots[0].lex_bot.name #=> String
2849
+ # resp.lex_bots[0].lex_bot.lex_region #=> String
2850
+ # resp.lex_bots[0].lex_v2_bot.alias_arn #=> String
2851
+ # resp.next_token #=> String
2852
+ #
2853
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListBots AWS API Documentation
2854
+ #
2855
+ # @overload list_bots(params = {})
2856
+ # @param [Hash] params ({})
2857
+ def list_bots(params = {}, options = {})
2858
+ req = build_request(:list_bots, params)
2859
+ req.send_request(options)
2860
+ end
2861
+
2691
2862
  # Provides information about the contact flows for the specified Amazon
2692
2863
  # Connect instance.
2693
2864
  #
@@ -2703,7 +2874,8 @@ module Aws::Connect
2703
2874
  # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/concepts-contact-flows.html
2704
2875
  #
2705
2876
  # @option params [required, String] :instance_id
2706
- # The identifier of the Amazon Connect instance.
2877
+ # The identifier of the Amazon Connect instance. You can find the
2878
+ # instanceId in the ARN of the instance.
2707
2879
  #
2708
2880
  # @option params [Array<String>] :contact_flow_types
2709
2881
  # The type of contact flow.
@@ -2761,7 +2933,8 @@ module Aws::Connect
2761
2933
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/set-hours-operation.html
2762
2934
  #
2763
2935
  # @option params [required, String] :instance_id
2764
- # The identifier of the Amazon Connect instance.
2936
+ # The identifier of the Amazon Connect instance. You can find the
2937
+ # instanceId in the ARN of the instance.
2765
2938
  #
2766
2939
  # @option params [String] :next_token
2767
2940
  # The token for the next set of results. Use the value returned in the
@@ -2810,7 +2983,8 @@ module Aws::Connect
2810
2983
  # instance.
2811
2984
  #
2812
2985
  # @option params [required, String] :instance_id
2813
- # The identifier of the Amazon Connect instance.
2986
+ # The identifier of the Amazon Connect instance. You can find the
2987
+ # instanceId in the ARN of the instance.
2814
2988
  #
2815
2989
  # @option params [String] :next_token
2816
2990
  # The token for the next set of results. Use the value returned in the
@@ -2858,7 +3032,8 @@ module Aws::Connect
2858
3032
  # instance and resource type.
2859
3033
  #
2860
3034
  # @option params [required, String] :instance_id
2861
- # The identifier of the Amazon Connect instance.
3035
+ # The identifier of the Amazon Connect instance. You can find the
3036
+ # instanceId in the ARN of the instance.
2862
3037
  #
2863
3038
  # @option params [required, String] :resource_type
2864
3039
  # A valid resource type.
@@ -2970,7 +3145,8 @@ module Aws::Connect
2970
3145
  # the specified Amazon Connect instance.
2971
3146
  #
2972
3147
  # @option params [required, String] :instance_id
2973
- # The identifier of the Amazon Connect instance.
3148
+ # The identifier of the Amazon Connect instance. You can find the
3149
+ # instanceId in the ARN of the instance.
2974
3150
  #
2975
3151
  # @option params [String] :next_token
2976
3152
  # The token for the next set of results. Use the value returned in the
@@ -3024,7 +3200,8 @@ module Aws::Connect
3024
3200
  # dropdown options in the relevant contact flow blocks.
3025
3201
  #
3026
3202
  # @option params [required, String] :instance_id
3027
- # The identifier of the Amazon Connect instance.
3203
+ # The identifier of the Amazon Connect instance. You can find the
3204
+ # instanceId in the ARN of the instance.
3028
3205
  #
3029
3206
  # @option params [String] :next_token
3030
3207
  # The token for the next set of results. Use the value returned in the
@@ -3071,7 +3248,8 @@ module Aws::Connect
3071
3248
  # associated with the instance.
3072
3249
  #
3073
3250
  # @option params [required, String] :instance_id
3074
- # The identifier of the Amazon Connect instance.
3251
+ # The identifier of the Amazon Connect instance. You can find the
3252
+ # instanceId in the ARN of the instance.
3075
3253
  #
3076
3254
  # @option params [String] :next_token
3077
3255
  # The token for the next set of results. Use the value returned in the
@@ -3124,7 +3302,8 @@ module Aws::Connect
3124
3302
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-center-phone-number.html
3125
3303
  #
3126
3304
  # @option params [required, String] :instance_id
3127
- # The identifier of the Amazon Connect instance.
3305
+ # The identifier of the Amazon Connect instance. You can find the
3306
+ # instanceId in the ARN of the instance.
3128
3307
  #
3129
3308
  # @option params [Array<String>] :phone_number_types
3130
3309
  # The type of phone number.
@@ -3228,7 +3407,8 @@ module Aws::Connect
3228
3407
  # Lists the quick connects associated with a queue.
3229
3408
  #
3230
3409
  # @option params [required, String] :instance_id
3231
- # The identifier of the Amazon Connect instance.
3410
+ # The identifier of the Amazon Connect instance. You can find the
3411
+ # instanceId in the ARN of the instance.
3232
3412
  #
3233
3413
  # @option params [required, String] :queue_id
3234
3414
  # The identifier for the queue.
@@ -3291,7 +3471,8 @@ module Aws::Connect
3291
3471
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/concepts-queues-standard-and-agent.html
3292
3472
  #
3293
3473
  # @option params [required, String] :instance_id
3294
- # The identifier of the Amazon Connect instance.
3474
+ # The identifier of the Amazon Connect instance. You can find the
3475
+ # instanceId in the ARN of the instance.
3295
3476
  #
3296
3477
  # @option params [Array<String>] :queue_types
3297
3478
  # The type of queue.
@@ -3338,14 +3519,12 @@ module Aws::Connect
3338
3519
  req.send_request(options)
3339
3520
  end
3340
3521
 
3341
- # This API is in preview release for Amazon Connect and is subject to
3342
- # change.
3343
- #
3344
3522
  # Provides information about the quick connects for the specified Amazon
3345
3523
  # Connect instance.
3346
3524
  #
3347
3525
  # @option params [required, String] :instance_id
3348
- # The identifier of the Amazon Connect instance.
3526
+ # The identifier of the Amazon Connect instance. You can find the
3527
+ # instanceId in the ARN of the instance.
3349
3528
  #
3350
3529
  # @option params [String] :next_token
3351
3530
  # The token for the next set of results. Use the value returned in the
@@ -3398,7 +3577,8 @@ module Aws::Connect
3398
3577
  # Lists the queues associated with a routing profile.
3399
3578
  #
3400
3579
  # @option params [required, String] :instance_id
3401
- # The identifier of the Amazon Connect instance.
3580
+ # The identifier of the Amazon Connect instance. You can find the
3581
+ # instanceId in the ARN of the instance.
3402
3582
  #
3403
3583
  # @option params [required, String] :routing_profile_id
3404
3584
  # The identifier of the routing profile.
@@ -3460,7 +3640,8 @@ module Aws::Connect
3460
3640
  # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/routing-profiles.html
3461
3641
  #
3462
3642
  # @option params [required, String] :instance_id
3463
- # The identifier of the Amazon Connect instance.
3643
+ # The identifier of the Amazon Connect instance. You can find the
3644
+ # instanceId in the ARN of the instance.
3464
3645
  #
3465
3646
  # @option params [String] :next_token
3466
3647
  # The token for the next set of results. Use the value returned in the
@@ -3509,7 +3690,8 @@ module Aws::Connect
3509
3690
  # instance.
3510
3691
  #
3511
3692
  # @option params [required, String] :instance_id
3512
- # The identifier of the Amazon Connect instance.
3693
+ # The identifier of the Amazon Connect instance. You can find the
3694
+ # instanceId in the ARN of the instance.
3513
3695
  #
3514
3696
  # @option params [String] :next_token
3515
3697
  # The token for the next set of results. Use the value returned in the
@@ -3562,7 +3744,8 @@ module Aws::Connect
3562
3744
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/connect-security-profiles.html
3563
3745
  #
3564
3746
  # @option params [required, String] :instance_id
3565
- # The identifier of the Amazon Connect instance.
3747
+ # The identifier of the Amazon Connect instance. You can find the
3748
+ # instanceId in the ARN of the instance.
3566
3749
  #
3567
3750
  # @option params [String] :next_token
3568
3751
  # The token for the next set of results. Use the value returned in the
@@ -3643,7 +3826,8 @@ module Aws::Connect
3643
3826
  # Lists the use cases.
3644
3827
  #
3645
3828
  # @option params [required, String] :instance_id
3646
- # The identifier of the Amazon Connect instance.
3829
+ # The identifier of the Amazon Connect instance. You can find the
3830
+ # instanceId in the ARN of the instance.
3647
3831
  #
3648
3832
  # @option params [required, String] :integration_association_id
3649
3833
  # The identifier for the integration association.
@@ -3700,7 +3884,8 @@ module Aws::Connect
3700
3884
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/agent-hierarchy.html
3701
3885
  #
3702
3886
  # @option params [required, String] :instance_id
3703
- # The identifier of the Amazon Connect instance.
3887
+ # The identifier of the Amazon Connect instance. You can find the
3888
+ # instanceId in the ARN of the instance.
3704
3889
  #
3705
3890
  # @option params [String] :next_token
3706
3891
  # The token for the next set of results. Use the value returned in the
@@ -3746,7 +3931,8 @@ module Aws::Connect
3746
3931
  # Connect instance.
3747
3932
  #
3748
3933
  # @option params [required, String] :instance_id
3749
- # The identifier of the Amazon Connect instance.
3934
+ # The identifier of the Amazon Connect instance. You can find the
3935
+ # instanceId in the ARN of the instance.
3750
3936
  #
3751
3937
  # @option params [String] :next_token
3752
3938
  # The token for the next set of results. Use the value returned in the
@@ -3794,7 +3980,8 @@ module Aws::Connect
3794
3980
  # Only voice recordings are supported at this time.
3795
3981
  #
3796
3982
  # @option params [required, String] :instance_id
3797
- # The identifier of the Amazon Connect instance.
3983
+ # The identifier of the Amazon Connect instance. You can find the
3984
+ # instanceId in the ARN of the instance.
3798
3985
  #
3799
3986
  # @option params [required, String] :contact_id
3800
3987
  # The identifier of the contact.
@@ -3851,7 +4038,8 @@ module Aws::Connect
3851
4038
  # [3]: https://docs.aws.amazon.com/connect/latest/adminguide/chat.html
3852
4039
  #
3853
4040
  # @option params [required, String] :instance_id
3854
- # The identifier of the Amazon Connect instance.
4041
+ # The identifier of the Amazon Connect instance. You can find the
4042
+ # instanceId in the ARN of the instance.
3855
4043
  #
3856
4044
  # @option params [required, String] :contact_flow_id
3857
4045
  # The identifier of the contact flow for initiating the chat. To see the
@@ -3942,7 +4130,8 @@ module Aws::Connect
3942
4130
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/set-recording-behavior.html
3943
4131
  #
3944
4132
  # @option params [required, String] :instance_id
3945
- # The identifier of the Amazon Connect instance.
4133
+ # The identifier of the Amazon Connect instance. You can find the
4134
+ # instanceId in the ARN of the instance.
3946
4135
  #
3947
4136
  # @option params [required, String] :contact_id
3948
4137
  # The identifier of the contact.
@@ -4013,13 +4202,13 @@ module Aws::Connect
4013
4202
  # arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/**846ec553-a005-41c0-8341-xxxxxxxxxxxx**
4014
4203
  #
4015
4204
  # @option params [required, String] :instance_id
4016
- # The identifier of the Amazon Connect instance.
4205
+ # The identifier of the Amazon Connect instance. You can find the
4206
+ # instanceId in the ARN of the instance.
4017
4207
  #
4018
4208
  # @option params [String] :client_token
4019
4209
  # A unique, case-sensitive identifier that you provide to ensure the
4020
4210
  # idempotency of the request. The token is valid for 7 days after
4021
4211
  # creation. If a contact is already started, the contact ID is returned.
4022
- # If the contact is disconnected, a new contact is started.
4023
4212
  #
4024
4213
  # **A suitable default value is auto-generated.** You should normally
4025
4214
  # not need to pass this option.**
@@ -4078,7 +4267,8 @@ module Aws::Connect
4078
4267
  # Initiates a contact flow to start a new task.
4079
4268
  #
4080
4269
  # @option params [required, String] :instance_id
4081
- # The identifier of the Amazon Connect instance.
4270
+ # The identifier of the Amazon Connect instance. You can find the
4271
+ # instanceId in the ARN of the instance.
4082
4272
  #
4083
4273
  # @option params [String] :previous_contact_id
4084
4274
  # The identifier of the previous chat, voice, or task contact.
@@ -4164,7 +4354,8 @@ module Aws::Connect
4164
4354
  # The ID of the contact.
4165
4355
  #
4166
4356
  # @option params [required, String] :instance_id
4167
- # The identifier of the Amazon Connect instance.
4357
+ # The identifier of the Amazon Connect instance. You can find the
4358
+ # instanceId in the ARN of the instance.
4168
4359
  #
4169
4360
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4170
4361
  #
@@ -4195,7 +4386,8 @@ module Aws::Connect
4195
4386
  # Only voice recordings are supported at this time.
4196
4387
  #
4197
4388
  # @option params [required, String] :instance_id
4198
- # The identifier of the Amazon Connect instance.
4389
+ # The identifier of the Amazon Connect instance. You can find the
4390
+ # instanceId in the ARN of the instance.
4199
4391
  #
4200
4392
  # @option params [required, String] :contact_id
4201
4393
  # The identifier of the contact.
@@ -4234,7 +4426,8 @@ module Aws::Connect
4234
4426
  # Only voice recordings are supported at this time.
4235
4427
  #
4236
4428
  # @option params [required, String] :instance_id
4237
- # The identifier of the Amazon Connect instance.
4429
+ # The identifier of the Amazon Connect instance. You can find the
4430
+ # instanceId in the ARN of the instance.
4238
4431
  #
4239
4432
  # @option params [required, String] :contact_id
4240
4433
  # The identifier of the contact.
@@ -4363,7 +4556,8 @@ module Aws::Connect
4363
4556
  # associated with the first interaction with the contact center.
4364
4557
  #
4365
4558
  # @option params [required, String] :instance_id
4366
- # The identifier of the Amazon Connect instance.
4559
+ # The identifier of the Amazon Connect instance. You can find the
4560
+ # instanceId in the ARN of the instance.
4367
4561
  #
4368
4562
  # @option params [required, Hash<String,String>] :attributes
4369
4563
  # The Amazon Connect attributes. These attributes can be accessed in
@@ -4484,7 +4678,8 @@ module Aws::Connect
4484
4678
  # Updates the value for the specified attribute type.
4485
4679
  #
4486
4680
  # @option params [required, String] :instance_id
4487
- # The identifier of the Amazon Connect instance.
4681
+ # The identifier of the Amazon Connect instance. You can find the
4682
+ # instanceId in the ARN of the instance.
4488
4683
  #
4489
4684
  # @option params [required, String] :attribute_type
4490
4685
  # The type of attribute.
@@ -4518,7 +4713,8 @@ module Aws::Connect
4518
4713
  # idempotent.
4519
4714
  #
4520
4715
  # @option params [required, String] :instance_id
4521
- # The identifier of the Amazon Connect instance.
4716
+ # The identifier of the Amazon Connect instance. You can find the
4717
+ # instanceId in the ARN of the instance.
4522
4718
  #
4523
4719
  # @option params [required, String] :association_id
4524
4720
  # The existing association identifier that uniquely identifies the
@@ -4581,7 +4777,8 @@ module Aws::Connect
4581
4777
  # Updates the hours of operation for the specified queue.
4582
4778
  #
4583
4779
  # @option params [required, String] :instance_id
4584
- # The identifier of the Amazon Connect instance.
4780
+ # The identifier of the Amazon Connect instance. You can find the
4781
+ # instanceId in the ARN of the instance.
4585
4782
  #
4586
4783
  # @option params [required, String] :queue_id
4587
4784
  # The identifier for the queue.
@@ -4615,7 +4812,8 @@ module Aws::Connect
4615
4812
  # considered full.
4616
4813
  #
4617
4814
  # @option params [required, String] :instance_id
4618
- # The identifier of the Amazon Connect instance.
4815
+ # The identifier of the Amazon Connect instance. You can find the
4816
+ # instanceId in the ARN of the instance.
4619
4817
  #
4620
4818
  # @option params [required, String] :queue_id
4621
4819
  # The identifier for the queue.
@@ -4650,7 +4848,8 @@ module Aws::Connect
4650
4848
  # `Description` must be provided.
4651
4849
  #
4652
4850
  # @option params [required, String] :instance_id
4653
- # The identifier of the Amazon Connect instance.
4851
+ # The identifier of the Amazon Connect instance. You can find the
4852
+ # instanceId in the ARN of the instance.
4654
4853
  #
4655
4854
  # @option params [required, String] :queue_id
4656
4855
  # The identifier for the queue.
@@ -4688,7 +4887,8 @@ module Aws::Connect
4688
4887
  # for a specified queue.
4689
4888
  #
4690
4889
  # @option params [required, String] :instance_id
4691
- # The identifier of the Amazon Connect instance.
4890
+ # The identifier of the Amazon Connect instance. You can find the
4891
+ # instanceId in the ARN of the instance.
4692
4892
  #
4693
4893
  # @option params [required, String] :queue_id
4694
4894
  # The identifier for the queue.
@@ -4725,7 +4925,8 @@ module Aws::Connect
4725
4925
  # Updates the status of the queue.
4726
4926
  #
4727
4927
  # @option params [required, String] :instance_id
4728
- # The identifier of the Amazon Connect instance.
4928
+ # The identifier of the Amazon Connect instance. You can find the
4929
+ # instanceId in the ARN of the instance.
4729
4930
  #
4730
4931
  # @option params [required, String] :queue_id
4731
4932
  # The identifier for the queue.
@@ -4752,13 +4953,11 @@ module Aws::Connect
4752
4953
  req.send_request(options)
4753
4954
  end
4754
4955
 
4755
- # This API is in preview release for Amazon Connect and is subject to
4756
- # change.
4757
- #
4758
4956
  # Updates the configuration settings for the specified quick connect.
4759
4957
  #
4760
4958
  # @option params [required, String] :instance_id
4761
- # The identifier of the Amazon Connect instance.
4959
+ # The identifier of the Amazon Connect instance. You can find the
4960
+ # instanceId in the ARN of the instance.
4762
4961
  #
4763
4962
  # @option params [required, String] :quick_connect_id
4764
4963
  # The identifier for the quick connect.
@@ -4798,15 +4997,13 @@ module Aws::Connect
4798
4997
  req.send_request(options)
4799
4998
  end
4800
4999
 
4801
- # This API is in preview release for Amazon Connect and is subject to
4802
- # change.
4803
- #
4804
5000
  # Updates the name and description of a quick connect. The request
4805
5001
  # accepts the following data in JSON format. At least `Name` or
4806
5002
  # `Description` must be provided.
4807
5003
  #
4808
5004
  # @option params [required, String] :instance_id
4809
- # The identifier of the Amazon Connect instance.
5005
+ # The identifier of the Amazon Connect instance. You can find the
5006
+ # instanceId in the ARN of the instance.
4810
5007
  #
4811
5008
  # @option params [required, String] :quick_connect_id
4812
5009
  # The identifier for the quick connect.
@@ -4825,7 +5022,7 @@ module Aws::Connect
4825
5022
  # instance_id: "InstanceId", # required
4826
5023
  # quick_connect_id: "QuickConnectId", # required
4827
5024
  # name: "QuickConnectName",
4828
- # description: "QuickConnectDescription",
5025
+ # description: "UpdateQuickConnectDescription",
4829
5026
  # })
4830
5027
  #
4831
5028
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQuickConnectName AWS API Documentation
@@ -4841,7 +5038,8 @@ module Aws::Connect
4841
5038
  # Panel (CCP) for a routing profile.
4842
5039
  #
4843
5040
  # @option params [required, String] :instance_id
4844
- # The identifier of the Amazon Connect instance.
5041
+ # The identifier of the Amazon Connect instance. You can find the
5042
+ # instanceId in the ARN of the instance.
4845
5043
  #
4846
5044
  # @option params [required, String] :routing_profile_id
4847
5045
  # The identifier of the routing profile.
@@ -4877,7 +5075,8 @@ module Aws::Connect
4877
5075
  # Updates the default outbound queue of a routing profile.
4878
5076
  #
4879
5077
  # @option params [required, String] :instance_id
4880
- # The identifier of the Amazon Connect instance.
5078
+ # The identifier of the Amazon Connect instance. You can find the
5079
+ # instanceId in the ARN of the instance.
4881
5080
  #
4882
5081
  # @option params [required, String] :routing_profile_id
4883
5082
  # The identifier of the routing profile.
@@ -4909,7 +5108,8 @@ module Aws::Connect
4909
5108
  # `Description` must be provided.
4910
5109
  #
4911
5110
  # @option params [required, String] :instance_id
4912
- # The identifier of the Amazon Connect instance.
5111
+ # The identifier of the Amazon Connect instance. You can find the
5112
+ # instanceId in the ARN of the instance.
4913
5113
  #
4914
5114
  # @option params [required, String] :routing_profile_id
4915
5115
  # The identifier of the routing profile.
@@ -4945,7 +5145,8 @@ module Aws::Connect
4945
5145
  # profile.
4946
5146
  #
4947
5147
  # @option params [required, String] :instance_id
4948
- # The identifier of the Amazon Connect instance.
5148
+ # The identifier of the Amazon Connect instance. You can find the
5149
+ # instanceId in the ARN of the instance.
4949
5150
  #
4950
5151
  # @option params [required, String] :routing_profile_id
4951
5152
  # The identifier of the routing profile.
@@ -4992,7 +5193,8 @@ module Aws::Connect
4992
5193
  # The identifier of the user account.
4993
5194
  #
4994
5195
  # @option params [required, String] :instance_id
4995
- # The identifier of the Amazon Connect instance.
5196
+ # The identifier of the Amazon Connect instance. You can find the
5197
+ # instanceId in the ARN of the instance.
4996
5198
  #
4997
5199
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4998
5200
  #
@@ -5022,7 +5224,8 @@ module Aws::Connect
5022
5224
  # The identifier of the hierarchy group.
5023
5225
  #
5024
5226
  # @option params [required, String] :instance_id
5025
- # The identifier of the Amazon Connect instance.
5227
+ # The identifier of the Amazon Connect instance. You can find the
5228
+ # instanceId in the ARN of the instance.
5026
5229
  #
5027
5230
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5028
5231
  #
@@ -5050,7 +5253,8 @@ module Aws::Connect
5050
5253
  # The hierarchy levels to update.
5051
5254
  #
5052
5255
  # @option params [required, String] :instance_id
5053
- # The identifier of the Amazon Connect instance.
5256
+ # The identifier of the Amazon Connect instance. You can find the
5257
+ # instanceId in the ARN of the instance.
5054
5258
  #
5055
5259
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5056
5260
  #
@@ -5107,7 +5311,8 @@ module Aws::Connect
5107
5311
  # The identifier of the user account.
5108
5312
  #
5109
5313
  # @option params [required, String] :instance_id
5110
- # The identifier of the Amazon Connect instance.
5314
+ # The identifier of the Amazon Connect instance. You can find the
5315
+ # instanceId in the ARN of the instance.
5111
5316
  #
5112
5317
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5113
5318
  #
@@ -5141,7 +5346,8 @@ module Aws::Connect
5141
5346
  # The identifier of the user account.
5142
5347
  #
5143
5348
  # @option params [required, String] :instance_id
5144
- # The identifier of the Amazon Connect instance.
5349
+ # The identifier of the Amazon Connect instance. You can find the
5350
+ # instanceId in the ARN of the instance.
5145
5351
  #
5146
5352
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5147
5353
  #
@@ -5176,7 +5382,8 @@ module Aws::Connect
5176
5382
  # The identifier of the user account.
5177
5383
  #
5178
5384
  # @option params [required, String] :instance_id
5179
- # The identifier of the Amazon Connect instance.
5385
+ # The identifier of the Amazon Connect instance. You can find the
5386
+ # instanceId in the ARN of the instance.
5180
5387
  #
5181
5388
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5182
5389
  #
@@ -5206,7 +5413,8 @@ module Aws::Connect
5206
5413
  # The identifier of the user account.
5207
5414
  #
5208
5415
  # @option params [required, String] :instance_id
5209
- # The identifier of the Amazon Connect instance.
5416
+ # The identifier of the Amazon Connect instance. You can find the
5417
+ # instanceId in the ARN of the instance.
5210
5418
  #
5211
5419
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5212
5420
  #
@@ -5240,7 +5448,7 @@ module Aws::Connect
5240
5448
  params: params,
5241
5449
  config: config)
5242
5450
  context[:gem_name] = 'aws-sdk-connect'
5243
- context[:gem_version] = '1.44.0'
5451
+ context[:gem_version] = '1.48.0'
5244
5452
  Seahorse::Client::Request.new(handlers, context)
5245
5453
  end
5246
5454