aws-sdk-connect 1.96.0 → 1.98.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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 console does not
3272
- # display the user IDs. Instead, list the users and note the IDs
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance..
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
@@ -6384,9 +6771,13 @@ module Aws::Connect
6384
6771
  # Provides summary information about the users for the specified Amazon
6385
6772
  # Connect instance.
6386
6773
  #
6387
- # @option params [required, String] :instance_id
6388
- # The identifier of the Amazon Connect instance. You can find the
6389
- # instanceId in the ARN of the instance.
6774
+ # @option params [required, String] :instance_id
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance. You can provide the
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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
- # instanceId in the ARN of the instance.
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.
@@ -7733,6 +8176,13 @@ module Aws::Connect
7733
8176
  # @option params [String] :quick_connect_id
7734
8177
  # The identifier for the quick connect.
7735
8178
  #
8179
+ # @option params [String] :related_contact_id
8180
+ # The contactId that is [related][1] to this contact.
8181
+ #
8182
+ #
8183
+ #
8184
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/tasks.html#linked-tasks
8185
+ #
7736
8186
  # @return [Types::StartTaskContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7737
8187
  #
7738
8188
  # * {Types::StartTaskContactResponse#contact_id #contact_id} => String
@@ -7758,6 +8208,7 @@ module Aws::Connect
7758
8208
  # scheduled_time: Time.now,
7759
8209
  # task_template_id: "TaskTemplateId",
7760
8210
  # quick_connect_id: "QuickConnectId",
8211
+ # related_contact_id: "ContactId",
7761
8212
  # })
7762
8213
  #
7763
8214
  # @example Response structure
@@ -7786,8 +8237,12 @@ module Aws::Connect
7786
8237
  # The ID of the contact.
7787
8238
  #
7788
8239
  # @option params [required, String] :instance_id
7789
- # The identifier of the Amazon Connect instance. You can find the
7790
- # instanceId in the ARN of the instance.
8240
+ # The identifier of the Amazon Connect instance. You can [find the
8241
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8242
+ #
8243
+ #
8244
+ #
8245
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
7791
8246
  #
7792
8247
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
7793
8248
  #
@@ -7818,8 +8273,12 @@ module Aws::Connect
7818
8273
  # Only voice recordings are supported at this time.
7819
8274
  #
7820
8275
  # @option params [required, String] :instance_id
7821
- # The identifier of the Amazon Connect instance. You can find the
7822
- # instanceId in the ARN of the instance.
8276
+ # The identifier of the Amazon Connect instance. You can [find the
8277
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8278
+ #
8279
+ #
8280
+ #
8281
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
7823
8282
  #
7824
8283
  # @option params [required, String] :contact_id
7825
8284
  # The identifier of the contact.
@@ -7855,8 +8314,12 @@ module Aws::Connect
7855
8314
  # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_StartContactStreaming.html
7856
8315
  #
7857
8316
  # @option params [required, String] :instance_id
7858
- # The identifier of the Amazon Connect instance. You can find the
7859
- # instanceId in the ARN of the instance.
8317
+ # The identifier of the Amazon Connect instance. You can [find the
8318
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8319
+ #
8320
+ #
8321
+ #
8322
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
7860
8323
  #
7861
8324
  # @option params [required, String] :contact_id
7862
8325
  # The identifier of the contact. This is the identifier of the contact
@@ -7895,8 +8358,12 @@ module Aws::Connect
7895
8358
  # Only voice recordings are supported at this time.
7896
8359
  #
7897
8360
  # @option params [required, String] :instance_id
7898
- # The identifier of the Amazon Connect instance. You can find the
7899
- # instanceId in the ARN of the instance.
8361
+ # The identifier of the Amazon Connect instance. You can [find the
8362
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8363
+ #
8364
+ #
8365
+ #
8366
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
7900
8367
  #
7901
8368
  # @option params [required, String] :contact_id
7902
8369
  # The identifier of the contact.
