aws-sdk-connect 1.96.0 → 1.97.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +899 -308
- data/lib/aws-sdk-connect/client_api.rb +2 -2
- data/lib/aws-sdk-connect/types.rb +922 -304
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
@@ -374,8 +374,12 @@ module Aws::Connect
|
|
374
374
|
# Associates an approved origin to an Amazon Connect instance.
|
375
375
|
#
|
376
376
|
# @option params [required, String] :instance_id
|
377
|
-
# The identifier of the Amazon Connect instance. You can find the
|
378
|
-
#
|
377
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
378
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
379
|
+
#
|
380
|
+
#
|
381
|
+
#
|
382
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
379
383
|
#
|
380
384
|
# @option params [required, String] :origin
|
381
385
|
# The domain to add to your allow list.
|
@@ -405,8 +409,12 @@ module Aws::Connect
|
|
405
409
|
# Amazon Lex or Amazon Lex V2 bot.
|
406
410
|
#
|
407
411
|
# @option params [required, String] :instance_id
|
408
|
-
# The identifier of the Amazon Connect instance. You can find the
|
409
|
-
#
|
412
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
413
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
414
|
+
#
|
415
|
+
#
|
416
|
+
#
|
417
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
410
418
|
#
|
411
419
|
# @option params [Types::LexBot] :lex_bot
|
412
420
|
# Configuration information of an Amazon Lex bot.
|
@@ -421,8 +429,8 @@ module Aws::Connect
|
|
421
429
|
# resp = client.associate_bot({
|
422
430
|
# instance_id: "InstanceId", # required
|
423
431
|
# lex_bot: {
|
424
|
-
# name: "BotName",
|
425
|
-
# lex_region: "LexRegion",
|
432
|
+
# name: "BotName", # required
|
433
|
+
# lex_region: "LexRegion", # required
|
426
434
|
# },
|
427
435
|
# lex_v2_bot: {
|
428
436
|
# alias_arn: "AliasArn",
|
@@ -443,8 +451,12 @@ module Aws::Connect
|
|
443
451
|
# sessions for the given language.
|
444
452
|
#
|
445
453
|
# @option params [required, String] :instance_id
|
446
|
-
# The identifier of the Amazon Connect instance. You can find the
|
447
|
-
#
|
454
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
455
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
456
|
+
#
|
457
|
+
#
|
458
|
+
#
|
459
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
448
460
|
#
|
449
461
|
# @option params [required, String] :language_code
|
450
462
|
# The language code of the vocabulary entries. For a list of languages
|
@@ -492,8 +504,12 @@ module Aws::Connect
|
|
492
504
|
# being used for association.
|
493
505
|
#
|
494
506
|
# @option params [required, String] :instance_id
|
495
|
-
# The identifier of the Amazon Connect instance. You can find the
|
496
|
-
#
|
507
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
508
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
509
|
+
#
|
510
|
+
#
|
511
|
+
#
|
512
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
497
513
|
#
|
498
514
|
# @option params [required, String] :resource_type
|
499
515
|
# A valid resource type.
|
@@ -509,7 +525,7 @@ module Aws::Connect
|
|
509
525
|
#
|
510
526
|
# resp = client.associate_instance_storage_config({
|
511
527
|
# instance_id: "InstanceId", # required
|
512
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
528
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS
|
513
529
|
# storage_config: { # required
|
514
530
|
# association_id: "AssociationId",
|
515
531
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
@@ -558,8 +574,12 @@ module Aws::Connect
|
|
558
574
|
# Lambda function.
|
559
575
|
#
|
560
576
|
# @option params [required, String] :instance_id
|
561
|
-
# The identifier of the Amazon Connect instance. You can find the
|
562
|
-
#
|
577
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
578
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
579
|
+
#
|
580
|
+
#
|
581
|
+
#
|
582
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
563
583
|
#
|
564
584
|
# @option params [required, String] :function_arn
|
565
585
|
# The Amazon Resource Name (ARN) for the Lambda function being
|
@@ -591,8 +611,12 @@ module Aws::Connect
|
|
591
611
|
# Lex V1 bots.
|
592
612
|
#
|
593
613
|
# @option params [required, String] :instance_id
|
594
|
-
# The identifier of the Amazon Connect instance. You can find the
|
595
|
-
#
|
614
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
615
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
616
|
+
#
|
617
|
+
#
|
618
|
+
#
|
619
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
596
620
|
#
|
597
621
|
# @option params [required, Types::LexBot] :lex_bot
|
598
622
|
# The Amazon Lex bot to associate with the instance.
|
@@ -604,8 +628,8 @@ module Aws::Connect
|
|
604
628
|
# resp = client.associate_lex_bot({
|
605
629
|
# instance_id: "InstanceId", # required
|
606
630
|
# lex_bot: { # required
|
607
|
-
# name: "BotName",
|
608
|
-
# lex_region: "LexRegion",
|
631
|
+
# name: "BotName", # required
|
632
|
+
# lex_region: "LexRegion", # required
|
609
633
|
# },
|
610
634
|
# })
|
611
635
|
#
|
@@ -636,8 +660,12 @@ module Aws::Connect
|
|
636
660
|
# A unique identifier for the phone number.
|
637
661
|
#
|
638
662
|
# @option params [required, String] :instance_id
|
639
|
-
# The identifier of the Amazon Connect instance. You can find the
|
640
|
-
#
|
663
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
664
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
665
|
+
#
|
666
|
+
#
|
667
|
+
#
|
668
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
641
669
|
#
|
642
670
|
# @option params [required, String] :contact_flow_id
|
643
671
|
# The identifier of the flow.
|
@@ -667,8 +695,12 @@ module Aws::Connect
|
|
667
695
|
# Associates a set of quick connects with a queue.
|
668
696
|
#
|
669
697
|
# @option params [required, String] :instance_id
|
670
|
-
# The identifier of the Amazon Connect instance. You can find the
|
671
|
-
#
|
698
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
699
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
700
|
+
#
|
701
|
+
#
|
702
|
+
#
|
703
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
672
704
|
#
|
673
705
|
# @option params [required, String] :queue_id
|
674
706
|
# The identifier for the queue.
|
@@ -698,8 +730,12 @@ module Aws::Connect
|
|
698
730
|
# Associates a set of queues with a routing profile.
|
699
731
|
#
|
700
732
|
# @option params [required, String] :instance_id
|
701
|
-
# The identifier of the Amazon Connect instance. You can find the
|
702
|
-
#
|
733
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
734
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
735
|
+
#
|
736
|
+
#
|
737
|
+
#
|
738
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
703
739
|
#
|
704
740
|
# @option params [required, String] :routing_profile_id
|
705
741
|
# The identifier of the routing profile.
|
@@ -741,8 +777,12 @@ module Aws::Connect
|
|
741
777
|
# Associates a security key to the instance.
|
742
778
|
#
|
743
779
|
# @option params [required, String] :instance_id
|
744
|
-
# The identifier of the Amazon Connect instance. You can find the
|
745
|
-
#
|
780
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
781
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
782
|
+
#
|
783
|
+
#
|
784
|
+
#
|
785
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
746
786
|
#
|
747
787
|
# @option params [required, String] :key
|
748
788
|
# A valid security key in PEM format.
|
@@ -862,8 +902,12 @@ module Aws::Connect
|
|
862
902
|
# Creates an agent status for the specified Amazon Connect instance.
|
863
903
|
#
|
864
904
|
# @option params [required, String] :instance_id
|
865
|
-
# The identifier of the Amazon Connect instance. You can find the
|
866
|
-
#
|
905
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
906
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
907
|
+
#
|
908
|
+
#
|
909
|
+
#
|
910
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
867
911
|
#
|
868
912
|
# @option params [required, String] :name
|
869
913
|
# The name of the status.
|
@@ -983,8 +1027,12 @@ module Aws::Connect
|
|
983
1027
|
# Creates a flow module for the specified Amazon Connect instance.
|
984
1028
|
#
|
985
1029
|
# @option params [required, String] :instance_id
|
986
|
-
# The identifier of the Amazon Connect instance. You can find the
|
987
|
-
#
|
1030
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
1031
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
1032
|
+
#
|
1033
|
+
#
|
1034
|
+
#
|
1035
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
988
1036
|
#
|
989
1037
|
# @option params [required, String] :name
|
990
1038
|
# The name of the flow module.
|
@@ -1051,8 +1099,12 @@ module Aws::Connect
|
|
1051
1099
|
# Creates hours of operation.
|
1052
1100
|
#
|
1053
1101
|
# @option params [required, String] :instance_id
|
1054
|
-
# The identifier of the Amazon Connect instance. You can find the
|
1055
|
-
#
|
1102
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
1103
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
1104
|
+
#
|
1105
|
+
#
|
1106
|
+
#
|
1107
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
1056
1108
|
#
|
1057
1109
|
# @option params [required, String] :name
|
1058
1110
|
# The name of the hours of operation.
|
@@ -1183,8 +1235,12 @@ module Aws::Connect
|
|
1183
1235
|
# Connect instance.
|
1184
1236
|
#
|
1185
1237
|
# @option params [required, String] :instance_id
|
1186
|
-
# The identifier of the Amazon Connect instance. You can find the
|
1187
|
-
#
|
1238
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
1239
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
1240
|
+
#
|
1241
|
+
#
|
1242
|
+
#
|
1243
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
1188
1244
|
#
|
1189
1245
|
# @option params [required, String] :integration_type
|
1190
1246
|
# The type of information to be ingested.
|
@@ -1269,8 +1325,12 @@ module Aws::Connect
|
|
1269
1325
|
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_OutboundCallerConfig
|
1270
1326
|
#
|
1271
1327
|
# @option params [required, String] :instance_id
|
1272
|
-
# The identifier of the Amazon Connect instance. You can find the
|
1273
|
-
#
|
1328
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
1329
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
1330
|
+
#
|
1331
|
+
#
|
1332
|
+
#
|
1333
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
1274
1334
|
#
|
1275
1335
|
# @option params [required, String] :name
|
1276
1336
|
# The name of the queue.
|
@@ -1337,8 +1397,12 @@ module Aws::Connect
|
|
1337
1397
|
# Creates a quick connect for the specified Amazon Connect instance.
|
1338
1398
|
#
|
1339
1399
|
# @option params [required, String] :instance_id
|
1340
|
-
# The identifier of the Amazon Connect instance. You can find the
|
1341
|
-
#
|
1400
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
1401
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
1402
|
+
#
|
1403
|
+
#
|
1404
|
+
#
|
1405
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
1342
1406
|
#
|
1343
1407
|
# @option params [required, String] :name
|
1344
1408
|
# The name of the quick connect.
|
@@ -1401,8 +1465,12 @@ module Aws::Connect
|
|
1401
1465
|
# Creates a new routing profile.
|
1402
1466
|
#
|
1403
1467
|
# @option params [required, String] :instance_id
|
1404
|
-
# The identifier of the Amazon Connect instance. You can find the
|
1405
|
-
#
|
1468
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
1469
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
1470
|
+
#
|
1471
|
+
#
|
1472
|
+
#
|
1473
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
1406
1474
|
#
|
1407
1475
|
# @option params [required, String] :name
|
1408
1476
|
# The name of the routing profile. Must not be more than 127 characters.
|
@@ -1493,8 +1561,12 @@ module Aws::Connect
|
|
1493
1561
|
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/connect-rules-language.html
|
1494
1562
|
#
|
1495
1563
|
# @option params [required, String] :instance_id
|
1496
|
-
# The identifier of the Amazon Connect instance. You can find the
|
1497
|
-
#
|
1564
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
1565
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
1566
|
+
#
|
1567
|
+
#
|
1568
|
+
#
|
1569
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
1498
1570
|
#
|
1499
1571
|
# @option params [required, String] :name
|
1500
1572
|
# A unique name for the rule.
|
@@ -1610,8 +1682,12 @@ module Aws::Connect
|
|
1610
1682
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html
|
1611
1683
|
#
|
1612
1684
|
# @option params [required, String] :instance_id
|
1613
|
-
# The identifier of the Amazon Connect instance. You can find the
|
1614
|
-
#
|
1685
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
1686
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
1687
|
+
#
|
1688
|
+
#
|
1689
|
+
#
|
1690
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
1615
1691
|
#
|
1616
1692
|
# @option params [Hash<String,String>] :tags
|
1617
1693
|
# The tags used to organize, track, or control access for this resource.
|
@@ -1665,8 +1741,12 @@ module Aws::Connect
|
|
1665
1741
|
# Creates a new task template in the specified Amazon Connect instance.
|
1666
1742
|
#
|
1667
1743
|
# @option params [required, String] :instance_id
|
1668
|
-
# The identifier of the Amazon Connect instance. You can find the
|
1669
|
-
#
|
1744
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
1745
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
1746
|
+
#
|
1747
|
+
#
|
1748
|
+
#
|
1749
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
1670
1750
|
#
|
1671
1751
|
# @option params [required, String] :name
|
1672
1752
|
# The name of the task template.
|
@@ -1853,8 +1933,12 @@ module Aws::Connect
|
|
1853
1933
|
# Creates a use case for an integration association.
|
1854
1934
|
#
|
1855
1935
|
# @option params [required, String] :instance_id
|
1856
|
-
# The identifier of the Amazon Connect instance. You can find the
|
1857
|
-
#
|
1936
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
1937
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
1938
|
+
#
|
1939
|
+
#
|
1940
|
+
#
|
1941
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
1858
1942
|
#
|
1859
1943
|
# @option params [required, String] :integration_association_id
|
1860
1944
|
# The identifier for the integration association.
|
@@ -1948,8 +2032,12 @@ module Aws::Connect
|
|
1948
2032
|
# The identifier of the hierarchy group for the user.
|
1949
2033
|
#
|
1950
2034
|
# @option params [required, String] :instance_id
|
1951
|
-
# The identifier of the Amazon Connect instance. You can find the
|
1952
|
-
#
|
2035
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2036
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2037
|
+
#
|
2038
|
+
#
|
2039
|
+
#
|
2040
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
1953
2041
|
#
|
1954
2042
|
# @option params [Hash<String,String>] :tags
|
1955
2043
|
# The tags used to organize, track, or control access for this resource.
|
@@ -2014,8 +2102,12 @@ module Aws::Connect
|
|
2014
2102
|
# created at level one if the parent group ID is null.
|
2015
2103
|
#
|
2016
2104
|
# @option params [required, String] :instance_id
|
2017
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2018
|
-
#
|
2105
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2106
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2107
|
+
#
|
2108
|
+
#
|
2109
|
+
#
|
2110
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2019
2111
|
#
|
2020
2112
|
# @option params [Hash<String,String>] :tags
|
2021
2113
|
# The tags used to organize, track, or control access for this resource.
|
@@ -2074,8 +2166,12 @@ module Aws::Connect
|
|
2074
2166
|
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
2075
2167
|
#
|
2076
2168
|
# @option params [required, String] :instance_id
|
2077
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2078
|
-
#
|
2169
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2170
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2171
|
+
#
|
2172
|
+
#
|
2173
|
+
#
|
2174
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2079
2175
|
#
|
2080
2176
|
# @option params [required, String] :vocabulary_name
|
2081
2177
|
# A unique name of the custom vocabulary.
|
@@ -2142,8 +2238,12 @@ module Aws::Connect
|
|
2142
2238
|
# Deletes a flow for the specified Amazon Connect instance.
|
2143
2239
|
#
|
2144
2240
|
# @option params [required, String] :instance_id
|
2145
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2146
|
-
#
|
2241
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2242
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2243
|
+
#
|
2244
|
+
#
|
2245
|
+
#
|
2246
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2147
2247
|
#
|
2148
2248
|
# @option params [required, String] :contact_flow_id
|
2149
2249
|
# The identifier of the flow.
|
@@ -2169,8 +2269,12 @@ module Aws::Connect
|
|
2169
2269
|
# Deletes the specified flow module.
|
2170
2270
|
#
|
2171
2271
|
# @option params [required, String] :instance_id
|
2172
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2173
|
-
#
|
2272
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2273
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2274
|
+
#
|
2275
|
+
#
|
2276
|
+
#
|
2277
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2174
2278
|
#
|
2175
2279
|
# @option params [required, String] :contact_flow_module_id
|
2176
2280
|
# The identifier of the flow module.
|
@@ -2199,8 +2303,12 @@ module Aws::Connect
|
|
2199
2303
|
# Deletes an hours of operation.
|
2200
2304
|
#
|
2201
2305
|
# @option params [required, String] :instance_id
|
2202
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2203
|
-
#
|
2306
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2307
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2308
|
+
#
|
2309
|
+
#
|
2310
|
+
#
|
2311
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2204
2312
|
#
|
2205
2313
|
# @option params [required, String] :hours_of_operation_id
|
2206
2314
|
# The identifier for the hours of operation.
|
@@ -2236,8 +2344,12 @@ module Aws::Connect
|
|
2236
2344
|
# account.
|
2237
2345
|
#
|
2238
2346
|
# @option params [required, String] :instance_id
|
2239
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2240
|
-
#
|
2347
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2348
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2349
|
+
#
|
2350
|
+
#
|
2351
|
+
#
|
2352
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2241
2353
|
#
|
2242
2354
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2243
2355
|
#
|
@@ -2261,8 +2373,12 @@ module Aws::Connect
|
|
2261
2373
|
# associated with it.
|
2262
2374
|
#
|
2263
2375
|
# @option params [required, String] :instance_id
|
2264
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2265
|
-
#
|
2376
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2377
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2378
|
+
#
|
2379
|
+
#
|
2380
|
+
#
|
2381
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2266
2382
|
#
|
2267
2383
|
# @option params [required, String] :integration_association_id
|
2268
2384
|
# The identifier for the integration association.
|
@@ -2288,8 +2404,12 @@ module Aws::Connect
|
|
2288
2404
|
# Deletes a quick connect.
|
2289
2405
|
#
|
2290
2406
|
# @option params [required, String] :instance_id
|
2291
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2292
|
-
#
|
2407
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2408
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2409
|
+
#
|
2410
|
+
#
|
2411
|
+
#
|
2412
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2293
2413
|
#
|
2294
2414
|
# @option params [required, String] :quick_connect_id
|
2295
2415
|
# The identifier for the quick connect.
|
@@ -2315,8 +2435,12 @@ module Aws::Connect
|
|
2315
2435
|
# Deletes a rule for the specified Amazon Connect instance.
|
2316
2436
|
#
|
2317
2437
|
# @option params [required, String] :instance_id
|
2318
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2319
|
-
#
|
2438
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2439
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2440
|
+
#
|
2441
|
+
#
|
2442
|
+
#
|
2443
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2320
2444
|
#
|
2321
2445
|
# @option params [required, String] :rule_id
|
2322
2446
|
# A unique identifier for the rule.
|
@@ -2345,8 +2469,12 @@ module Aws::Connect
|
|
2345
2469
|
# Deletes a security profile.
|
2346
2470
|
#
|
2347
2471
|
# @option params [required, String] :instance_id
|
2348
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2349
|
-
#
|
2472
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2473
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2474
|
+
#
|
2475
|
+
#
|
2476
|
+
#
|
2477
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2350
2478
|
#
|
2351
2479
|
# @option params [required, String] :security_profile_id
|
2352
2480
|
# The identifier for the security profle.
|
@@ -2372,8 +2500,12 @@ module Aws::Connect
|
|
2372
2500
|
# Deletes the task template.
|
2373
2501
|
#
|
2374
2502
|
# @option params [required, String] :instance_id
|
2375
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2376
|
-
#
|
2503
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2504
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2505
|
+
#
|
2506
|
+
#
|
2507
|
+
#
|
2508
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2377
2509
|
#
|
2378
2510
|
# @option params [required, String] :task_template_id
|
2379
2511
|
# A unique identifier for the task template.
|
@@ -2433,8 +2565,12 @@ module Aws::Connect
|
|
2433
2565
|
# Deletes a use case from an integration association.
|
2434
2566
|
#
|
2435
2567
|
# @option params [required, String] :instance_id
|
2436
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2437
|
-
#
|
2568
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2569
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2570
|
+
#
|
2571
|
+
#
|
2572
|
+
#
|
2573
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2438
2574
|
#
|
2439
2575
|
# @option params [required, String] :integration_association_id
|
2440
2576
|
# The identifier for the integration association.
|
@@ -2472,8 +2608,12 @@ module Aws::Connect
|
|
2472
2608
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/delete-users.html
|
2473
2609
|
#
|
2474
2610
|
# @option params [required, String] :instance_id
|
2475
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2476
|
-
#
|
2611
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2612
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2613
|
+
#
|
2614
|
+
#
|
2615
|
+
#
|
2616
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2477
2617
|
#
|
2478
2618
|
# @option params [required, String] :user_id
|
2479
2619
|
# The identifier of the user.
|
@@ -2503,8 +2643,12 @@ module Aws::Connect
|
|
2503
2643
|
# The identifier of the hierarchy group.
|
2504
2644
|
#
|
2505
2645
|
# @option params [required, String] :instance_id
|
2506
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2507
|
-
#
|
2646
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2647
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2648
|
+
#
|
2649
|
+
#
|
2650
|
+
#
|
2651
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2508
2652
|
#
|
2509
2653
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2510
2654
|
#
|
@@ -2527,8 +2671,12 @@ module Aws::Connect
|
|
2527
2671
|
# Deletes the vocabulary that has the given identifier.
|
2528
2672
|
#
|
2529
2673
|
# @option params [required, String] :instance_id
|
2530
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2531
|
-
#
|
2674
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2675
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2676
|
+
#
|
2677
|
+
#
|
2678
|
+
#
|
2679
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2532
2680
|
#
|
2533
2681
|
# @option params [required, String] :vocabulary_id
|
2534
2682
|
# The identifier of the custom vocabulary.
|
@@ -2567,8 +2715,12 @@ module Aws::Connect
|
|
2567
2715
|
# Describes an agent status.
|
2568
2716
|
#
|
2569
2717
|
# @option params [required, String] :instance_id
|
2570
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2571
|
-
#
|
2718
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2719
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2720
|
+
#
|
2721
|
+
#
|
2722
|
+
#
|
2723
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2572
2724
|
#
|
2573
2725
|
# @option params [required, String] :agent_status_id
|
2574
2726
|
# The identifier for the agent status.
|
@@ -2616,8 +2768,12 @@ module Aws::Connect
|
|
2616
2768
|
# Only data from November 12, 2021, and later is returned by this API.
|
2617
2769
|
#
|
2618
2770
|
# @option params [required, String] :instance_id
|
2619
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2620
|
-
#
|
2771
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2772
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2773
|
+
#
|
2774
|
+
#
|
2775
|
+
#
|
2776
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2621
2777
|
#
|
2622
2778
|
# @option params [required, String] :contact_id
|
2623
2779
|
# The identifier of the contact.
|
@@ -2713,8 +2869,12 @@ module Aws::Connect
|
|
2713
2869
|
# Describes the specified flow module.
|
2714
2870
|
#
|
2715
2871
|
# @option params [required, String] :instance_id
|
2716
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2717
|
-
#
|
2872
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2873
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2874
|
+
#
|
2875
|
+
#
|
2876
|
+
#
|
2877
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2718
2878
|
#
|
2719
2879
|
# @option params [required, String] :contact_flow_module_id
|
2720
2880
|
# The identifier of the flow module.
|
@@ -2757,8 +2917,12 @@ module Aws::Connect
|
|
2757
2917
|
# Describes the hours of operation.
|
2758
2918
|
#
|
2759
2919
|
# @option params [required, String] :instance_id
|
2760
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2761
|
-
#
|
2920
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2921
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2922
|
+
#
|
2923
|
+
#
|
2924
|
+
#
|
2925
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2762
2926
|
#
|
2763
2927
|
# @option params [required, String] :hours_of_operation_id
|
2764
2928
|
# The identifier for the hours of operation.
|
@@ -2812,8 +2976,12 @@ module Aws::Connect
|
|
2812
2976
|
# invoked.
|
2813
2977
|
#
|
2814
2978
|
# @option params [required, String] :instance_id
|
2815
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2816
|
-
#
|
2979
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2980
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2981
|
+
#
|
2982
|
+
#
|
2983
|
+
#
|
2984
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2817
2985
|
#
|
2818
2986
|
# @return [Types::DescribeInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2819
2987
|
#
|
@@ -2853,8 +3021,12 @@ module Aws::Connect
|
|
2853
3021
|
# Describes the specified instance attribute.
|
2854
3022
|
#
|
2855
3023
|
# @option params [required, String] :instance_id
|
2856
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2857
|
-
#
|
3024
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3025
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3026
|
+
#
|
3027
|
+
#
|
3028
|
+
#
|
3029
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2858
3030
|
#
|
2859
3031
|
# @option params [required, String] :attribute_type
|
2860
3032
|
# The type of attribute.
|
@@ -2891,8 +3063,12 @@ module Aws::Connect
|
|
2891
3063
|
# resource type, association ID, and instance ID.
|
2892
3064
|
#
|
2893
3065
|
# @option params [required, String] :instance_id
|
2894
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2895
|
-
#
|
3066
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3067
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3068
|
+
#
|
3069
|
+
#
|
3070
|
+
#
|
3071
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2896
3072
|
#
|
2897
3073
|
# @option params [required, String] :association_id
|
2898
3074
|
# The existing association identifier that uniquely identifies the
|
@@ -2910,7 +3086,7 @@ module Aws::Connect
|
|
2910
3086
|
# resp = client.describe_instance_storage_config({
|
2911
3087
|
# instance_id: "InstanceId", # required
|
2912
3088
|
# association_id: "AssociationId", # required
|
2913
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
3089
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS
|
2914
3090
|
# })
|
2915
3091
|
#
|
2916
3092
|
# @example Response structure
|
@@ -2992,8 +3168,12 @@ module Aws::Connect
|
|
2992
3168
|
# Describes the specified queue.
|
2993
3169
|
#
|
2994
3170
|
# @option params [required, String] :instance_id
|
2995
|
-
# The identifier of the Amazon Connect instance. You can find the
|
2996
|
-
#
|
3171
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3172
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3173
|
+
#
|
3174
|
+
#
|
3175
|
+
#
|
3176
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2997
3177
|
#
|
2998
3178
|
# @option params [required, String] :queue_id
|
2999
3179
|
# The identifier for the queue.
|
@@ -3036,8 +3216,12 @@ module Aws::Connect
|
|
3036
3216
|
# Describes the quick connect.
|
3037
3217
|
#
|
3038
3218
|
# @option params [required, String] :instance_id
|
3039
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3040
|
-
#
|
3219
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3220
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3221
|
+
#
|
3222
|
+
#
|
3223
|
+
#
|
3224
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3041
3225
|
#
|
3042
3226
|
# @option params [required, String] :quick_connect_id
|
3043
3227
|
# The identifier for the quick connect.
|
@@ -3080,8 +3264,12 @@ module Aws::Connect
|
|
3080
3264
|
# Describes the specified routing profile.
|
3081
3265
|
#
|
3082
3266
|
# @option params [required, String] :instance_id
|
3083
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3084
|
-
#
|
3267
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3268
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3269
|
+
#
|
3270
|
+
#
|
3271
|
+
#
|
3272
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3085
3273
|
#
|
3086
3274
|
# @option params [required, String] :routing_profile_id
|
3087
3275
|
# The identifier of the routing profile.
|
@@ -3125,8 +3313,12 @@ module Aws::Connect
|
|
3125
3313
|
# Describes a rule for the specified Amazon Connect instance.
|
3126
3314
|
#
|
3127
3315
|
# @option params [required, String] :instance_id
|
3128
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3129
|
-
#
|
3316
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3317
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3318
|
+
#
|
3319
|
+
#
|
3320
|
+
#
|
3321
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3130
3322
|
#
|
3131
3323
|
# @option params [required, String] :rule_id
|
3132
3324
|
# A unique identifier for the rule.
|
@@ -3192,8 +3384,12 @@ module Aws::Connect
|
|
3192
3384
|
# The identifier for the security profle.
|
3193
3385
|
#
|
3194
3386
|
# @option params [required, String] :instance_id
|
3195
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3196
|
-
#
|
3387
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3388
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3389
|
+
#
|
3390
|
+
#
|
3391
|
+
#
|
3392
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3197
3393
|
#
|
3198
3394
|
# @return [Types::DescribeSecurityProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3199
3395
|
#
|
@@ -3267,17 +3463,25 @@ module Aws::Connect
|
|
3267
3463
|
req.send_request(options)
|
3268
3464
|
end
|
3269
3465
|
|
3270
|
-
# Describes the specified user account. You can find the instance ID in
|
3271
|
-
# the console (it’s the final part of the ARN). The
|
3272
|
-
# display the user IDs. Instead, list the users and
|
3273
|
-
# provided in the output.
|
3466
|
+
# Describes the specified user account. You can [find the instance ID in
|
3467
|
+
# the Amazon Connect console][1] (it’s the final part of the ARN). The
|
3468
|
+
# console does not display the user IDs. Instead, list the users and
|
3469
|
+
# note the IDs provided in the output.
|
3470
|
+
#
|
3471
|
+
#
|
3472
|
+
#
|
3473
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3274
3474
|
#
|
3275
3475
|
# @option params [required, String] :user_id
|
3276
3476
|
# The identifier of the user account.
|
3277
3477
|
#
|
3278
3478
|
# @option params [required, String] :instance_id
|
3279
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3280
|
-
#
|
3479
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3480
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3481
|
+
#
|
3482
|
+
#
|
3483
|
+
#
|
3484
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3281
3485
|
#
|
3282
3486
|
# @return [Types::DescribeUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3283
3487
|
#
|
@@ -3327,8 +3531,12 @@ module Aws::Connect
|
|
3327
3531
|
# The identifier of the hierarchy group.
|
3328
3532
|
#
|
3329
3533
|
# @option params [required, String] :instance_id
|
3330
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3331
|
-
#
|
3534
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3535
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3536
|
+
#
|
3537
|
+
#
|
3538
|
+
#
|
3539
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3332
3540
|
#
|
3333
3541
|
# @return [Types::DescribeUserHierarchyGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3334
3542
|
#
|
@@ -3378,8 +3586,12 @@ module Aws::Connect
|
|
3378
3586
|
# instance.
|
3379
3587
|
#
|
3380
3588
|
# @option params [required, String] :instance_id
|
3381
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3382
|
-
#
|
3589
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3590
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3591
|
+
#
|
3592
|
+
#
|
3593
|
+
#
|
3594
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3383
3595
|
#
|
3384
3596
|
# @return [Types::DescribeUserHierarchyStructureResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3385
3597
|
#
|
@@ -3421,8 +3633,12 @@ module Aws::Connect
|
|
3421
3633
|
# Describes the specified vocabulary.
|
3422
3634
|
#
|
3423
3635
|
# @option params [required, String] :instance_id
|
3424
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3425
|
-
#
|
3636
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3637
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3638
|
+
#
|
3639
|
+
#
|
3640
|
+
#
|
3641
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3426
3642
|
#
|
3427
3643
|
# @option params [required, String] :vocabulary_id
|
3428
3644
|
# The identifier of the custom vocabulary.
|
@@ -3466,8 +3682,12 @@ module Aws::Connect
|
|
3466
3682
|
# Revokes access to integrated applications from Amazon Connect.
|
3467
3683
|
#
|
3468
3684
|
# @option params [required, String] :instance_id
|
3469
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3470
|
-
#
|
3685
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3686
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3687
|
+
#
|
3688
|
+
#
|
3689
|
+
#
|
3690
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3471
3691
|
#
|
3472
3692
|
# @option params [required, String] :origin
|
3473
3693
|
# The domain URL of the integrated application.
|
@@ -3497,8 +3717,12 @@ module Aws::Connect
|
|
3497
3717
|
# specified Amazon Lex or Amazon Lex V2 bot.
|
3498
3718
|
#
|
3499
3719
|
# @option params [required, String] :instance_id
|
3500
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3501
|
-
#
|
3720
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3721
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3722
|
+
#
|
3723
|
+
#
|
3724
|
+
#
|
3725
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3502
3726
|
#
|
3503
3727
|
# @option params [Types::LexBot] :lex_bot
|
3504
3728
|
# Configuration information of an Amazon Lex bot.
|
@@ -3513,8 +3737,8 @@ module Aws::Connect
|
|
3513
3737
|
# resp = client.disassociate_bot({
|
3514
3738
|
# instance_id: "InstanceId", # required
|
3515
3739
|
# lex_bot: {
|
3516
|
-
# name: "BotName",
|
3517
|
-
# lex_region: "LexRegion",
|
3740
|
+
# name: "BotName", # required
|
3741
|
+
# lex_region: "LexRegion", # required
|
3518
3742
|
# },
|
3519
3743
|
# lex_v2_bot: {
|
3520
3744
|
# alias_arn: "AliasArn",
|
@@ -3537,8 +3761,12 @@ module Aws::Connect
|
|
3537
3761
|
# type and association ID.
|
3538
3762
|
#
|
3539
3763
|
# @option params [required, String] :instance_id
|
3540
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3541
|
-
#
|
3764
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3765
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3766
|
+
#
|
3767
|
+
#
|
3768
|
+
#
|
3769
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3542
3770
|
#
|
3543
3771
|
# @option params [required, String] :association_id
|
3544
3772
|
# The existing association identifier that uniquely identifies the
|
@@ -3554,7 +3782,7 @@ module Aws::Connect
|
|
3554
3782
|
# resp = client.disassociate_instance_storage_config({
|
3555
3783
|
# instance_id: "InstanceId", # required
|
3556
3784
|
# association_id: "AssociationId", # required
|
3557
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
3785
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS
|
3558
3786
|
# })
|
3559
3787
|
#
|
3560
3788
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateInstanceStorageConfig AWS API Documentation
|
@@ -3573,8 +3801,12 @@ module Aws::Connect
|
|
3573
3801
|
# relevant flow blocks.
|
3574
3802
|
#
|
3575
3803
|
# @option params [required, String] :instance_id
|
3576
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3577
|
-
#
|
3804
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3805
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance..
|
3806
|
+
#
|
3807
|
+
#
|
3808
|
+
#
|
3809
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3578
3810
|
#
|
3579
3811
|
# @option params [required, String] :function_arn
|
3580
3812
|
# The Amazon Resource Name (ARN) of the Lambda function being
|
@@ -3605,8 +3837,12 @@ module Aws::Connect
|
|
3605
3837
|
# specified Amazon Lex bot.
|
3606
3838
|
#
|
3607
3839
|
# @option params [required, String] :instance_id
|
3608
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3609
|
-
#
|
3840
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3841
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3842
|
+
#
|
3843
|
+
#
|
3844
|
+
#
|
3845
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3610
3846
|
#
|
3611
3847
|
# @option params [required, String] :bot_name
|
3612
3848
|
# The name of the Amazon Lex bot. Maximum character limit of 50.
|
@@ -3652,8 +3888,12 @@ module Aws::Connect
|
|
3652
3888
|
# A unique identifier for the phone number.
|
3653
3889
|
#
|
3654
3890
|
# @option params [required, String] :instance_id
|
3655
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3656
|
-
#
|
3891
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3892
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3893
|
+
#
|
3894
|
+
#
|
3895
|
+
#
|
3896
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3657
3897
|
#
|
3658
3898
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3659
3899
|
#
|
@@ -3679,8 +3919,12 @@ module Aws::Connect
|
|
3679
3919
|
# Disassociates a set of quick connects from a queue.
|
3680
3920
|
#
|
3681
3921
|
# @option params [required, String] :instance_id
|
3682
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3683
|
-
#
|
3922
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3923
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3924
|
+
#
|
3925
|
+
#
|
3926
|
+
#
|
3927
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3684
3928
|
#
|
3685
3929
|
# @option params [required, String] :queue_id
|
3686
3930
|
# The identifier for the queue.
|
@@ -3710,8 +3954,12 @@ module Aws::Connect
|
|
3710
3954
|
# Disassociates a set of queues from a routing profile.
|
3711
3955
|
#
|
3712
3956
|
# @option params [required, String] :instance_id
|
3713
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3714
|
-
#
|
3957
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3958
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3959
|
+
#
|
3960
|
+
#
|
3961
|
+
#
|
3962
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3715
3963
|
#
|
3716
3964
|
# @option params [required, String] :routing_profile_id
|
3717
3965
|
# The identifier of the routing profile.
|
@@ -3749,8 +3997,12 @@ module Aws::Connect
|
|
3749
3997
|
# Deletes the specified security key.
|
3750
3998
|
#
|
3751
3999
|
# @option params [required, String] :instance_id
|
3752
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3753
|
-
#
|
4000
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4001
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4002
|
+
#
|
4003
|
+
#
|
4004
|
+
#
|
4005
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3754
4006
|
#
|
3755
4007
|
# @option params [required, String] :association_id
|
3756
4008
|
# The existing association identifier that uniquely identifies the
|
@@ -3856,8 +4108,12 @@ module Aws::Connect
|
|
3856
4108
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html
|
3857
4109
|
#
|
3858
4110
|
# @option params [required, String] :instance_id
|
3859
|
-
# The identifier of the Amazon Connect instance. You can find the
|
3860
|
-
#
|
4111
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4112
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4113
|
+
#
|
4114
|
+
#
|
4115
|
+
#
|
4116
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3861
4117
|
#
|
3862
4118
|
# @option params [required, Types::Filters] :filters
|
3863
4119
|
# The filters to apply to returned metrics. You can filter up to the
|
@@ -4093,8 +4349,12 @@ module Aws::Connect
|
|
4093
4349
|
# instance.
|
4094
4350
|
#
|
4095
4351
|
# @option params [required, String] :instance_id
|
4096
|
-
# The identifier of the Amazon Connect instance. You can find the
|
4097
|
-
#
|
4352
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4353
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4354
|
+
#
|
4355
|
+
#
|
4356
|
+
#
|
4357
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4098
4358
|
#
|
4099
4359
|
# @option params [required, Types::UserDataFilters] :filters
|
4100
4360
|
# The filters to apply to returned user data. You can filter up to the
|
@@ -4210,8 +4470,12 @@ module Aws::Connect
|
|
4210
4470
|
# </note>
|
4211
4471
|
#
|
4212
4472
|
# @option params [required, String] :instance_id
|
4213
|
-
# The identifier of the Amazon Connect instance. You can find the
|
4214
|
-
#
|
4473
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4474
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4475
|
+
#
|
4476
|
+
#
|
4477
|
+
#
|
4478
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4215
4479
|
#
|
4216
4480
|
# @return [Types::GetFederationTokenResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4217
4481
|
#
|
@@ -4256,8 +4520,12 @@ module Aws::Connect
|
|
4256
4520
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
4257
4521
|
#
|
4258
4522
|
# @option params [required, String] :instance_id
|
4259
|
-
# The identifier of the Amazon Connect instance. You can find the
|
4260
|
-
#
|
4523
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4524
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4525
|
+
#
|
4526
|
+
#
|
4527
|
+
#
|
4528
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4261
4529
|
#
|
4262
4530
|
# @option params [required, Time,DateTime,Date,Integer,String] :start_time
|
4263
4531
|
# The timestamp, in UNIX Epoch time format, at which to start the
|
@@ -4541,8 +4809,12 @@ module Aws::Connect
|
|
4541
4809
|
# Connect instance.
|
4542
4810
|
#
|
4543
4811
|
# @option params [required, String] :instance_id
|
4544
|
-
# The identifier of the Amazon Connect instance. You can find the
|
4545
|
-
#
|
4812
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4813
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4814
|
+
#
|
4815
|
+
#
|
4816
|
+
#
|
4817
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4546
4818
|
#
|
4547
4819
|
# @option params [required, String] :task_template_id
|
4548
4820
|
# A unique identifier for the task template.
|
@@ -4654,8 +4926,12 @@ module Aws::Connect
|
|
4654
4926
|
# Lists agent statuses.
|
4655
4927
|
#
|
4656
4928
|
# @option params [required, String] :instance_id
|
4657
|
-
# The identifier of the Amazon Connect instance. You can find the
|
4658
|
-
#
|
4929
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4930
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4931
|
+
#
|
4932
|
+
#
|
4933
|
+
#
|
4934
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4659
4935
|
#
|
4660
4936
|
# @option params [String] :next_token
|
4661
4937
|
# The token for the next set of results. Use the value returned in the
|
@@ -4709,8 +4985,12 @@ module Aws::Connect
|
|
4709
4985
|
# instance.
|
4710
4986
|
#
|
4711
4987
|
# @option params [required, String] :instance_id
|
4712
|
-
# The identifier of the Amazon Connect instance. You can find the
|
4713
|
-
#
|
4988
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4989
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4990
|
+
#
|
4991
|
+
#
|
4992
|
+
#
|
4993
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4714
4994
|
#
|
4715
4995
|
# @option params [String] :next_token
|
4716
4996
|
# The token for the next set of results. Use the value returned in the
|
@@ -4758,8 +5038,12 @@ module Aws::Connect
|
|
4758
5038
|
# this API to returns both Amazon Lex V1 and V2 bots.
|
4759
5039
|
#
|
4760
5040
|
# @option params [required, String] :instance_id
|
4761
|
-
# The identifier of the Amazon Connect instance. You can find the
|
4762
|
-
#
|
5041
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5042
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5043
|
+
#
|
5044
|
+
#
|
5045
|
+
#
|
5046
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4763
5047
|
#
|
4764
5048
|
# @option params [String] :next_token
|
4765
5049
|
# The token for the next set of results. Use the value returned in the
|
@@ -4809,8 +5093,12 @@ module Aws::Connect
|
|
4809
5093
|
# Connect instance.
|
4810
5094
|
#
|
4811
5095
|
# @option params [required, String] :instance_id
|
4812
|
-
# The identifier of the Amazon Connect instance. You can find the
|
4813
|
-
#
|
5096
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5097
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5098
|
+
#
|
5099
|
+
#
|
5100
|
+
#
|
5101
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4814
5102
|
#
|
4815
5103
|
# @option params [String] :next_token
|
4816
5104
|
# The token for the next set of results. Use the value returned in the
|
@@ -4872,8 +5160,12 @@ module Aws::Connect
|
|
4872
5160
|
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/concepts-contact-flows.html
|
4873
5161
|
#
|
4874
5162
|
# @option params [required, String] :instance_id
|
4875
|
-
# The identifier of the Amazon Connect instance. You can find the
|
4876
|
-
#
|
5163
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5164
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5165
|
+
#
|
5166
|
+
#
|
5167
|
+
#
|
5168
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4877
5169
|
#
|
4878
5170
|
# @option params [Array<String>] :contact_flow_types
|
4879
5171
|
# The type of flow.
|
@@ -4929,8 +5221,12 @@ module Aws::Connect
|
|
4929
5221
|
# associated with the contact.
|
4930
5222
|
#
|
4931
5223
|
# @option params [required, String] :instance_id
|
4932
|
-
# The identifier of the Amazon Connect instance. You can find the
|
4933
|
-
#
|
5224
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5225
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5226
|
+
#
|
5227
|
+
#
|
5228
|
+
#
|
5229
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4934
5230
|
#
|
4935
5231
|
# @option params [required, String] :contact_id
|
4936
5232
|
# The identifier of the initial contact.
|
@@ -4993,8 +5289,12 @@ module Aws::Connect
|
|
4993
5289
|
# instance.
|
4994
5290
|
#
|
4995
5291
|
# @option params [required, String] :instance_id
|
4996
|
-
# The identifier of the Amazon Connect instance. You can find the
|
4997
|
-
#
|
5292
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5293
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5294
|
+
#
|
5295
|
+
#
|
5296
|
+
#
|
5297
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4998
5298
|
#
|
4999
5299
|
# @option params [String] :language_code
|
5000
5300
|
# The language code of the vocabulary entries. For a list of languages
|
@@ -5058,8 +5358,12 @@ module Aws::Connect
|
|
5058
5358
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/set-hours-operation.html
|
5059
5359
|
#
|
5060
5360
|
# @option params [required, String] :instance_id
|
5061
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5062
|
-
#
|
5361
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5362
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5363
|
+
#
|
5364
|
+
#
|
5365
|
+
#
|
5366
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5063
5367
|
#
|
5064
5368
|
# @option params [String] :next_token
|
5065
5369
|
# The token for the next set of results. Use the value returned in the
|
@@ -5109,8 +5413,12 @@ module Aws::Connect
|
|
5109
5413
|
# instance.
|
5110
5414
|
#
|
5111
5415
|
# @option params [required, String] :instance_id
|
5112
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5113
|
-
#
|
5416
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5417
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5418
|
+
#
|
5419
|
+
#
|
5420
|
+
#
|
5421
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5114
5422
|
#
|
5115
5423
|
# @option params [String] :next_token
|
5116
5424
|
# The token for the next set of results. Use the value returned in the
|
@@ -5158,8 +5466,12 @@ module Aws::Connect
|
|
5158
5466
|
# instance and resource type.
|
5159
5467
|
#
|
5160
5468
|
# @option params [required, String] :instance_id
|
5161
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5162
|
-
#
|
5469
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5470
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5471
|
+
#
|
5472
|
+
#
|
5473
|
+
#
|
5474
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5163
5475
|
#
|
5164
5476
|
# @option params [required, String] :resource_type
|
5165
5477
|
# A valid resource type.
|
@@ -5183,7 +5495,7 @@ module Aws::Connect
|
|
5183
5495
|
#
|
5184
5496
|
# resp = client.list_instance_storage_configs({
|
5185
5497
|
# instance_id: "InstanceId", # required
|
5186
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
5498
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS
|
5187
5499
|
# next_token: "NextToken",
|
5188
5500
|
# max_results: 1,
|
5189
5501
|
# })
|
@@ -5271,8 +5583,12 @@ module Aws::Connect
|
|
5271
5583
|
# associations for the specified Amazon Connect instance.
|
5272
5584
|
#
|
5273
5585
|
# @option params [required, String] :instance_id
|
5274
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5275
|
-
#
|
5586
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5587
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5588
|
+
#
|
5589
|
+
#
|
5590
|
+
#
|
5591
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5276
5592
|
#
|
5277
5593
|
# @option params [String] :integration_type
|
5278
5594
|
# The integration type.
|
@@ -5330,8 +5646,12 @@ module Aws::Connect
|
|
5330
5646
|
# dropdown options in the relevant flow blocks.
|
5331
5647
|
#
|
5332
5648
|
# @option params [required, String] :instance_id
|
5333
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5334
|
-
#
|
5649
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5650
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5651
|
+
#
|
5652
|
+
#
|
5653
|
+
#
|
5654
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5335
5655
|
#
|
5336
5656
|
# @option params [String] :next_token
|
5337
5657
|
# The token for the next set of results. Use the value returned in the
|
@@ -5383,8 +5703,12 @@ module Aws::Connect
|
|
5383
5703
|
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ListBots.html
|
5384
5704
|
#
|
5385
5705
|
# @option params [required, String] :instance_id
|
5386
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5387
|
-
#
|
5706
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5707
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5708
|
+
#
|
5709
|
+
#
|
5710
|
+
#
|
5711
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5388
5712
|
#
|
5389
5713
|
# @option params [String] :next_token
|
5390
5714
|
# The token for the next set of results. Use the value returned in the
|
@@ -5446,8 +5770,12 @@ module Aws::Connect
|
|
5446
5770
|
# [3]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ListPhoneNumbersV2.html
|
5447
5771
|
#
|
5448
5772
|
# @option params [required, String] :instance_id
|
5449
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5450
|
-
#
|
5773
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5774
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5775
|
+
#
|
5776
|
+
#
|
5777
|
+
#
|
5778
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5451
5779
|
#
|
5452
5780
|
# @option params [Array<String>] :phone_number_types
|
5453
5781
|
# The type of phone number.
|
@@ -5629,8 +5957,12 @@ module Aws::Connect
|
|
5629
5957
|
# Lists the quick connects associated with a queue.
|
5630
5958
|
#
|
5631
5959
|
# @option params [required, String] :instance_id
|
5632
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5633
|
-
#
|
5960
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5961
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5962
|
+
#
|
5963
|
+
#
|
5964
|
+
#
|
5965
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5634
5966
|
#
|
5635
5967
|
# @option params [required, String] :queue_id
|
5636
5968
|
# The identifier for the queue.
|
@@ -5694,8 +6026,12 @@ module Aws::Connect
|
|
5694
6026
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/concepts-queues-standard-and-agent.html
|
5695
6027
|
#
|
5696
6028
|
# @option params [required, String] :instance_id
|
5697
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5698
|
-
#
|
6029
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6030
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6031
|
+
#
|
6032
|
+
#
|
6033
|
+
#
|
6034
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5699
6035
|
#
|
5700
6036
|
# @option params [Array<String>] :queue_types
|
5701
6037
|
# The type of queue.
|
@@ -5747,8 +6083,12 @@ module Aws::Connect
|
|
5747
6083
|
# Connect instance.
|
5748
6084
|
#
|
5749
6085
|
# @option params [required, String] :instance_id
|
5750
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5751
|
-
#
|
6086
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6087
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6088
|
+
#
|
6089
|
+
#
|
6090
|
+
#
|
6091
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5752
6092
|
#
|
5753
6093
|
# @option params [String] :next_token
|
5754
6094
|
# The token for the next set of results. Use the value returned in the
|
@@ -5802,8 +6142,12 @@ module Aws::Connect
|
|
5802
6142
|
# Lists the queues associated with a routing profile.
|
5803
6143
|
#
|
5804
6144
|
# @option params [required, String] :instance_id
|
5805
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5806
|
-
#
|
6145
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6146
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6147
|
+
#
|
6148
|
+
#
|
6149
|
+
#
|
6150
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5807
6151
|
#
|
5808
6152
|
# @option params [required, String] :routing_profile_id
|
5809
6153
|
# The identifier of the routing profile.
|
@@ -5866,8 +6210,12 @@ module Aws::Connect
|
|
5866
6210
|
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/routing-profiles.html
|
5867
6211
|
#
|
5868
6212
|
# @option params [required, String] :instance_id
|
5869
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5870
|
-
#
|
6213
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6214
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6215
|
+
#
|
6216
|
+
#
|
6217
|
+
#
|
6218
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5871
6219
|
#
|
5872
6220
|
# @option params [String] :next_token
|
5873
6221
|
# The token for the next set of results. Use the value returned in the
|
@@ -5913,8 +6261,12 @@ module Aws::Connect
|
|
5913
6261
|
# List all rules for the specified Amazon Connect instance.
|
5914
6262
|
#
|
5915
6263
|
# @option params [required, String] :instance_id
|
5916
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5917
|
-
#
|
6264
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6265
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6266
|
+
#
|
6267
|
+
#
|
6268
|
+
#
|
6269
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5918
6270
|
#
|
5919
6271
|
# @option params [String] :publish_status
|
5920
6272
|
# The publish status of the rule.
|
@@ -5977,8 +6329,12 @@ module Aws::Connect
|
|
5977
6329
|
# instance.
|
5978
6330
|
#
|
5979
6331
|
# @option params [required, String] :instance_id
|
5980
|
-
# The identifier of the Amazon Connect instance. You can find the
|
5981
|
-
#
|
6332
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6333
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6334
|
+
#
|
6335
|
+
#
|
6336
|
+
#
|
6337
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5982
6338
|
#
|
5983
6339
|
# @option params [String] :next_token
|
5984
6340
|
# The token for the next set of results. Use the value returned in the
|
@@ -6029,8 +6385,12 @@ module Aws::Connect
|
|
6029
6385
|
# The identifier for the security profle.
|
6030
6386
|
#
|
6031
6387
|
# @option params [required, String] :instance_id
|
6032
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6033
|
-
#
|
6388
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6389
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6390
|
+
#
|
6391
|
+
#
|
6392
|
+
#
|
6393
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6034
6394
|
#
|
6035
6395
|
# @option params [String] :next_token
|
6036
6396
|
# The token for the next set of results. Use the value returned in the
|
@@ -6082,8 +6442,12 @@ module Aws::Connect
|
|
6082
6442
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/connect-security-profiles.html
|
6083
6443
|
#
|
6084
6444
|
# @option params [required, String] :instance_id
|
6085
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6086
|
-
#
|
6445
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6446
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6447
|
+
#
|
6448
|
+
#
|
6449
|
+
#
|
6450
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6087
6451
|
#
|
6088
6452
|
# @option params [String] :next_token
|
6089
6453
|
# The token for the next set of results. Use the value returned in the
|
@@ -6136,7 +6500,14 @@ module Aws::Connect
|
|
6136
6500
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/security_iam_id-based-policy-examples.html
|
6137
6501
|
#
|
6138
6502
|
# @option params [required, String] :resource_arn
|
6139
|
-
# The Amazon Resource Name (ARN) of the resource.
|
6503
|
+
# The Amazon Resource Name (ARN) of the resource. All Amazon Connect
|
6504
|
+
# resources (instances, queues, flows, routing profiles, etc) have an
|
6505
|
+
# ARN. To locate the ARN for an instance, for example, see [Find your
|
6506
|
+
# Amazon Connect instance ID/ARN][1].
|
6507
|
+
#
|
6508
|
+
#
|
6509
|
+
#
|
6510
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6140
6511
|
#
|
6141
6512
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6142
6513
|
#
|
@@ -6165,8 +6536,12 @@ module Aws::Connect
|
|
6165
6536
|
# Lists task templates for the specified Amazon Connect instance.
|
6166
6537
|
#
|
6167
6538
|
# @option params [required, String] :instance_id
|
6168
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6169
|
-
#
|
6539
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6540
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6541
|
+
#
|
6542
|
+
#
|
6543
|
+
#
|
6544
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6170
6545
|
#
|
6171
6546
|
# @option params [String] :next_token
|
6172
6547
|
# The token for the next set of results. Use the value returned in the
|
@@ -6239,8 +6614,12 @@ module Aws::Connect
|
|
6239
6614
|
# results.
|
6240
6615
|
#
|
6241
6616
|
# @option params [String] :instance_id
|
6242
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6243
|
-
#
|
6617
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6618
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6619
|
+
#
|
6620
|
+
#
|
6621
|
+
#
|
6622
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6244
6623
|
#
|
6245
6624
|
# @return [Types::ListTrafficDistributionGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6246
6625
|
#
|
@@ -6279,8 +6658,12 @@ module Aws::Connect
|
|
6279
6658
|
# Lists the use cases for the integration association.
|
6280
6659
|
#
|
6281
6660
|
# @option params [required, String] :instance_id
|
6282
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6283
|
-
#
|
6661
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6662
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6663
|
+
#
|
6664
|
+
#
|
6665
|
+
#
|
6666
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6284
6667
|
#
|
6285
6668
|
# @option params [required, String] :integration_association_id
|
6286
6669
|
# The identifier for the integration association.
|
@@ -6337,8 +6720,12 @@ module Aws::Connect
|
|
6337
6720
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/agent-hierarchy.html
|
6338
6721
|
#
|
6339
6722
|
# @option params [required, String] :instance_id
|
6340
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6341
|
-
#
|
6723
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6724
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6725
|
+
#
|
6726
|
+
#
|
6727
|
+
#
|
6728
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6342
6729
|
#
|
6343
6730
|
# @option params [String] :next_token
|
6344
6731
|
# The token for the next set of results. Use the value returned in the
|
@@ -6385,8 +6772,12 @@ module Aws::Connect
|
|
6385
6772
|
# Connect instance.
|
6386
6773
|
#
|
6387
6774
|
# @option params [required, String] :instance_id
|
6388
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6389
|
-
#
|
6775
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6776
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6777
|
+
#
|
6778
|
+
#
|
6779
|
+
#
|
6780
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6390
6781
|
#
|
6391
6782
|
# @option params [String] :next_token
|
6392
6783
|
# The token for the next set of results. Use the value returned in the
|
@@ -6506,8 +6897,12 @@ module Aws::Connect
|
|
6506
6897
|
# The identifier of the user.
|
6507
6898
|
#
|
6508
6899
|
# @option params [required, String] :instance_id
|
6509
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6510
|
-
#
|
6900
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6901
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6902
|
+
#
|
6903
|
+
#
|
6904
|
+
#
|
6905
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6511
6906
|
#
|
6512
6907
|
# @option params [required, String] :agent_status_id
|
6513
6908
|
# The identifier of the agent status.
|
@@ -6589,9 +6984,13 @@ module Aws::Connect
|
|
6589
6984
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-replica-connect-instance.html
|
6590
6985
|
#
|
6591
6986
|
# @option params [required, String] :instance_id
|
6592
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6593
|
-
#
|
6594
|
-
# `InstanceId`, or the entire ARN.
|
6987
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6988
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance. You
|
6989
|
+
# can provide the `InstanceId`, or the entire ARN.
|
6990
|
+
#
|
6991
|
+
#
|
6992
|
+
#
|
6993
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6595
6994
|
#
|
6596
6995
|
# @option params [required, String] :replica_region
|
6597
6996
|
# The Amazon Web Services Region where to replicate the Amazon Connect
|
@@ -6648,8 +7047,12 @@ module Aws::Connect
|
|
6648
7047
|
# Only voice recordings are supported at this time.
|
6649
7048
|
#
|
6650
7049
|
# @option params [required, String] :instance_id
|
6651
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6652
|
-
#
|
7050
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
7051
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
7052
|
+
#
|
7053
|
+
#
|
7054
|
+
#
|
7055
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6653
7056
|
#
|
6654
7057
|
# @option params [required, String] :contact_id
|
6655
7058
|
# The identifier of the contact.
|
@@ -6747,8 +7150,12 @@ module Aws::Connect
|
|
6747
7150
|
# filtering.
|
6748
7151
|
#
|
6749
7152
|
# @option params [required, String] :instance_id
|
6750
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6751
|
-
#
|
7153
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
7154
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
7155
|
+
#
|
7156
|
+
#
|
7157
|
+
#
|
7158
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6752
7159
|
#
|
6753
7160
|
# @option params [String] :next_token
|
6754
7161
|
# The token for the next set of results. Use the value returned in the
|
@@ -6861,8 +7268,12 @@ module Aws::Connect
|
|
6861
7268
|
# filtering.
|
6862
7269
|
#
|
6863
7270
|
# @option params [required, String] :instance_id
|
6864
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6865
|
-
#
|
7271
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
7272
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
7273
|
+
#
|
7274
|
+
#
|
7275
|
+
#
|
7276
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6866
7277
|
#
|
6867
7278
|
# @option params [String] :next_token
|
6868
7279
|
# The token for the next set of results. Use the value returned in the
|
@@ -6975,8 +7386,12 @@ module Aws::Connect
|
|
6975
7386
|
# optional filtering.
|
6976
7387
|
#
|
6977
7388
|
# @option params [required, String] :instance_id
|
6978
|
-
# The identifier of the Amazon Connect instance. You can find the
|
6979
|
-
#
|
7389
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
7390
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
7391
|
+
#
|
7392
|
+
#
|
7393
|
+
#
|
7394
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6980
7395
|
#
|
6981
7396
|
# @option params [String] :next_token
|
6982
7397
|
# The token for the next set of results. Use the value returned in the
|
@@ -7086,8 +7501,12 @@ module Aws::Connect
|
|
7086
7501
|
# </note>
|
7087
7502
|
#
|
7088
7503
|
# @option params [String] :instance_id
|
7089
|
-
# The identifier of the Amazon Connect instance. You can find the
|
7090
|
-
#
|
7504
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
7505
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
7506
|
+
#
|
7507
|
+
#
|
7508
|
+
#
|
7509
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
7091
7510
|
#
|
7092
7511
|
# @option params [String] :next_token
|
7093
7512
|
# The token for the next set of results. Use the value returned in the
|
@@ -7204,8 +7623,12 @@ module Aws::Connect
|
|
7204
7623
|
# using `State`, `NameStartsWith`, and `LanguageCode`.
|
7205
7624
|
#
|
7206
7625
|
# @option params [required, String] :instance_id
|
7207
|
-
# The identifier of the Amazon Connect instance. You can find the
|
7208
|
-
#
|
7626
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
7627
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
7628
|
+
#
|
7629
|
+
#
|
7630
|
+
#
|
7631
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
7209
7632
|
#
|
7210
7633
|
# @option params [Integer] :max_results
|
7211
7634
|
# The maximum number of results to return per page.
|
@@ -7303,8 +7726,12 @@ module Aws::Connect
|
|
7303
7726
|
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/chat.html
|
7304
7727
|
#
|
7305
7728
|
# @option params [required, String] :instance_id
|
7306
|
-
# The identifier of the Amazon Connect instance. You can find the
|
7307
|
-
#
|
7729
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
7730
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
7731
|
+
#
|
7732
|
+
#
|
7733
|
+
#
|
7734
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
7308
7735
|
#
|
7309
7736
|
# @option params [required, String] :contact_flow_id
|
7310
7737
|
# The identifier of the flow for initiating the chat. To see the
|
@@ -7439,8 +7866,12 @@ module Aws::Connect
|
|
7439
7866
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/set-recording-behavior.html
|
7440
7867
|
#
|
7441
7868
|
# @option params [required, String] :instance_id
|
7442
|
-
# The identifier of the Amazon Connect instance. You can find the
|
7443
|
-
#
|
7869
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
7870
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
7871
|
+
#
|
7872
|
+
#
|
7873
|
+
#
|
7874
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
7444
7875
|
#
|
7445
7876
|
# @option params [required, String] :contact_id
|
7446
7877
|
# The identifier of the contact.
|
@@ -7485,8 +7916,12 @@ module Aws::Connect
|
|
7485
7916
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/chat-message-streaming.html
|
7486
7917
|
#
|
7487
7918
|
# @option params [required, String] :instance_id
|
7488
|
-
# The identifier of the Amazon Connect instance. You can find the
|
7489
|
-
#
|
7919
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
7920
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
7921
|
+
#
|
7922
|
+
#
|
7923
|
+
#
|
7924
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
7490
7925
|
#
|
7491
7926
|
# @option params [required, String] :contact_id
|
7492
7927
|
# The identifier of the contact. This is the identifier of the contact
|
@@ -7581,8 +8016,12 @@ module Aws::Connect
|
|
7581
8016
|
# arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/**846ec553-a005-41c0-8341-xxxxxxxxxxxx**
|
7582
8017
|
#
|
7583
8018
|
# @option params [required, String] :instance_id
|
7584
|
-
# The identifier of the Amazon Connect instance. You can find the
|
7585
|
-
#
|
8019
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8020
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8021
|
+
#
|
8022
|
+
#
|
8023
|
+
#
|
8024
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
7586
8025
|
#
|
7587
8026
|
# @option params [String] :client_token
|
7588
8027
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -7672,8 +8111,12 @@ module Aws::Connect
|
|
7672
8111
|
# Initiates a flow to start a new task.
|
7673
8112
|
#
|
7674
8113
|
# @option params [required, String] :instance_id
|
7675
|
-
# The identifier of the Amazon Connect instance. You can find the
|
7676
|
-
#
|
8114
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8115
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8116
|
+
#
|
8117
|
+
#
|
8118
|
+
#
|
8119
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
7677
8120
|
#
|
7678
8121
|
# @option params [String] :previous_contact_id
|
7679
8122
|
# The identifier of the previous chat, voice, or task contact.
|
@@ -7786,8 +8229,12 @@ module Aws::Connect
|
|
7786
8229
|
# The ID of the contact.
|
7787
8230
|
#
|
7788
8231
|
# @option params [required, String] :instance_id
|
7789
|
-
# The identifier of the Amazon Connect instance. You can find the
|
7790
|
-
#
|
8232
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8233
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8234
|
+
#
|
8235
|
+
#
|
8236
|
+
#
|
8237
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
7791
8238
|
#
|
7792
8239
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
7793
8240
|
#
|
@@ -7818,8 +8265,12 @@ module Aws::Connect
|
|
7818
8265
|
# Only voice recordings are supported at this time.
|
7819
8266
|
#
|
7820
8267
|
# @option params [required, String] :instance_id
|
7821
|
-
# The identifier of the Amazon Connect instance. You can find the
|
7822
|
-
#
|
8268
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8269
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8270
|
+
#
|
8271
|
+
#
|
8272
|
+
#
|
8273
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
7823
8274
|
#
|
7824
8275
|
# @option params [required, String] :contact_id
|
7825
8276
|
# The identifier of the contact.
|
@@ -7855,8 +8306,12 @@ module Aws::Connect
|
|
7855
8306
|
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_StartContactStreaming.html
|
7856
8307
|
#
|
7857
8308
|
# @option params [required, String] :instance_id
|
7858
|
-
# The identifier of the Amazon Connect instance. You can find the
|
7859
|
-
#
|
8309
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8310
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8311
|
+
#
|
8312
|
+
#
|
8313
|
+
#
|
8314
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
7860
8315
|
#
|
7861
8316
|
# @option params [required, String] :contact_id
|
7862
8317
|
# The identifier of the contact. This is the identifier of the contact
|
@@ -7895,8 +8350,12 @@ module Aws::Connect
|
|
7895
8350
|
# Only voice recordings are supported at this time.
|
7896
8351
|
#
|
7897
8352
|
# @option params [required, String] :instance_id
|
7898
|
-
# The identifier of the Amazon Connect instance. You can find the
|
7899
|
-
#
|
8353
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8354
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8355
|
+
#
|
8356
|
+
#
|
8357
|
+
#
|
8358
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
7900
8359
|
#
|
7901
8360
|
# @option params [required, String] :contact_id
|
7902
8361
|
# The identifier of the contact.
|
@@ -7988,8 +8447,12 @@ module Aws::Connect
|
|
7988
8447
|
# * A contact cannot be transferred more than 11 times.
|
7989
8448
|
#
|
7990
8449
|
# @option params [required, String] :instance_id
|
7991
|
-
# The identifier of the Amazon Connect instance. You can find the
|
7992
|
-
#
|
8450
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8451
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8452
|
+
#
|
8453
|
+
#
|
8454
|
+
#
|
8455
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
7993
8456
|
#
|
7994
8457
|
# @option params [required, String] :contact_id
|
7995
8458
|
# The identifier of the contact in this instance of Amazon Connect.
|
@@ -8078,8 +8541,12 @@ module Aws::Connect
|
|
8078
8541
|
# Updates agent status.
|
8079
8542
|
#
|
8080
8543
|
# @option params [required, String] :instance_id
|
8081
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8082
|
-
#
|
8544
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8545
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8546
|
+
#
|
8547
|
+
#
|
8548
|
+
#
|
8549
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8083
8550
|
#
|
8084
8551
|
# @option params [required, String] :agent_status_id
|
8085
8552
|
# The identifier of the agent status.
|
@@ -8133,8 +8600,12 @@ module Aws::Connect
|
|
8133
8600
|
# ongoing and completed contacts.
|
8134
8601
|
#
|
8135
8602
|
# @option params [required, String] :instance_id
|
8136
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8137
|
-
#
|
8603
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8604
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8605
|
+
#
|
8606
|
+
#
|
8607
|
+
#
|
8608
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8138
8609
|
#
|
8139
8610
|
# @option params [required, String] :contact_id
|
8140
8611
|
# The identifier of the contact. This is the identifier of the contact
|
@@ -8204,8 +8675,12 @@ module Aws::Connect
|
|
8204
8675
|
# associated with the first interaction with the contact center.
|
8205
8676
|
#
|
8206
8677
|
# @option params [required, String] :instance_id
|
8207
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8208
|
-
#
|
8678
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8679
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8680
|
+
#
|
8681
|
+
#
|
8682
|
+
#
|
8683
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8209
8684
|
#
|
8210
8685
|
# @option params [required, Hash<String,String>] :attributes
|
8211
8686
|
# The Amazon Connect attributes. These attributes can be accessed in
|
@@ -8281,8 +8756,12 @@ module Aws::Connect
|
|
8281
8756
|
# Updates metadata about specified flow.
|
8282
8757
|
#
|
8283
8758
|
# @option params [required, String] :instance_id
|
8284
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8285
|
-
#
|
8759
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8760
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8761
|
+
#
|
8762
|
+
#
|
8763
|
+
#
|
8764
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8286
8765
|
#
|
8287
8766
|
# @option params [required, String] :contact_flow_id
|
8288
8767
|
# The identifier of the flow.
|
@@ -8321,8 +8800,12 @@ module Aws::Connect
|
|
8321
8800
|
# instance.
|
8322
8801
|
#
|
8323
8802
|
# @option params [required, String] :instance_id
|
8324
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8325
|
-
#
|
8803
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8804
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8805
|
+
#
|
8806
|
+
#
|
8807
|
+
#
|
8808
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8326
8809
|
#
|
8327
8810
|
# @option params [required, String] :contact_flow_module_id
|
8328
8811
|
# The identifier of the flow module.
|
@@ -8352,8 +8835,12 @@ module Aws::Connect
|
|
8352
8835
|
# Updates metadata about specified flow module.
|
8353
8836
|
#
|
8354
8837
|
# @option params [required, String] :instance_id
|
8355
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8356
|
-
#
|
8838
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8839
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8840
|
+
#
|
8841
|
+
#
|
8842
|
+
#
|
8843
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8357
8844
|
#
|
8358
8845
|
# @option params [required, String] :contact_flow_module_id
|
8359
8846
|
# The identifier of the flow module.
|
@@ -8433,8 +8920,12 @@ module Aws::Connect
|
|
8433
8920
|
# scheduled.
|
8434
8921
|
#
|
8435
8922
|
# @option params [required, String] :instance_id
|
8436
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8437
|
-
#
|
8923
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8924
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8925
|
+
#
|
8926
|
+
#
|
8927
|
+
#
|
8928
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8438
8929
|
#
|
8439
8930
|
# @option params [required, String] :contact_id
|
8440
8931
|
# The identifier of the contact.
|
@@ -8469,8 +8960,12 @@ module Aws::Connect
|
|
8469
8960
|
# Updates the hours of operation.
|
8470
8961
|
#
|
8471
8962
|
# @option params [required, String] :instance_id
|
8472
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8473
|
-
#
|
8963
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8964
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8965
|
+
#
|
8966
|
+
#
|
8967
|
+
#
|
8968
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8474
8969
|
#
|
8475
8970
|
# @option params [required, String] :hours_of_operation_id
|
8476
8971
|
# The identifier of the hours of operation.
|
@@ -8527,8 +9022,12 @@ module Aws::Connect
|
|
8527
9022
|
# Updates the value for the specified attribute type.
|
8528
9023
|
#
|
8529
9024
|
# @option params [required, String] :instance_id
|
8530
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8531
|
-
#
|
9025
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9026
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9027
|
+
#
|
9028
|
+
#
|
9029
|
+
#
|
9030
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8532
9031
|
#
|
8533
9032
|
# @option params [required, String] :attribute_type
|
8534
9033
|
# The type of attribute.
|
@@ -8568,8 +9067,12 @@ module Aws::Connect
|
|
8568
9067
|
# idempotent.
|
8569
9068
|
#
|
8570
9069
|
# @option params [required, String] :instance_id
|
8571
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8572
|
-
#
|
9070
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9071
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9072
|
+
#
|
9073
|
+
#
|
9074
|
+
#
|
9075
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8573
9076
|
#
|
8574
9077
|
# @option params [required, String] :association_id
|
8575
9078
|
# The existing association identifier that uniquely identifies the
|
@@ -8588,7 +9091,7 @@ module Aws::Connect
|
|
8588
9091
|
# resp = client.update_instance_storage_config({
|
8589
9092
|
# instance_id: "InstanceId", # required
|
8590
9093
|
# association_id: "AssociationId", # required
|
8591
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
9094
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS
|
8592
9095
|
# storage_config: { # required
|
8593
9096
|
# association_id: "AssociationId",
|
8594
9097
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
@@ -8646,8 +9149,12 @@ module Aws::Connect
|
|
8646
9149
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-chat-timeouts.html
|
8647
9150
|
#
|
8648
9151
|
# @option params [required, String] :instance_id
|
8649
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8650
|
-
#
|
9152
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9153
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9154
|
+
#
|
9155
|
+
#
|
9156
|
+
#
|
9157
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8651
9158
|
#
|
8652
9159
|
# @option params [required, String] :contact_id
|
8653
9160
|
# The identifier of the contact in this instance of Amazon Connect.
|
@@ -8753,8 +9260,12 @@ module Aws::Connect
|
|
8753
9260
|
# Updates the hours of operation for the specified queue.
|
8754
9261
|
#
|
8755
9262
|
# @option params [required, String] :instance_id
|
8756
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8757
|
-
#
|
9263
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9264
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9265
|
+
#
|
9266
|
+
#
|
9267
|
+
#
|
9268
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8758
9269
|
#
|
8759
9270
|
# @option params [required, String] :queue_id
|
8760
9271
|
# The identifier for the queue.
|
@@ -8788,8 +9299,12 @@ module Aws::Connect
|
|
8788
9299
|
# considered full.
|
8789
9300
|
#
|
8790
9301
|
# @option params [required, String] :instance_id
|
8791
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8792
|
-
#
|
9302
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9303
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9304
|
+
#
|
9305
|
+
#
|
9306
|
+
#
|
9307
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8793
9308
|
#
|
8794
9309
|
# @option params [required, String] :queue_id
|
8795
9310
|
# The identifier for the queue.
|
@@ -8824,8 +9339,12 @@ module Aws::Connect
|
|
8824
9339
|
# `Description` must be provided.
|
8825
9340
|
#
|
8826
9341
|
# @option params [required, String] :instance_id
|
8827
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8828
|
-
#
|
9342
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9343
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9344
|
+
#
|
9345
|
+
#
|
9346
|
+
#
|
9347
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8829
9348
|
#
|
8830
9349
|
# @option params [required, String] :queue_id
|
8831
9350
|
# The identifier for the queue.
|
@@ -8879,8 +9398,12 @@ module Aws::Connect
|
|
8879
9398
|
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_OutboundCallerConfig
|
8880
9399
|
#
|
8881
9400
|
# @option params [required, String] :instance_id
|
8882
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8883
|
-
#
|
9401
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9402
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9403
|
+
#
|
9404
|
+
#
|
9405
|
+
#
|
9406
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8884
9407
|
#
|
8885
9408
|
# @option params [required, String] :queue_id
|
8886
9409
|
# The identifier for the queue.
|
@@ -8917,8 +9440,12 @@ module Aws::Connect
|
|
8917
9440
|
# Updates the status of the queue.
|
8918
9441
|
#
|
8919
9442
|
# @option params [required, String] :instance_id
|
8920
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8921
|
-
#
|
9443
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9444
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9445
|
+
#
|
9446
|
+
#
|
9447
|
+
#
|
9448
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8922
9449
|
#
|
8923
9450
|
# @option params [required, String] :queue_id
|
8924
9451
|
# The identifier for the queue.
|
@@ -8948,8 +9475,12 @@ module Aws::Connect
|
|
8948
9475
|
# Updates the configuration settings for the specified quick connect.
|
8949
9476
|
#
|
8950
9477
|
# @option params [required, String] :instance_id
|
8951
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8952
|
-
#
|
9478
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9479
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9480
|
+
#
|
9481
|
+
#
|
9482
|
+
#
|
9483
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8953
9484
|
#
|
8954
9485
|
# @option params [required, String] :quick_connect_id
|
8955
9486
|
# The identifier for the quick connect.
|
@@ -8994,8 +9525,12 @@ module Aws::Connect
|
|
8994
9525
|
# `Description` must be provided.
|
8995
9526
|
#
|
8996
9527
|
# @option params [required, String] :instance_id
|
8997
|
-
# The identifier of the Amazon Connect instance. You can find the
|
8998
|
-
#
|
9528
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9529
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9530
|
+
#
|
9531
|
+
#
|
9532
|
+
#
|
9533
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8999
9534
|
#
|
9000
9535
|
# @option params [required, String] :quick_connect_id
|
9001
9536
|
# The identifier for the quick connect.
|
@@ -9030,8 +9565,12 @@ module Aws::Connect
|
|
9030
9565
|
# Panel (CCP) for a routing profile.
|
9031
9566
|
#
|
9032
9567
|
# @option params [required, String] :instance_id
|
9033
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9034
|
-
#
|
9568
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9569
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9570
|
+
#
|
9571
|
+
#
|
9572
|
+
#
|
9573
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9035
9574
|
#
|
9036
9575
|
# @option params [required, String] :routing_profile_id
|
9037
9576
|
# The identifier of the routing profile.
|
@@ -9067,8 +9606,12 @@ module Aws::Connect
|
|
9067
9606
|
# Updates the default outbound queue of a routing profile.
|
9068
9607
|
#
|
9069
9608
|
# @option params [required, String] :instance_id
|
9070
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9071
|
-
#
|
9609
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9610
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9611
|
+
#
|
9612
|
+
#
|
9613
|
+
#
|
9614
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9072
9615
|
#
|
9073
9616
|
# @option params [required, String] :routing_profile_id
|
9074
9617
|
# The identifier of the routing profile.
|
@@ -9100,8 +9643,12 @@ module Aws::Connect
|
|
9100
9643
|
# `Description` must be provided.
|
9101
9644
|
#
|
9102
9645
|
# @option params [required, String] :instance_id
|
9103
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9104
|
-
#
|
9646
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9647
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9648
|
+
#
|
9649
|
+
#
|
9650
|
+
#
|
9651
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9105
9652
|
#
|
9106
9653
|
# @option params [required, String] :routing_profile_id
|
9107
9654
|
# The identifier of the routing profile.
|
@@ -9137,8 +9684,12 @@ module Aws::Connect
|
|
9137
9684
|
# profile.
|
9138
9685
|
#
|
9139
9686
|
# @option params [required, String] :instance_id
|
9140
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9141
|
-
#
|
9687
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9688
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9689
|
+
#
|
9690
|
+
#
|
9691
|
+
#
|
9692
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9142
9693
|
#
|
9143
9694
|
# @option params [required, String] :routing_profile_id
|
9144
9695
|
# The identifier of the routing profile.
|
@@ -9188,8 +9739,12 @@ module Aws::Connect
|
|
9188
9739
|
# A unique identifier for the rule.
|
9189
9740
|
#
|
9190
9741
|
# @option params [required, String] :instance_id
|
9191
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9192
|
-
#
|
9742
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9743
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9744
|
+
#
|
9745
|
+
#
|
9746
|
+
#
|
9747
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9193
9748
|
#
|
9194
9749
|
# @option params [required, String] :name
|
9195
9750
|
# The name of the rule. You can change the name only if
|
@@ -9280,8 +9835,12 @@ module Aws::Connect
|
|
9280
9835
|
# The identifier for the security profle.
|
9281
9836
|
#
|
9282
9837
|
# @option params [required, String] :instance_id
|
9283
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9284
|
-
#
|
9838
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9839
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9840
|
+
#
|
9841
|
+
#
|
9842
|
+
#
|
9843
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9285
9844
|
#
|
9286
9845
|
# @option params [Hash<String,String>] :allowed_access_control_tags
|
9287
9846
|
# The list of tags that a security profile uses to restrict access to
|
@@ -9323,8 +9882,12 @@ module Aws::Connect
|
|
9323
9882
|
# A unique identifier for the task template.
|
9324
9883
|
#
|
9325
9884
|
# @option params [required, String] :instance_id
|
9326
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9327
|
-
#
|
9885
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9886
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9887
|
+
#
|
9888
|
+
#
|
9889
|
+
#
|
9890
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9328
9891
|
#
|
9329
9892
|
# @option params [String] :name
|
9330
9893
|
# The name of the task template.
|
@@ -9511,8 +10074,12 @@ module Aws::Connect
|
|
9511
10074
|
# The identifier of the user account.
|
9512
10075
|
#
|
9513
10076
|
# @option params [required, String] :instance_id
|
9514
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9515
|
-
#
|
10077
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
10078
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
10079
|
+
#
|
10080
|
+
#
|
10081
|
+
#
|
10082
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9516
10083
|
#
|
9517
10084
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
9518
10085
|
#
|
@@ -9542,8 +10109,12 @@ module Aws::Connect
|
|
9542
10109
|
# The identifier of the hierarchy group.
|
9543
10110
|
#
|
9544
10111
|
# @option params [required, String] :instance_id
|
9545
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9546
|
-
#
|
10112
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
10113
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
10114
|
+
#
|
10115
|
+
#
|
10116
|
+
#
|
10117
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9547
10118
|
#
|
9548
10119
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
9549
10120
|
#
|
@@ -9571,8 +10142,12 @@ module Aws::Connect
|
|
9571
10142
|
# The hierarchy levels to update.
|
9572
10143
|
#
|
9573
10144
|
# @option params [required, String] :instance_id
|
9574
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9575
|
-
#
|
10145
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
10146
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
10147
|
+
#
|
10148
|
+
#
|
10149
|
+
#
|
10150
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9576
10151
|
#
|
9577
10152
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
9578
10153
|
#
|
@@ -9629,8 +10204,12 @@ module Aws::Connect
|
|
9629
10204
|
# The identifier of the user account.
|
9630
10205
|
#
|
9631
10206
|
# @option params [required, String] :instance_id
|
9632
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9633
|
-
#
|
10207
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
10208
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
10209
|
+
#
|
10210
|
+
#
|
10211
|
+
#
|
10212
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9634
10213
|
#
|
9635
10214
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
9636
10215
|
#
|
@@ -9666,8 +10245,12 @@ module Aws::Connect
|
|
9666
10245
|
# The identifier of the user account.
|
9667
10246
|
#
|
9668
10247
|
# @option params [required, String] :instance_id
|
9669
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9670
|
-
#
|
10248
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
10249
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
10250
|
+
#
|
10251
|
+
#
|
10252
|
+
#
|
10253
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9671
10254
|
#
|
9672
10255
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
9673
10256
|
#
|
@@ -9702,8 +10285,12 @@ module Aws::Connect
|
|
9702
10285
|
# The identifier of the user account.
|
9703
10286
|
#
|
9704
10287
|
# @option params [required, String] :instance_id
|
9705
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9706
|
-
#
|
10288
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
10289
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
10290
|
+
#
|
10291
|
+
#
|
10292
|
+
#
|
10293
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9707
10294
|
#
|
9708
10295
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
9709
10296
|
#
|
@@ -9733,8 +10320,12 @@ module Aws::Connect
|
|
9733
10320
|
# The identifier of the user account.
|
9734
10321
|
#
|
9735
10322
|
# @option params [required, String] :instance_id
|
9736
|
-
# The identifier of the Amazon Connect instance. You can find the
|
9737
|
-
#
|
10323
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
10324
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
10325
|
+
#
|
10326
|
+
#
|
10327
|
+
#
|
10328
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9738
10329
|
#
|
9739
10330
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
9740
10331
|
#
|
@@ -9768,7 +10359,7 @@ module Aws::Connect
|
|
9768
10359
|
params: params,
|
9769
10360
|
config: config)
|
9770
10361
|
context[:gem_name] = 'aws-sdk-connect'
|
9771
|
-
context[:gem_version] = '1.
|
10362
|
+
context[:gem_version] = '1.97.0'
|
9772
10363
|
Seahorse::Client::Request.new(handlers, context)
|
9773
10364
|
end
|
9774
10365
|
|