@@ -7988,8 +8455,12 @@ module Aws::Connect
7988
8455
  # * A contact cannot be transferred more than 11 times.
7989
8456
  #
7990
8457
  # @option params [required, String] :instance_id
7991
- # The identifier of the Amazon Connect instance. You can find the
7992
- # instanceId in the ARN of the instance.
8458
+ # The identifier of the Amazon Connect instance. You can [find the
8459
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8460
+ #
8461
+ #
8462
+ #
8463
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
7993
8464
  #
7994
8465
  # @option params [required, String] :contact_id
7995
8466
  # The identifier of the contact in this instance of Amazon Connect.
@@ -8078,8 +8549,12 @@ module Aws::Connect
8078
8549
  # Updates agent status.
8079
8550
  #
8080
8551
  # @option params [required, String] :instance_id
8081
- # The identifier of the Amazon Connect instance. You can find the
8082
- # instanceId in the ARN of the instance.
8552
+ # The identifier of the Amazon Connect instance. You can [find the
8553
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8554
+ #
8555
+ #
8556
+ #
8557
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8083
8558
  #
8084
8559
  # @option params [required, String] :agent_status_id
8085
8560
  # The identifier of the agent status.
@@ -8133,8 +8608,12 @@ module Aws::Connect
8133
8608
  # ongoing and completed contacts.
8134
8609
  #
8135
8610
  # @option params [required, String] :instance_id
8136
- # The identifier of the Amazon Connect instance. You can find the
8137
- # instanceId in the ARN of the instance.
8611
+ # The identifier of the Amazon Connect instance. You can [find the
8612
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8613
+ #
8614
+ #
8615
+ #
8616
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8138
8617
  #
8139
8618
  # @option params [required, String] :contact_id
8140
8619
  # The identifier of the contact. This is the identifier of the contact
@@ -8204,8 +8683,12 @@ module Aws::Connect
8204
8683
  # associated with the first interaction with the contact center.
8205
8684
  #
8206
8685
  # @option params [required, String] :instance_id
8207
- # The identifier of the Amazon Connect instance. You can find the
8208
- # instanceId in the ARN of the instance.
8686
+ # The identifier of the Amazon Connect instance. You can [find the
8687
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8688
+ #
8689
+ #
8690
+ #
8691
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8209
8692
  #
8210
8693
  # @option params [required, Hash<String,String>] :attributes
8211
8694
  # The Amazon Connect attributes. These attributes can be accessed in
@@ -8281,8 +8764,12 @@ module Aws::Connect
8281
8764
  # Updates metadata about specified flow.
8282
8765
  #
8283
8766
  # @option params [required, String] :instance_id
8284
- # The identifier of the Amazon Connect instance. You can find the
8285
- # instanceId in the ARN of the instance.
8767
+ # The identifier of the Amazon Connect instance. You can [find the
8768
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8769
+ #
8770
+ #
8771
+ #
8772
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8286
8773
  #
8287
8774
  # @option params [required, String] :contact_flow_id
8288
8775
  # The identifier of the flow.
@@ -8321,8 +8808,12 @@ module Aws::Connect
8321
8808
  # instance.
8322
8809
  #
8323
8810
  # @option params [required, String] :instance_id
8324
- # The identifier of the Amazon Connect instance. You can find the
8325
- # instanceId in the ARN of the instance.
8811
+ # The identifier of the Amazon Connect instance. You can [find the
8812
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8813
+ #
8814
+ #
8815
+ #
8816
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8326
8817
  #
8327
8818
  # @option params [required, String] :contact_flow_module_id
8328
8819
  # The identifier of the flow module.
@@ -8352,8 +8843,12 @@ module Aws::Connect
8352
8843
  # Updates metadata about specified flow module.
8353
8844
  #
8354
8845
  # @option params [required, String] :instance_id
8355
- # The identifier of the Amazon Connect instance. You can find the
8356
- # instanceId in the ARN of the instance.
8846
+ # The identifier of the Amazon Connect instance. You can [find the
8847
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8848
+ #
8849
+ #
8850
+ #
8851
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8357
8852
  #
8358
8853
  # @option params [required, String] :contact_flow_module_id
8359
8854
  # The identifier of the flow module.
@@ -8433,8 +8928,12 @@ module Aws::Connect
8433
8928
  # scheduled.
8434
8929
  #
8435
8930
  # @option params [required, String] :instance_id
8436
- # The identifier of the Amazon Connect instance. You can find the
8437
- # instanceId in the ARN of the instance.
8931
+ # The identifier of the Amazon Connect instance. You can [find the
8932
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8933
+ #
8934
+ #
8935
+ #
8936
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8438
8937
  #
8439
8938
  # @option params [required, String] :contact_id
8440
8939
  # The identifier of the contact.
@@ -8469,8 +8968,12 @@ module Aws::Connect
8469
8968
  # Updates the hours of operation.
8470
8969
  #
8471
8970
  # @option params [required, String] :instance_id
8472
- # The identifier of the Amazon Connect instance. You can find the
8473
- # instanceId in the ARN of the instance.
8971
+ # The identifier of the Amazon Connect instance. You can [find the
8972
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8973
+ #
8974
+ #
8975
+ #
8976
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8474
8977
  #
8475
8978
  # @option params [required, String] :hours_of_operation_id
8476
8979
  # The identifier of the hours of operation.
@@ -8527,8 +9030,12 @@ module Aws::Connect
8527
9030
  # Updates the value for the specified attribute type.
8528
9031
  #
8529
9032
  # @option params [required, String] :instance_id
8530
- # The identifier of the Amazon Connect instance. You can find the
8531
- # instanceId in the ARN of the instance.
9033
+ # The identifier of the Amazon Connect instance. You can [find the
9034
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9035
+ #
9036
+ #
9037
+ #
9038
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8532
9039
  #
8533
9040
  # @option params [required, String] :attribute_type
8534
9041
  # The type of attribute.
@@ -8568,8 +9075,12 @@ module Aws::Connect
8568
9075
  # idempotent.
8569
9076
  #
8570
9077
  # @option params [required, String] :instance_id
8571
- # The identifier of the Amazon Connect instance. You can find the
8572
- # instanceId in the ARN of the instance.
9078
+ # The identifier of the Amazon Connect instance. You can [find the
9079
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9080
+ #
9081
+ #
9082
+ #
9083
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8573
9084
  #
8574
9085
  # @option params [required, String] :association_id
8575
9086
  # The existing association identifier that uniquely identifies the
@@ -8588,7 +9099,7 @@ module Aws::Connect
8588
9099
  # resp = client.update_instance_storage_config({
8589
9100
  # instance_id: "InstanceId", # required
8590
9101
  # 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
9102
+ # 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
9103
  # storage_config: { # required
8593
9104
  # association_id: "AssociationId",
8594
9105
  # storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
@@ -8646,8 +9157,12 @@ module Aws::Connect
8646
9157
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-chat-timeouts.html
8647
9158
  #
8648
9159
  # @option params [required, String] :instance_id
8649
- # The identifier of the Amazon Connect instance. You can find the
8650
- # instanceId in the ARN of the instance.
9160
+ # The identifier of the Amazon Connect instance. You can [find the
9161
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9162
+ #
9163
+ #
9164
+ #
9165
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8651
9166
  #
8652
9167
  # @option params [required, String] :contact_id
8653
9168
  # The identifier of the contact in this instance of Amazon Connect.
@@ -8753,8 +9268,12 @@ module Aws::Connect
8753
9268
  # Updates the hours of operation for the specified queue.
8754
9269
  #
8755
9270
  # @option params [required, String] :instance_id
8756
- # The identifier of the Amazon Connect instance. You can find the
8757
- # instanceId in the ARN of the instance.
9271
+ # The identifier of the Amazon Connect instance. You can [find the
9272
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9273
+ #
9274
+ #
9275
+ #
9276
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8758
9277
  #
8759
9278
  # @option params [required, String] :queue_id
8760
9279
  # The identifier for the queue.
@@ -8788,8 +9307,12 @@ module Aws::Connect
8788
9307
  # considered full.
8789
9308
  #
8790
9309
  # @option params [required, String] :instance_id
8791
- # The identifier of the Amazon Connect instance. You can find the
8792
- # instanceId in the ARN of the instance.
9310
+ # The identifier of the Amazon Connect instance. You can [find the
9311
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9312
+ #
9313
+ #
9314
+ #
9315
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8793
9316
  #
8794
9317
  # @option params [required, String] :queue_id
8795
9318
  # The identifier for the queue.
@@ -8824,8 +9347,12 @@ module Aws::Connect
8824
9347
  # `Description` must be provided.
8825
9348
  #
8826
9349
  # @option params [required, String] :instance_id
8827
- # The identifier of the Amazon Connect instance. You can find the
8828
- # instanceId in the ARN of the instance.
9350
+ # The identifier of the Amazon Connect instance. You can [find the
9351
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9352
+ #
9353
+ #
9354
+ #
9355
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8829
9356
  #
8830
9357
  # @option params [required, String] :queue_id
8831
9358
  # The identifier for the queue.
@@ -8879,8 +9406,12 @@ module Aws::Connect
8879
9406
  # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_OutboundCallerConfig
8880
9407
  #
8881
9408
  # @option params [required, String] :instance_id
8882
- # The identifier of the Amazon Connect instance. You can find the
8883
- # instanceId in the ARN of the instance.
9409
+ # The identifier of the Amazon Connect instance. You can [find the
9410
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9411
+ #
9412
+ #
9413
+ #
9414
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8884
9415
  #
8885
9416
  # @option params [required, String] :queue_id
8886
9417
  # The identifier for the queue.
@@ -8917,8 +9448,12 @@ module Aws::Connect
8917
9448
  # Updates the status of the queue.
8918
9449
  #
8919
9450
  # @option params [required, String] :instance_id
8920
- # The identifier of the Amazon Connect instance. You can find the
8921
- # instanceId in the ARN of the instance.
9451
+ # The identifier of the Amazon Connect instance. You can [find the
9452
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9453
+ #
9454
+ #
9455
+ #
9456
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8922
9457
  #
8923
9458
  # @option params [required, String] :queue_id
8924
9459
  # The identifier for the queue.
@@ -8948,8 +9483,12 @@ module Aws::Connect
8948
9483
  # Updates the configuration settings for the specified quick connect.
8949
9484
  #
8950
9485
  # @option params [required, String] :instance_id
8951
- # The identifier of the Amazon Connect instance. You can find the
8952
- # instanceId in the ARN of the instance.
9486
+ # The identifier of the Amazon Connect instance. You can [find the
9487
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9488
+ #
9489
+ #
9490
+ #
9491
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8953
9492
  #
8954
9493
  # @option params [required, String] :quick_connect_id
8955
9494
  # The identifier for the quick connect.
@@ -8994,8 +9533,12 @@ module Aws::Connect
8994
9533
  # `Description` must be provided.
8995
9534
  #
8996
9535
  # @option params [required, String] :instance_id
8997
- # The identifier of the Amazon Connect instance. You can find the
8998
- # instanceId in the ARN of the instance.
9536
+ # The identifier of the Amazon Connect instance. You can [find the
9537
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9538
+ #
9539
+ #
9540
+ #
9541
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8999
9542
  #
9000
9543
  # @option params [required, String] :quick_connect_id
9001
9544
  # The identifier for the quick connect.
@@ -9030,8 +9573,12 @@ module Aws::Connect
9030
9573
  # Panel (CCP) for a routing profile.
9031
9574
  #
9032
9575
  # @option params [required, String] :instance_id
9033
- # The identifier of the Amazon Connect instance. You can find the
9034
- # instanceId in the ARN of the instance.
9576
+ # The identifier of the Amazon Connect instance. You can [find the
9577
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9578
+ #
9579
+ #
9580
+ #
9581
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9035
9582
  #
9036
9583
  # @option params [required, String] :routing_profile_id
9037
9584
  # The identifier of the routing profile.
@@ -9067,8 +9614,12 @@ module Aws::Connect
9067
9614
  # Updates the default outbound queue of a routing profile.
9068
9615
  #
9069
9616
  # @option params [required, String] :instance_id
9070
- # The identifier of the Amazon Connect instance. You can find the
9071
- # instanceId in the ARN of the instance.
9617
+ # The identifier of the Amazon Connect instance. You can [find the
9618
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9619
+ #
9620
+ #
9621
+ #
9622
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9072
9623
  #
9073
9624
  # @option params [required, String] :routing_profile_id
9074
9625
  # The identifier of the routing profile.
@@ -9100,8 +9651,12 @@ module Aws::Connect
9100
9651
  # `Description` must be provided.
9101
9652
  #
9102
9653
  # @option params [required, String] :instance_id
9103
- # The identifier of the Amazon Connect instance. You can find the
9104
- # instanceId in the ARN of the instance.
9654
+ # The identifier of the Amazon Connect instance. You can [find the
9655
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9656
+ #
9657
+ #
9658
+ #
9659
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9105
9660
  #
9106
9661
  # @option params [required, String] :routing_profile_id
9107
9662
  # The identifier of the routing profile.
@@ -9137,8 +9692,12 @@ module Aws::Connect
9137
9692
  # profile.
9138
9693
  #
9139
9694
  # @option params [required, String] :instance_id
9140
- # The identifier of the Amazon Connect instance. You can find the
9141
- # instanceId in the ARN of the instance.
9695
+ # The identifier of the Amazon Connect instance. You can [find the
9696
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9697
+ #
9698
+ #
9699
+ #
9700
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9142
9701
  #
9143
9702
  # @option params [required, String] :routing_profile_id
9144
9703
  # The identifier of the routing profile.
@@ -9188,8 +9747,12 @@ module Aws::Connect
9188
9747
  # A unique identifier for the rule.
9189
9748
  #
9190
9749
  # @option params [required, String] :instance_id
9191
- # The identifier of the Amazon Connect instance. You can find the
9192
- # instanceId in the ARN of the instance.
9750
+ # The identifier of the Amazon Connect instance. You can [find the
9751
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9752
+ #
9753
+ #
9754
+ #
9755
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9193
9756
  #
9194
9757
  # @option params [required, String] :name
9195
9758
  # The name of the rule. You can change the name only if
@@ -9280,8 +9843,12 @@ module Aws::Connect
9280
9843
  # The identifier for the security profle.
9281
9844
  #
9282
9845
  # @option params [required, String] :instance_id
9283
- # The identifier of the Amazon Connect instance. You can find the
9284
- # instanceId in the ARN of the instance.
9846
+ # The identifier of the Amazon Connect instance. You can [find the
9847
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9848
+ #
9849
+ #
9850
+ #
9851
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9285
9852
  #
9286
9853
  # @option params [Hash<String,String>] :allowed_access_control_tags
9287
9854
  # The list of tags that a security profile uses to restrict access to
@@ -9323,8 +9890,12 @@ module Aws::Connect
9323
9890
  # A unique identifier for the task template.
9324
9891
  #
9325
9892
  # @option params [required, String] :instance_id
9326
- # The identifier of the Amazon Connect instance. You can find the
9327
- # instanceId in the ARN of the instance.
9893
+ # The identifier of the Amazon Connect instance. You can [find the
9894
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9895
+ #
9896
+ #
9897
+ #
9898
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9328
9899
  #
9329
9900
  # @option params [String] :name
9330
9901
  # The name of the task template.
@@ -9511,8 +10082,12 @@ module Aws::Connect
9511
10082
  # The identifier of the user account.
9512
10083
  #
9513
10084
  # @option params [required, String] :instance_id
9514
- # The identifier of the Amazon Connect instance. You can find the
9515
- # instanceId in the ARN of the instance.
10085
+ # The identifier of the Amazon Connect instance. You can [find the
10086
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
10087
+ #
10088
+ #
10089
+ #
10090
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9516
10091
  #
9517
10092
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
9518
10093
  #
@@ -9542,8 +10117,12 @@ module Aws::Connect
9542
10117
  # The identifier of the hierarchy group.
9543
10118
  #
9544
10119
  # @option params [required, String] :instance_id
9545
- # The identifier of the Amazon Connect instance. You can find the
9546
- # instanceId in the ARN of the instance.
10120
+ # The identifier of the Amazon Connect instance. You can [find the
10121
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
10122
+ #
10123
+ #
10124
+ #
10125
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9547
10126
  #
9548
10127
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
9549
10128
  #
@@ -9571,8 +10150,12 @@ module Aws::Connect
9571
10150
  # The hierarchy levels to update.
9572
10151
  #
9573
10152
  # @option params [required, String] :instance_id
9574
- # The identifier of the Amazon Connect instance. You can find the
9575
- # instanceId in the ARN of the instance.
10153
+ # The identifier of the Amazon Connect instance. You can [find the
10154
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
10155
+ #
10156
+ #
10157
+ #
10158
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9576
10159
  #
9577
10160
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
9578
10161
  #
@@ -9629,8 +10212,12 @@ module Aws::Connect
9629
10212
  # The identifier of the user account.
9630
10213
  #
9631
10214
  # @option params [required, String] :instance_id
9632
- # The identifier of the Amazon Connect instance. You can find the
9633
- # instanceId in the ARN of the instance.
10215
+ # The identifier of the Amazon Connect instance. You can [find the
10216
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
10217
+ #
10218
+ #
10219
+ #
10220
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9634
10221
  #
9635
10222
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
9636
10223
  #
@@ -9666,8 +10253,12 @@ module Aws::Connect
9666
10253
  # The identifier of the user account.
9667
10254
  #
9668
10255
  # @option params [required, String] :instance_id
9669
- # The identifier of the Amazon Connect instance. You can find the
9670
- # instanceId in the ARN of the instance.
10256
+ # The identifier of the Amazon Connect instance. You can [find the
10257
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
10258
+ #
10259
+ #
10260
+ #
10261
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9671
10262
  #
9672
10263
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
9673
10264
  #
@@ -9702,8 +10293,12 @@ module Aws::Connect
9702
10293
  # The identifier of the user account.
9703
10294
  #
9704
10295
  # @option params [required, String] :instance_id
9705
- # The identifier of the Amazon Connect instance. You can find the
9706
- # instanceId in the ARN of the instance.
10296
+ # The identifier of the Amazon Connect instance. You can [find the
10297
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
10298
+ #
10299
+ #
10300
+ #
10301
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9707
10302
  #
9708
10303
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
9709
10304
  #
@@ -9733,8 +10328,12 @@ module Aws::Connect
9733
10328
  # The identifier of the user account.
9734
10329
  #
9735
10330
  # @option params [required, String] :instance_id
9736
- # The identifier of the Amazon Connect instance. You can find the
9737
- # instanceId in the ARN of the instance.
10331
+ # The identifier of the Amazon Connect instance. You can [find the
10332
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
10333
+ #
10334
+ #
10335
+ #
10336
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9738
10337
  #
9739
10338
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
9740
10339
  #
@@ -9768,7 +10367,7 @@ module Aws::Connect
9768
10367
  params: params,
9769
10368
  config: config)
9770
10369
  context[:gem_name] = 'aws-sdk-connect'
9771
- context[:gem_version] = '1.96.0'
10370
+ context[:gem_version] = '1.98.0'
9772
10371
  Seahorse::Client::Request.new(handlers, context)
9773
10372
  end
9774
10373