aws-sdk-connect 1.35.0 → 1.40.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-connect.rb +2 -2
- data/lib/aws-sdk-connect/client.rb +2325 -210
- data/lib/aws-sdk-connect/client_api.rb +1419 -32
- data/lib/aws-sdk-connect/errors.rb +32 -0
- data/lib/aws-sdk-connect/types.rb +4965 -1960
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 595e09e01f5b2ac54146a224f2a256116e67b564e77f17cb9fcaac0203df0608
|
4
|
+
data.tar.gz: 16d450458f2710e89166b3e8beda5fb27994f587164f1c1e304bf9106d9e93fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c39a0387f2a1e6fb10ad02a90261337e711bd0965472a84d661f33450279b05efbe32864463c423c9d8e319c23911c23027b9f8c7f140b2bb46cf95aa9aa3a75
|
7
|
+
data.tar.gz: 73dfc9e7aaa4278b7d21d8cabdd79b2eeb5d85ff49ccdc8c5726a93298129fd977c7b895bafbc29e94ad44102589502069514dca265a264cfd4c4bcffc8d28f8
|
data/lib/aws-sdk-connect.rb
CHANGED
@@ -28,7 +28,7 @@ require_relative 'aws-sdk-connect/customizations'
|
|
28
28
|
# structure.
|
29
29
|
#
|
30
30
|
# connect = Aws::Connect::Client.new
|
31
|
-
# resp = connect.
|
31
|
+
# resp = connect.associate_approved_origin(params)
|
32
32
|
#
|
33
33
|
# See {Client} for more information.
|
34
34
|
#
|
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-connect/customizations'
|
|
48
48
|
# @!group service
|
49
49
|
module Aws::Connect
|
50
50
|
|
51
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.40.0'
|
52
52
|
|
53
53
|
end
|
@@ -327,6 +327,204 @@ module Aws::Connect
|
|
327
327
|
|
328
328
|
# @!group API Operations
|
329
329
|
|
330
|
+
# This API is in preview release for Amazon Connect and is subject to
|
331
|
+
# change.
|
332
|
+
#
|
333
|
+
# Associates an approved origin to an Amazon Connect instance.
|
334
|
+
#
|
335
|
+
# @option params [required, String] :instance_id
|
336
|
+
# The identifier of the Amazon Connect instance.
|
337
|
+
#
|
338
|
+
# @option params [required, String] :origin
|
339
|
+
# The domain to add to your allow list.
|
340
|
+
#
|
341
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
342
|
+
#
|
343
|
+
# @example Request syntax with placeholder values
|
344
|
+
#
|
345
|
+
# resp = client.associate_approved_origin({
|
346
|
+
# instance_id: "InstanceId", # required
|
347
|
+
# origin: "Origin", # required
|
348
|
+
# })
|
349
|
+
#
|
350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateApprovedOrigin AWS API Documentation
|
351
|
+
#
|
352
|
+
# @overload associate_approved_origin(params = {})
|
353
|
+
# @param [Hash] params ({})
|
354
|
+
def associate_approved_origin(params = {}, options = {})
|
355
|
+
req = build_request(:associate_approved_origin, params)
|
356
|
+
req.send_request(options)
|
357
|
+
end
|
358
|
+
|
359
|
+
# This API is in preview release for Amazon Connect and is subject to
|
360
|
+
# change.
|
361
|
+
#
|
362
|
+
# Associates a storage resource type for the first time. You can only
|
363
|
+
# associate one type of storage configuration in a single call. This
|
364
|
+
# means, for example, that you can't define an instance with multiple
|
365
|
+
# S3 buckets for storing chat transcripts.
|
366
|
+
#
|
367
|
+
# This API does not create a resource that doesn't exist. It only
|
368
|
+
# associates it to the instance. Ensure that the resource being
|
369
|
+
# specified in the storage configuration, like an S3 bucket, exists when
|
370
|
+
# being used for association.
|
371
|
+
#
|
372
|
+
# @option params [required, String] :instance_id
|
373
|
+
# The identifier of the Amazon Connect instance.
|
374
|
+
#
|
375
|
+
# @option params [required, String] :resource_type
|
376
|
+
# A valid resource type.
|
377
|
+
#
|
378
|
+
# @option params [required, Types::InstanceStorageConfig] :storage_config
|
379
|
+
# A valid storage type.
|
380
|
+
#
|
381
|
+
# @return [Types::AssociateInstanceStorageConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
382
|
+
#
|
383
|
+
# * {Types::AssociateInstanceStorageConfigResponse#association_id #association_id} => String
|
384
|
+
#
|
385
|
+
# @example Request syntax with placeholder values
|
386
|
+
#
|
387
|
+
# resp = client.associate_instance_storage_config({
|
388
|
+
# instance_id: "InstanceId", # required
|
389
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
390
|
+
# storage_config: { # required
|
391
|
+
# association_id: "AssociationId",
|
392
|
+
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
393
|
+
# s3_config: {
|
394
|
+
# bucket_name: "BucketName", # required
|
395
|
+
# bucket_prefix: "Prefix", # required
|
396
|
+
# encryption_config: {
|
397
|
+
# encryption_type: "KMS", # required, accepts KMS
|
398
|
+
# key_id: "KeyId", # required
|
399
|
+
# },
|
400
|
+
# },
|
401
|
+
# kinesis_video_stream_config: {
|
402
|
+
# prefix: "Prefix", # required
|
403
|
+
# retention_period_hours: 1, # required
|
404
|
+
# encryption_config: { # required
|
405
|
+
# encryption_type: "KMS", # required, accepts KMS
|
406
|
+
# key_id: "KeyId", # required
|
407
|
+
# },
|
408
|
+
# },
|
409
|
+
# kinesis_stream_config: {
|
410
|
+
# stream_arn: "ARN", # required
|
411
|
+
# },
|
412
|
+
# kinesis_firehose_config: {
|
413
|
+
# firehose_arn: "ARN", # required
|
414
|
+
# },
|
415
|
+
# },
|
416
|
+
# })
|
417
|
+
#
|
418
|
+
# @example Response structure
|
419
|
+
#
|
420
|
+
# resp.association_id #=> String
|
421
|
+
#
|
422
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateInstanceStorageConfig AWS API Documentation
|
423
|
+
#
|
424
|
+
# @overload associate_instance_storage_config(params = {})
|
425
|
+
# @param [Hash] params ({})
|
426
|
+
def associate_instance_storage_config(params = {}, options = {})
|
427
|
+
req = build_request(:associate_instance_storage_config, params)
|
428
|
+
req.send_request(options)
|
429
|
+
end
|
430
|
+
|
431
|
+
# This API is in preview release for Amazon Connect and is subject to
|
432
|
+
# change.
|
433
|
+
#
|
434
|
+
# Allows the specified Amazon Connect instance to access the specified
|
435
|
+
# Lambda function.
|
436
|
+
#
|
437
|
+
# @option params [required, String] :instance_id
|
438
|
+
# The identifier of the Amazon Connect instance.
|
439
|
+
#
|
440
|
+
# @option params [required, String] :function_arn
|
441
|
+
# The Amazon Resource Name (ARN) for the Lambda function being
|
442
|
+
# associated. Maximum number of characters allowed is 140.
|
443
|
+
#
|
444
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
445
|
+
#
|
446
|
+
# @example Request syntax with placeholder values
|
447
|
+
#
|
448
|
+
# resp = client.associate_lambda_function({
|
449
|
+
# instance_id: "InstanceId", # required
|
450
|
+
# function_arn: "FunctionArn", # required
|
451
|
+
# })
|
452
|
+
#
|
453
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateLambdaFunction AWS API Documentation
|
454
|
+
#
|
455
|
+
# @overload associate_lambda_function(params = {})
|
456
|
+
# @param [Hash] params ({})
|
457
|
+
def associate_lambda_function(params = {}, options = {})
|
458
|
+
req = build_request(:associate_lambda_function, params)
|
459
|
+
req.send_request(options)
|
460
|
+
end
|
461
|
+
|
462
|
+
# This API is in preview release for Amazon Connect and is subject to
|
463
|
+
# change.
|
464
|
+
#
|
465
|
+
# Allows the specified Amazon Connect instance to access the specified
|
466
|
+
# Amazon Lex bot.
|
467
|
+
#
|
468
|
+
# @option params [required, String] :instance_id
|
469
|
+
# The identifier of the Amazon Connect instance.
|
470
|
+
#
|
471
|
+
# @option params [required, Types::LexBot] :lex_bot
|
472
|
+
# The Amazon Lex box to associate with the instance.
|
473
|
+
#
|
474
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
475
|
+
#
|
476
|
+
# @example Request syntax with placeholder values
|
477
|
+
#
|
478
|
+
# resp = client.associate_lex_bot({
|
479
|
+
# instance_id: "InstanceId", # required
|
480
|
+
# lex_bot: { # required
|
481
|
+
# name: "BotName",
|
482
|
+
# lex_region: "LexRegion",
|
483
|
+
# },
|
484
|
+
# })
|
485
|
+
#
|
486
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateLexBot AWS API Documentation
|
487
|
+
#
|
488
|
+
# @overload associate_lex_bot(params = {})
|
489
|
+
# @param [Hash] params ({})
|
490
|
+
def associate_lex_bot(params = {}, options = {})
|
491
|
+
req = build_request(:associate_lex_bot, params)
|
492
|
+
req.send_request(options)
|
493
|
+
end
|
494
|
+
|
495
|
+
# This API is in preview release for Amazon Connect and is subject to
|
496
|
+
# change.
|
497
|
+
#
|
498
|
+
# Associates a set of quick connects with a queue.
|
499
|
+
#
|
500
|
+
# @option params [required, String] :instance_id
|
501
|
+
# The identifier of the Amazon Connect instance.
|
502
|
+
#
|
503
|
+
# @option params [required, String] :queue_id
|
504
|
+
# The identifier for the queue.
|
505
|
+
#
|
506
|
+
# @option params [required, Array<String>] :quick_connect_ids
|
507
|
+
# The quick connects to associate with this queue.
|
508
|
+
#
|
509
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
510
|
+
#
|
511
|
+
# @example Request syntax with placeholder values
|
512
|
+
#
|
513
|
+
# resp = client.associate_queue_quick_connects({
|
514
|
+
# instance_id: "InstanceId", # required
|
515
|
+
# queue_id: "QueueId", # required
|
516
|
+
# quick_connect_ids: ["QuickConnectId"], # required
|
517
|
+
# })
|
518
|
+
#
|
519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateQueueQuickConnects AWS API Documentation
|
520
|
+
#
|
521
|
+
# @overload associate_queue_quick_connects(params = {})
|
522
|
+
# @param [Hash] params ({})
|
523
|
+
def associate_queue_quick_connects(params = {}, options = {})
|
524
|
+
req = build_request(:associate_queue_quick_connects, params)
|
525
|
+
req.send_request(options)
|
526
|
+
end
|
527
|
+
|
330
528
|
# Associates a set of queues with a routing profile.
|
331
529
|
#
|
332
530
|
# @option params [required, String] :instance_id
|
@@ -349,7 +547,7 @@ module Aws::Connect
|
|
349
547
|
# {
|
350
548
|
# queue_reference: { # required
|
351
549
|
# queue_id: "QueueId", # required
|
352
|
-
# channel: "VOICE", # required, accepts VOICE, CHAT
|
550
|
+
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK
|
353
551
|
# },
|
354
552
|
# priority: 1, # required
|
355
553
|
# delay: 1, # required
|
@@ -366,6 +564,41 @@ module Aws::Connect
|
|
366
564
|
req.send_request(options)
|
367
565
|
end
|
368
566
|
|
567
|
+
# This API is in preview release for Amazon Connect and is subject to
|
568
|
+
# change.
|
569
|
+
#
|
570
|
+
# Associates a security key to the instance.
|
571
|
+
#
|
572
|
+
# @option params [required, String] :instance_id
|
573
|
+
# The identifier of the Amazon Connect instance.
|
574
|
+
#
|
575
|
+
# @option params [required, String] :key
|
576
|
+
# A valid security key in PEM format.
|
577
|
+
#
|
578
|
+
# @return [Types::AssociateSecurityKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
579
|
+
#
|
580
|
+
# * {Types::AssociateSecurityKeyResponse#association_id #association_id} => String
|
581
|
+
#
|
582
|
+
# @example Request syntax with placeholder values
|
583
|
+
#
|
584
|
+
# resp = client.associate_security_key({
|
585
|
+
# instance_id: "InstanceId", # required
|
586
|
+
# key: "PEM", # required
|
587
|
+
# })
|
588
|
+
#
|
589
|
+
# @example Response structure
|
590
|
+
#
|
591
|
+
# resp.association_id #=> String
|
592
|
+
#
|
593
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateSecurityKey AWS API Documentation
|
594
|
+
#
|
595
|
+
# @overload associate_security_key(params = {})
|
596
|
+
# @param [Hash] params ({})
|
597
|
+
def associate_security_key(params = {}, options = {})
|
598
|
+
req = build_request(:associate_security_key, params)
|
599
|
+
req.send_request(options)
|
600
|
+
end
|
601
|
+
|
369
602
|
# Creates a contact flow for the specified Amazon Connect instance.
|
370
603
|
#
|
371
604
|
# You can also create and update contact flows using the [Amazon Connect
|
@@ -431,6 +664,247 @@ module Aws::Connect
|
|
431
664
|
req.send_request(options)
|
432
665
|
end
|
433
666
|
|
667
|
+
# This API is in preview release for Amazon Connect and is subject to
|
668
|
+
# change.
|
669
|
+
#
|
670
|
+
# Initiates an Amazon Connect instance with all the supported channels
|
671
|
+
# enabled. It does not attach any storage, such as Amazon Simple Storage
|
672
|
+
# Service (Amazon S3) or Amazon Kinesis. It also does not allow for any
|
673
|
+
# configurations on features, such as Contact Lens for Amazon Connect.
|
674
|
+
#
|
675
|
+
# @option params [String] :client_token
|
676
|
+
# The idempotency token.
|
677
|
+
#
|
678
|
+
# @option params [required, String] :identity_management_type
|
679
|
+
# The type of identity management for your Amazon Connect users.
|
680
|
+
#
|
681
|
+
# @option params [String] :instance_alias
|
682
|
+
# The name for your instance.
|
683
|
+
#
|
684
|
+
# @option params [String] :directory_id
|
685
|
+
# The identifier for the directory.
|
686
|
+
#
|
687
|
+
# @option params [required, Boolean] :inbound_calls_enabled
|
688
|
+
# Your contact center handles incoming contacts.
|
689
|
+
#
|
690
|
+
# @option params [required, Boolean] :outbound_calls_enabled
|
691
|
+
# Your contact center allows outbound calls.
|
692
|
+
#
|
693
|
+
# @return [Types::CreateInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
694
|
+
#
|
695
|
+
# * {Types::CreateInstanceResponse#id #id} => String
|
696
|
+
# * {Types::CreateInstanceResponse#arn #arn} => String
|
697
|
+
#
|
698
|
+
# @example Request syntax with placeholder values
|
699
|
+
#
|
700
|
+
# resp = client.create_instance({
|
701
|
+
# client_token: "ClientToken",
|
702
|
+
# identity_management_type: "SAML", # required, accepts SAML, CONNECT_MANAGED, EXISTING_DIRECTORY
|
703
|
+
# instance_alias: "DirectoryAlias",
|
704
|
+
# directory_id: "DirectoryId",
|
705
|
+
# inbound_calls_enabled: false, # required
|
706
|
+
# outbound_calls_enabled: false, # required
|
707
|
+
# })
|
708
|
+
#
|
709
|
+
# @example Response structure
|
710
|
+
#
|
711
|
+
# resp.id #=> String
|
712
|
+
# resp.arn #=> String
|
713
|
+
#
|
714
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateInstance AWS API Documentation
|
715
|
+
#
|
716
|
+
# @overload create_instance(params = {})
|
717
|
+
# @param [Hash] params ({})
|
718
|
+
def create_instance(params = {}, options = {})
|
719
|
+
req = build_request(:create_instance, params)
|
720
|
+
req.send_request(options)
|
721
|
+
end
|
722
|
+
|
723
|
+
# This API is in preview release for Amazon Connect and is subject to
|
724
|
+
# change.
|
725
|
+
#
|
726
|
+
# Create an AppIntegration association with an Amazon Connect instance.
|
727
|
+
#
|
728
|
+
# @option params [required, String] :instance_id
|
729
|
+
# The identifier of the Amazon Connect instance.
|
730
|
+
#
|
731
|
+
# @option params [required, String] :integration_type
|
732
|
+
# The type of information to be ingested.
|
733
|
+
#
|
734
|
+
# @option params [required, String] :integration_arn
|
735
|
+
# The Amazon Resource Name (ARN) of the integration.
|
736
|
+
#
|
737
|
+
# @option params [required, String] :source_application_url
|
738
|
+
# The URL for the external application.
|
739
|
+
#
|
740
|
+
# @option params [required, String] :source_application_name
|
741
|
+
# The name of the external application.
|
742
|
+
#
|
743
|
+
# @option params [required, String] :source_type
|
744
|
+
# The type of the data source.
|
745
|
+
#
|
746
|
+
# @return [Types::CreateIntegrationAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
747
|
+
#
|
748
|
+
# * {Types::CreateIntegrationAssociationResponse#integration_association_id #integration_association_id} => String
|
749
|
+
# * {Types::CreateIntegrationAssociationResponse#integration_association_arn #integration_association_arn} => String
|
750
|
+
#
|
751
|
+
# @example Request syntax with placeholder values
|
752
|
+
#
|
753
|
+
# resp = client.create_integration_association({
|
754
|
+
# instance_id: "InstanceId", # required
|
755
|
+
# integration_type: "EVENT", # required, accepts EVENT
|
756
|
+
# integration_arn: "ARN", # required
|
757
|
+
# source_application_url: "URI", # required
|
758
|
+
# source_application_name: "SourceApplicationName", # required
|
759
|
+
# source_type: "SALESFORCE", # required, accepts SALESFORCE, ZENDESK
|
760
|
+
# })
|
761
|
+
#
|
762
|
+
# @example Response structure
|
763
|
+
#
|
764
|
+
# resp.integration_association_id #=> String
|
765
|
+
# resp.integration_association_arn #=> String
|
766
|
+
#
|
767
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateIntegrationAssociation AWS API Documentation
|
768
|
+
#
|
769
|
+
# @overload create_integration_association(params = {})
|
770
|
+
# @param [Hash] params ({})
|
771
|
+
def create_integration_association(params = {}, options = {})
|
772
|
+
req = build_request(:create_integration_association, params)
|
773
|
+
req.send_request(options)
|
774
|
+
end
|
775
|
+
|
776
|
+
# This API is in preview release for Amazon Connect and is subject to
|
777
|
+
# change.
|
778
|
+
#
|
779
|
+
# Creates a new queue for the specified Amazon Connect instance.
|
780
|
+
#
|
781
|
+
# @option params [required, String] :instance_id
|
782
|
+
# The identifier of the Amazon Connect instance.
|
783
|
+
#
|
784
|
+
# @option params [required, String] :name
|
785
|
+
# The name of the queue.
|
786
|
+
#
|
787
|
+
# @option params [String] :description
|
788
|
+
# The description of the queue.
|
789
|
+
#
|
790
|
+
# @option params [Types::OutboundCallerConfig] :outbound_caller_config
|
791
|
+
# The outbound caller ID name, number, and outbound whisper flow.
|
792
|
+
#
|
793
|
+
# @option params [required, String] :hours_of_operation_id
|
794
|
+
# The identifier for the hours of operation.
|
795
|
+
#
|
796
|
+
# @option params [Integer] :max_contacts
|
797
|
+
# The maximum number of contacts that can be in the queue before it is
|
798
|
+
# considered full.
|
799
|
+
#
|
800
|
+
# @option params [Array<String>] :quick_connect_ids
|
801
|
+
# The quick connects available to agents who are working the queue.
|
802
|
+
#
|
803
|
+
# @option params [Hash<String,String>] :tags
|
804
|
+
# One or more tags.
|
805
|
+
#
|
806
|
+
# @return [Types::CreateQueueResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
807
|
+
#
|
808
|
+
# * {Types::CreateQueueResponse#queue_arn #queue_arn} => String
|
809
|
+
# * {Types::CreateQueueResponse#queue_id #queue_id} => String
|
810
|
+
#
|
811
|
+
# @example Request syntax with placeholder values
|
812
|
+
#
|
813
|
+
# resp = client.create_queue({
|
814
|
+
# instance_id: "InstanceId", # required
|
815
|
+
# name: "CommonNameLength127", # required
|
816
|
+
# description: "QueueDescription",
|
817
|
+
# outbound_caller_config: {
|
818
|
+
# outbound_caller_id_name: "OutboundCallerIdName",
|
819
|
+
# outbound_caller_id_number_id: "PhoneNumberId",
|
820
|
+
# outbound_flow_id: "ContactFlowId",
|
821
|
+
# },
|
822
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
823
|
+
# max_contacts: 1,
|
824
|
+
# quick_connect_ids: ["QuickConnectId"],
|
825
|
+
# tags: {
|
826
|
+
# "TagKey" => "TagValue",
|
827
|
+
# },
|
828
|
+
# })
|
829
|
+
#
|
830
|
+
# @example Response structure
|
831
|
+
#
|
832
|
+
# resp.queue_arn #=> String
|
833
|
+
# resp.queue_id #=> String
|
834
|
+
#
|
835
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQueue AWS API Documentation
|
836
|
+
#
|
837
|
+
# @overload create_queue(params = {})
|
838
|
+
# @param [Hash] params ({})
|
839
|
+
def create_queue(params = {}, options = {})
|
840
|
+
req = build_request(:create_queue, params)
|
841
|
+
req.send_request(options)
|
842
|
+
end
|
843
|
+
|
844
|
+
# This API is in preview release for Amazon Connect and is subject to
|
845
|
+
# change.
|
846
|
+
#
|
847
|
+
# Creates a quick connect for the specified Amazon Connect instance.
|
848
|
+
#
|
849
|
+
# @option params [required, String] :instance_id
|
850
|
+
# The identifier of the Amazon Connect instance.
|
851
|
+
#
|
852
|
+
# @option params [required, String] :name
|
853
|
+
# The name of the quick connect.
|
854
|
+
#
|
855
|
+
# @option params [String] :description
|
856
|
+
# The description of the quick connect.
|
857
|
+
#
|
858
|
+
# @option params [required, Types::QuickConnectConfig] :quick_connect_config
|
859
|
+
# Configuration settings for the quick connect.
|
860
|
+
#
|
861
|
+
# @option params [Hash<String,String>] :tags
|
862
|
+
# One or more tags.
|
863
|
+
#
|
864
|
+
# @return [Types::CreateQuickConnectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
865
|
+
#
|
866
|
+
# * {Types::CreateQuickConnectResponse#quick_connect_arn #quick_connect_arn} => String
|
867
|
+
# * {Types::CreateQuickConnectResponse#quick_connect_id #quick_connect_id} => String
|
868
|
+
#
|
869
|
+
# @example Request syntax with placeholder values
|
870
|
+
#
|
871
|
+
# resp = client.create_quick_connect({
|
872
|
+
# instance_id: "InstanceId", # required
|
873
|
+
# name: "QuickConnectName", # required
|
874
|
+
# description: "QuickConnectDescription",
|
875
|
+
# quick_connect_config: { # required
|
876
|
+
# quick_connect_type: "USER", # required, accepts USER, QUEUE, PHONE_NUMBER
|
877
|
+
# user_config: {
|
878
|
+
# user_id: "UserId", # required
|
879
|
+
# contact_flow_id: "ContactFlowId", # required
|
880
|
+
# },
|
881
|
+
# queue_config: {
|
882
|
+
# queue_id: "QueueId", # required
|
883
|
+
# contact_flow_id: "ContactFlowId", # required
|
884
|
+
# },
|
885
|
+
# phone_config: {
|
886
|
+
# phone_number: "PhoneNumber", # required
|
887
|
+
# },
|
888
|
+
# },
|
889
|
+
# tags: {
|
890
|
+
# "TagKey" => "TagValue",
|
891
|
+
# },
|
892
|
+
# })
|
893
|
+
#
|
894
|
+
# @example Response structure
|
895
|
+
#
|
896
|
+
# resp.quick_connect_arn #=> String
|
897
|
+
# resp.quick_connect_id #=> String
|
898
|
+
#
|
899
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQuickConnect AWS API Documentation
|
900
|
+
#
|
901
|
+
# @overload create_quick_connect(params = {})
|
902
|
+
# @param [Hash] params ({})
|
903
|
+
def create_quick_connect(params = {}, options = {})
|
904
|
+
req = build_request(:create_quick_connect, params)
|
905
|
+
req.send_request(options)
|
906
|
+
end
|
907
|
+
|
434
908
|
# Creates a new routing profile.
|
435
909
|
#
|
436
910
|
# @option params [required, String] :instance_id
|
@@ -448,11 +922,11 @@ module Aws::Connect
|
|
448
922
|
#
|
449
923
|
# @option params [Array<Types::RoutingProfileQueueConfig>] :queue_configs
|
450
924
|
# The inbound queues associated with the routing profile. If no queue is
|
451
|
-
# added, the agent can only
|
925
|
+
# added, the agent can make only outbound calls.
|
452
926
|
#
|
453
927
|
# @option params [required, Array<Types::MediaConcurrency>] :media_concurrencies
|
454
|
-
# The channels agents can handle in the Contact Control Panel (CCP)
|
455
|
-
# this routing profile.
|
928
|
+
# The channels that agents can handle in the Contact Control Panel (CCP)
|
929
|
+
# for this routing profile.
|
456
930
|
#
|
457
931
|
# @option params [Hash<String,String>] :tags
|
458
932
|
# One or more tags.
|
@@ -473,7 +947,7 @@ module Aws::Connect
|
|
473
947
|
# {
|
474
948
|
# queue_reference: { # required
|
475
949
|
# queue_id: "QueueId", # required
|
476
|
-
# channel: "VOICE", # required, accepts VOICE, CHAT
|
950
|
+
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK
|
477
951
|
# },
|
478
952
|
# priority: 1, # required
|
479
953
|
# delay: 1, # required
|
@@ -481,7 +955,7 @@ module Aws::Connect
|
|
481
955
|
# ],
|
482
956
|
# media_concurrencies: [ # required
|
483
957
|
# {
|
484
|
-
# channel: "VOICE", # required, accepts VOICE, CHAT
|
958
|
+
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK
|
485
959
|
# concurrency: 1, # required
|
486
960
|
# },
|
487
961
|
# ],
|
@@ -504,20 +978,63 @@ module Aws::Connect
|
|
504
978
|
req.send_request(options)
|
505
979
|
end
|
506
980
|
|
507
|
-
#
|
981
|
+
# This API is in preview release for Amazon Connect and is subject to
|
982
|
+
# change.
|
508
983
|
#
|
509
|
-
#
|
510
|
-
# Connect console, see [Add Users][1] in the *Amazon Connect
|
511
|
-
# Administrator Guide*.
|
984
|
+
# Creates a use case for an AppIntegration association.
|
512
985
|
#
|
986
|
+
# @option params [required, String] :instance_id
|
987
|
+
# The identifier of the Amazon Connect instance.
|
513
988
|
#
|
989
|
+
# @option params [required, String] :integration_association_id
|
990
|
+
# The identifier for the AppIntegration association.
|
514
991
|
#
|
515
|
-
# [
|
992
|
+
# @option params [required, String] :use_case_type
|
993
|
+
# The type of use case to associate to the AppIntegration association.
|
994
|
+
# Each AppIntegration association can have only one of each use case
|
995
|
+
# type.
|
516
996
|
#
|
517
|
-
# @
|
518
|
-
#
|
519
|
-
#
|
520
|
-
#
|
997
|
+
# @return [Types::CreateUseCaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
998
|
+
#
|
999
|
+
# * {Types::CreateUseCaseResponse#use_case_id #use_case_id} => String
|
1000
|
+
# * {Types::CreateUseCaseResponse#use_case_arn #use_case_arn} => String
|
1001
|
+
#
|
1002
|
+
# @example Request syntax with placeholder values
|
1003
|
+
#
|
1004
|
+
# resp = client.create_use_case({
|
1005
|
+
# instance_id: "InstanceId", # required
|
1006
|
+
# integration_association_id: "IntegrationAssociationId", # required
|
1007
|
+
# use_case_type: "RULES_EVALUATION", # required, accepts RULES_EVALUATION
|
1008
|
+
# })
|
1009
|
+
#
|
1010
|
+
# @example Response structure
|
1011
|
+
#
|
1012
|
+
# resp.use_case_id #=> String
|
1013
|
+
# resp.use_case_arn #=> String
|
1014
|
+
#
|
1015
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUseCase AWS API Documentation
|
1016
|
+
#
|
1017
|
+
# @overload create_use_case(params = {})
|
1018
|
+
# @param [Hash] params ({})
|
1019
|
+
def create_use_case(params = {}, options = {})
|
1020
|
+
req = build_request(:create_use_case, params)
|
1021
|
+
req.send_request(options)
|
1022
|
+
end
|
1023
|
+
|
1024
|
+
# Creates a user account for the specified Amazon Connect instance.
|
1025
|
+
#
|
1026
|
+
# For information about how to create user accounts using the Amazon
|
1027
|
+
# Connect console, see [Add Users][1] in the *Amazon Connect
|
1028
|
+
# Administrator Guide*.
|
1029
|
+
#
|
1030
|
+
#
|
1031
|
+
#
|
1032
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/user-management.html
|
1033
|
+
#
|
1034
|
+
# @option params [required, String] :username
|
1035
|
+
# The user name for the account. For instances not using SAML for
|
1036
|
+
# identity management, the user name can include up to 20 characters. If
|
1037
|
+
# you are using SAML for identity management, the user name can include
|
521
1038
|
# up to 64 characters from \[a-zA-Z0-9\_-.\\@\]+.
|
522
1039
|
#
|
523
1040
|
# @option params [String] :password
|
@@ -644,6 +1161,123 @@ module Aws::Connect
|
|
644
1161
|
req.send_request(options)
|
645
1162
|
end
|
646
1163
|
|
1164
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1165
|
+
# change.
|
1166
|
+
#
|
1167
|
+
# Deletes the Amazon Connect instance.
|
1168
|
+
#
|
1169
|
+
# @option params [required, String] :instance_id
|
1170
|
+
# The identifier of the Amazon Connect instance.
|
1171
|
+
#
|
1172
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1173
|
+
#
|
1174
|
+
# @example Request syntax with placeholder values
|
1175
|
+
#
|
1176
|
+
# resp = client.delete_instance({
|
1177
|
+
# instance_id: "InstanceId", # required
|
1178
|
+
# })
|
1179
|
+
#
|
1180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteInstance AWS API Documentation
|
1181
|
+
#
|
1182
|
+
# @overload delete_instance(params = {})
|
1183
|
+
# @param [Hash] params ({})
|
1184
|
+
def delete_instance(params = {}, options = {})
|
1185
|
+
req = build_request(:delete_instance, params)
|
1186
|
+
req.send_request(options)
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1190
|
+
# change.
|
1191
|
+
#
|
1192
|
+
# Deletes an AppIntegration association from an Amazon Connect instance.
|
1193
|
+
# The association must not have any use cases associated with it.
|
1194
|
+
#
|
1195
|
+
# @option params [required, String] :instance_id
|
1196
|
+
# The identifier of the Amazon Connect instance.
|
1197
|
+
#
|
1198
|
+
# @option params [required, String] :integration_association_id
|
1199
|
+
# The identifier for the AppIntegration association.
|
1200
|
+
#
|
1201
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1202
|
+
#
|
1203
|
+
# @example Request syntax with placeholder values
|
1204
|
+
#
|
1205
|
+
# resp = client.delete_integration_association({
|
1206
|
+
# instance_id: "InstanceId", # required
|
1207
|
+
# integration_association_id: "IntegrationAssociationId", # required
|
1208
|
+
# })
|
1209
|
+
#
|
1210
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteIntegrationAssociation AWS API Documentation
|
1211
|
+
#
|
1212
|
+
# @overload delete_integration_association(params = {})
|
1213
|
+
# @param [Hash] params ({})
|
1214
|
+
def delete_integration_association(params = {}, options = {})
|
1215
|
+
req = build_request(:delete_integration_association, params)
|
1216
|
+
req.send_request(options)
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1220
|
+
# change.
|
1221
|
+
#
|
1222
|
+
# Deletes a quick connect.
|
1223
|
+
#
|
1224
|
+
# @option params [required, String] :instance_id
|
1225
|
+
# The identifier of the Amazon Connect instance.
|
1226
|
+
#
|
1227
|
+
# @option params [required, String] :quick_connect_id
|
1228
|
+
# The identifier for the quick connect.
|
1229
|
+
#
|
1230
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1231
|
+
#
|
1232
|
+
# @example Request syntax with placeholder values
|
1233
|
+
#
|
1234
|
+
# resp = client.delete_quick_connect({
|
1235
|
+
# instance_id: "InstanceId", # required
|
1236
|
+
# quick_connect_id: "QuickConnectId", # required
|
1237
|
+
# })
|
1238
|
+
#
|
1239
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteQuickConnect AWS API Documentation
|
1240
|
+
#
|
1241
|
+
# @overload delete_quick_connect(params = {})
|
1242
|
+
# @param [Hash] params ({})
|
1243
|
+
def delete_quick_connect(params = {}, options = {})
|
1244
|
+
req = build_request(:delete_quick_connect, params)
|
1245
|
+
req.send_request(options)
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1249
|
+
# change.
|
1250
|
+
#
|
1251
|
+
# Deletes a use case from an AppIntegration association.
|
1252
|
+
#
|
1253
|
+
# @option params [required, String] :instance_id
|
1254
|
+
# The identifier of the Amazon Connect instance.
|
1255
|
+
#
|
1256
|
+
# @option params [required, String] :integration_association_id
|
1257
|
+
# The identifier for the AppIntegration association.
|
1258
|
+
#
|
1259
|
+
# @option params [required, String] :use_case_id
|
1260
|
+
# The identifier for the use case.
|
1261
|
+
#
|
1262
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1263
|
+
#
|
1264
|
+
# @example Request syntax with placeholder values
|
1265
|
+
#
|
1266
|
+
# resp = client.delete_use_case({
|
1267
|
+
# instance_id: "InstanceId", # required
|
1268
|
+
# integration_association_id: "IntegrationAssociationId", # required
|
1269
|
+
# use_case_id: "UseCaseId", # required
|
1270
|
+
# })
|
1271
|
+
#
|
1272
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteUseCase AWS API Documentation
|
1273
|
+
#
|
1274
|
+
# @overload delete_use_case(params = {})
|
1275
|
+
# @param [Hash] params ({})
|
1276
|
+
def delete_use_case(params = {}, options = {})
|
1277
|
+
req = build_request(:delete_use_case, params)
|
1278
|
+
req.send_request(options)
|
1279
|
+
end
|
1280
|
+
|
647
1281
|
# Deletes a user account from the specified Amazon Connect instance.
|
648
1282
|
#
|
649
1283
|
# For information about what happens to a user's data when their
|
@@ -751,6 +1385,280 @@ module Aws::Connect
|
|
751
1385
|
req.send_request(options)
|
752
1386
|
end
|
753
1387
|
|
1388
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1389
|
+
# change.
|
1390
|
+
#
|
1391
|
+
# Describes the hours of operation.
|
1392
|
+
#
|
1393
|
+
# @option params [required, String] :instance_id
|
1394
|
+
# The identifier of the Amazon Connect instance.
|
1395
|
+
#
|
1396
|
+
# @option params [required, String] :hours_of_operation_id
|
1397
|
+
# The identifier for the hours of operation.
|
1398
|
+
#
|
1399
|
+
# @return [Types::DescribeHoursOfOperationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1400
|
+
#
|
1401
|
+
# * {Types::DescribeHoursOfOperationResponse#hours_of_operation #hours_of_operation} => Types::HoursOfOperation
|
1402
|
+
#
|
1403
|
+
# @example Request syntax with placeholder values
|
1404
|
+
#
|
1405
|
+
# resp = client.describe_hours_of_operation({
|
1406
|
+
# instance_id: "InstanceId", # required
|
1407
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
1408
|
+
# })
|
1409
|
+
#
|
1410
|
+
# @example Response structure
|
1411
|
+
#
|
1412
|
+
# resp.hours_of_operation.hours_of_operation_id #=> String
|
1413
|
+
# resp.hours_of_operation.hours_of_operation_arn #=> String
|
1414
|
+
# resp.hours_of_operation.name #=> String
|
1415
|
+
# resp.hours_of_operation.description #=> String
|
1416
|
+
# resp.hours_of_operation.time_zone #=> String
|
1417
|
+
# resp.hours_of_operation.config #=> Array
|
1418
|
+
# resp.hours_of_operation.config[0].day #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
|
1419
|
+
# resp.hours_of_operation.config[0].start_time.hours #=> Integer
|
1420
|
+
# resp.hours_of_operation.config[0].start_time.minutes #=> Integer
|
1421
|
+
# resp.hours_of_operation.config[0].end_time.hours #=> Integer
|
1422
|
+
# resp.hours_of_operation.config[0].end_time.minutes #=> Integer
|
1423
|
+
# resp.hours_of_operation.tags #=> Hash
|
1424
|
+
# resp.hours_of_operation.tags["TagKey"] #=> String
|
1425
|
+
#
|
1426
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeHoursOfOperation AWS API Documentation
|
1427
|
+
#
|
1428
|
+
# @overload describe_hours_of_operation(params = {})
|
1429
|
+
# @param [Hash] params ({})
|
1430
|
+
def describe_hours_of_operation(params = {}, options = {})
|
1431
|
+
req = build_request(:describe_hours_of_operation, params)
|
1432
|
+
req.send_request(options)
|
1433
|
+
end
|
1434
|
+
|
1435
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1436
|
+
# change.
|
1437
|
+
#
|
1438
|
+
# Returns the current state of the specified instance identifier. It
|
1439
|
+
# tracks the instance while it is being created and returns an error
|
1440
|
+
# status, if applicable.
|
1441
|
+
#
|
1442
|
+
# If an instance is not created successfully, the instance status reason
|
1443
|
+
# field returns details relevant to the reason. The instance in a failed
|
1444
|
+
# state is returned only for 24 hours after the CreateInstance API was
|
1445
|
+
# invoked.
|
1446
|
+
#
|
1447
|
+
# @option params [required, String] :instance_id
|
1448
|
+
# The identifier of the Amazon Connect instance.
|
1449
|
+
#
|
1450
|
+
# @return [Types::DescribeInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1451
|
+
#
|
1452
|
+
# * {Types::DescribeInstanceResponse#instance #instance} => Types::Instance
|
1453
|
+
#
|
1454
|
+
# @example Request syntax with placeholder values
|
1455
|
+
#
|
1456
|
+
# resp = client.describe_instance({
|
1457
|
+
# instance_id: "InstanceId", # required
|
1458
|
+
# })
|
1459
|
+
#
|
1460
|
+
# @example Response structure
|
1461
|
+
#
|
1462
|
+
# resp.instance.id #=> String
|
1463
|
+
# resp.instance.arn #=> String
|
1464
|
+
# resp.instance.identity_management_type #=> String, one of "SAML", "CONNECT_MANAGED", "EXISTING_DIRECTORY"
|
1465
|
+
# resp.instance.instance_alias #=> String
|
1466
|
+
# resp.instance.created_time #=> Time
|
1467
|
+
# resp.instance.service_role #=> String
|
1468
|
+
# resp.instance.instance_status #=> String, one of "CREATION_IN_PROGRESS", "ACTIVE", "CREATION_FAILED"
|
1469
|
+
# resp.instance.status_reason.message #=> String
|
1470
|
+
# resp.instance.inbound_calls_enabled #=> Boolean
|
1471
|
+
# resp.instance.outbound_calls_enabled #=> Boolean
|
1472
|
+
#
|
1473
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstance AWS API Documentation
|
1474
|
+
#
|
1475
|
+
# @overload describe_instance(params = {})
|
1476
|
+
# @param [Hash] params ({})
|
1477
|
+
def describe_instance(params = {}, options = {})
|
1478
|
+
req = build_request(:describe_instance, params)
|
1479
|
+
req.send_request(options)
|
1480
|
+
end
|
1481
|
+
|
1482
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1483
|
+
# change.
|
1484
|
+
#
|
1485
|
+
# Describes the specified instance attribute.
|
1486
|
+
#
|
1487
|
+
# @option params [required, String] :instance_id
|
1488
|
+
# The identifier of the Amazon Connect instance.
|
1489
|
+
#
|
1490
|
+
# @option params [required, String] :attribute_type
|
1491
|
+
# The type of attribute.
|
1492
|
+
#
|
1493
|
+
# @return [Types::DescribeInstanceAttributeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1494
|
+
#
|
1495
|
+
# * {Types::DescribeInstanceAttributeResponse#attribute #attribute} => Types::Attribute
|
1496
|
+
#
|
1497
|
+
# @example Request syntax with placeholder values
|
1498
|
+
#
|
1499
|
+
# resp = client.describe_instance_attribute({
|
1500
|
+
# instance_id: "InstanceId", # required
|
1501
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA
|
1502
|
+
# })
|
1503
|
+
#
|
1504
|
+
# @example Response structure
|
1505
|
+
#
|
1506
|
+
# resp.attribute.attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA"
|
1507
|
+
# resp.attribute.value #=> String
|
1508
|
+
#
|
1509
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstanceAttribute AWS API Documentation
|
1510
|
+
#
|
1511
|
+
# @overload describe_instance_attribute(params = {})
|
1512
|
+
# @param [Hash] params ({})
|
1513
|
+
def describe_instance_attribute(params = {}, options = {})
|
1514
|
+
req = build_request(:describe_instance_attribute, params)
|
1515
|
+
req.send_request(options)
|
1516
|
+
end
|
1517
|
+
|
1518
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1519
|
+
# change.
|
1520
|
+
#
|
1521
|
+
# Retrieves the current storage configurations for the specified
|
1522
|
+
# resource type, association ID, and instance ID.
|
1523
|
+
#
|
1524
|
+
# @option params [required, String] :instance_id
|
1525
|
+
# The identifier of the Amazon Connect instance.
|
1526
|
+
#
|
1527
|
+
# @option params [required, String] :association_id
|
1528
|
+
# The existing association identifier that uniquely identifies the
|
1529
|
+
# resource type and storage config for the given instance ID.
|
1530
|
+
#
|
1531
|
+
# @option params [required, String] :resource_type
|
1532
|
+
# A valid resource type.
|
1533
|
+
#
|
1534
|
+
# @return [Types::DescribeInstanceStorageConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1535
|
+
#
|
1536
|
+
# * {Types::DescribeInstanceStorageConfigResponse#storage_config #storage_config} => Types::InstanceStorageConfig
|
1537
|
+
#
|
1538
|
+
# @example Request syntax with placeholder values
|
1539
|
+
#
|
1540
|
+
# resp = client.describe_instance_storage_config({
|
1541
|
+
# instance_id: "InstanceId", # required
|
1542
|
+
# association_id: "AssociationId", # required
|
1543
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
1544
|
+
# })
|
1545
|
+
#
|
1546
|
+
# @example Response structure
|
1547
|
+
#
|
1548
|
+
# resp.storage_config.association_id #=> String
|
1549
|
+
# resp.storage_config.storage_type #=> String, one of "S3", "KINESIS_VIDEO_STREAM", "KINESIS_STREAM", "KINESIS_FIREHOSE"
|
1550
|
+
# resp.storage_config.s3_config.bucket_name #=> String
|
1551
|
+
# resp.storage_config.s3_config.bucket_prefix #=> String
|
1552
|
+
# resp.storage_config.s3_config.encryption_config.encryption_type #=> String, one of "KMS"
|
1553
|
+
# resp.storage_config.s3_config.encryption_config.key_id #=> String
|
1554
|
+
# resp.storage_config.kinesis_video_stream_config.prefix #=> String
|
1555
|
+
# resp.storage_config.kinesis_video_stream_config.retention_period_hours #=> Integer
|
1556
|
+
# resp.storage_config.kinesis_video_stream_config.encryption_config.encryption_type #=> String, one of "KMS"
|
1557
|
+
# resp.storage_config.kinesis_video_stream_config.encryption_config.key_id #=> String
|
1558
|
+
# resp.storage_config.kinesis_stream_config.stream_arn #=> String
|
1559
|
+
# resp.storage_config.kinesis_firehose_config.firehose_arn #=> String
|
1560
|
+
#
|
1561
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstanceStorageConfig AWS API Documentation
|
1562
|
+
#
|
1563
|
+
# @overload describe_instance_storage_config(params = {})
|
1564
|
+
# @param [Hash] params ({})
|
1565
|
+
def describe_instance_storage_config(params = {}, options = {})
|
1566
|
+
req = build_request(:describe_instance_storage_config, params)
|
1567
|
+
req.send_request(options)
|
1568
|
+
end
|
1569
|
+
|
1570
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1571
|
+
# change.
|
1572
|
+
#
|
1573
|
+
# Describes the specified queue.
|
1574
|
+
#
|
1575
|
+
# @option params [required, String] :instance_id
|
1576
|
+
# The identifier of the Amazon Connect instance.
|
1577
|
+
#
|
1578
|
+
# @option params [required, String] :queue_id
|
1579
|
+
# The identifier for the queue.
|
1580
|
+
#
|
1581
|
+
# @return [Types::DescribeQueueResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1582
|
+
#
|
1583
|
+
# * {Types::DescribeQueueResponse#queue #queue} => Types::Queue
|
1584
|
+
#
|
1585
|
+
# @example Request syntax with placeholder values
|
1586
|
+
#
|
1587
|
+
# resp = client.describe_queue({
|
1588
|
+
# instance_id: "InstanceId", # required
|
1589
|
+
# queue_id: "QueueId", # required
|
1590
|
+
# })
|
1591
|
+
#
|
1592
|
+
# @example Response structure
|
1593
|
+
#
|
1594
|
+
# resp.queue.name #=> String
|
1595
|
+
# resp.queue.queue_arn #=> String
|
1596
|
+
# resp.queue.queue_id #=> String
|
1597
|
+
# resp.queue.description #=> String
|
1598
|
+
# resp.queue.outbound_caller_config.outbound_caller_id_name #=> String
|
1599
|
+
# resp.queue.outbound_caller_config.outbound_caller_id_number_id #=> String
|
1600
|
+
# resp.queue.outbound_caller_config.outbound_flow_id #=> String
|
1601
|
+
# resp.queue.hours_of_operation_id #=> String
|
1602
|
+
# resp.queue.max_contacts #=> Integer
|
1603
|
+
# resp.queue.status #=> String, one of "ENABLED", "DISABLED"
|
1604
|
+
# resp.queue.tags #=> Hash
|
1605
|
+
# resp.queue.tags["TagKey"] #=> String
|
1606
|
+
#
|
1607
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeQueue AWS API Documentation
|
1608
|
+
#
|
1609
|
+
# @overload describe_queue(params = {})
|
1610
|
+
# @param [Hash] params ({})
|
1611
|
+
def describe_queue(params = {}, options = {})
|
1612
|
+
req = build_request(:describe_queue, params)
|
1613
|
+
req.send_request(options)
|
1614
|
+
end
|
1615
|
+
|
1616
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1617
|
+
# change.
|
1618
|
+
#
|
1619
|
+
# Describes the quick connect.
|
1620
|
+
#
|
1621
|
+
# @option params [required, String] :instance_id
|
1622
|
+
# The identifier of the Amazon Connect instance.
|
1623
|
+
#
|
1624
|
+
# @option params [required, String] :quick_connect_id
|
1625
|
+
# The identifier for the quick connect.
|
1626
|
+
#
|
1627
|
+
# @return [Types::DescribeQuickConnectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1628
|
+
#
|
1629
|
+
# * {Types::DescribeQuickConnectResponse#quick_connect #quick_connect} => Types::QuickConnect
|
1630
|
+
#
|
1631
|
+
# @example Request syntax with placeholder values
|
1632
|
+
#
|
1633
|
+
# resp = client.describe_quick_connect({
|
1634
|
+
# instance_id: "InstanceId", # required
|
1635
|
+
# quick_connect_id: "QuickConnectId", # required
|
1636
|
+
# })
|
1637
|
+
#
|
1638
|
+
# @example Response structure
|
1639
|
+
#
|
1640
|
+
# resp.quick_connect.quick_connect_arn #=> String
|
1641
|
+
# resp.quick_connect.quick_connect_id #=> String
|
1642
|
+
# resp.quick_connect.name #=> String
|
1643
|
+
# resp.quick_connect.description #=> String
|
1644
|
+
# resp.quick_connect.quick_connect_config.quick_connect_type #=> String, one of "USER", "QUEUE", "PHONE_NUMBER"
|
1645
|
+
# resp.quick_connect.quick_connect_config.user_config.user_id #=> String
|
1646
|
+
# resp.quick_connect.quick_connect_config.user_config.contact_flow_id #=> String
|
1647
|
+
# resp.quick_connect.quick_connect_config.queue_config.queue_id #=> String
|
1648
|
+
# resp.quick_connect.quick_connect_config.queue_config.contact_flow_id #=> String
|
1649
|
+
# resp.quick_connect.quick_connect_config.phone_config.phone_number #=> String
|
1650
|
+
# resp.quick_connect.tags #=> Hash
|
1651
|
+
# resp.quick_connect.tags["TagKey"] #=> String
|
1652
|
+
#
|
1653
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeQuickConnect AWS API Documentation
|
1654
|
+
#
|
1655
|
+
# @overload describe_quick_connect(params = {})
|
1656
|
+
# @param [Hash] params ({})
|
1657
|
+
def describe_quick_connect(params = {}, options = {})
|
1658
|
+
req = build_request(:describe_quick_connect, params)
|
1659
|
+
req.send_request(options)
|
1660
|
+
end
|
1661
|
+
|
754
1662
|
# Describes the specified routing profile.
|
755
1663
|
#
|
756
1664
|
# @option params [required, String] :instance_id
|
@@ -778,7 +1686,7 @@ module Aws::Connect
|
|
778
1686
|
# resp.routing_profile.routing_profile_id #=> String
|
779
1687
|
# resp.routing_profile.description #=> String
|
780
1688
|
# resp.routing_profile.media_concurrencies #=> Array
|
781
|
-
# resp.routing_profile.media_concurrencies[0].channel #=> String, one of "VOICE", "CHAT"
|
1689
|
+
# resp.routing_profile.media_concurrencies[0].channel #=> String, one of "VOICE", "CHAT", "TASK"
|
782
1690
|
# resp.routing_profile.media_concurrencies[0].concurrency #=> Integer
|
783
1691
|
# resp.routing_profile.default_outbound_queue_id #=> String
|
784
1692
|
# resp.routing_profile.tags #=> Hash
|
@@ -937,71 +1845,263 @@ module Aws::Connect
|
|
937
1845
|
req.send_request(options)
|
938
1846
|
end
|
939
1847
|
|
940
|
-
#
|
1848
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1849
|
+
# change.
|
1850
|
+
#
|
1851
|
+
# Revokes access to integrated applications from Amazon Connect.
|
941
1852
|
#
|
942
1853
|
# @option params [required, String] :instance_id
|
943
1854
|
# The identifier of the Amazon Connect instance.
|
944
1855
|
#
|
945
|
-
# @option params [required, String] :
|
946
|
-
# The
|
947
|
-
#
|
948
|
-
# @option params [required, Array<Types::RoutingProfileQueueReference>] :queue_references
|
949
|
-
# The queues to disassociate from this routing profile.
|
1856
|
+
# @option params [required, String] :origin
|
1857
|
+
# The domain URL of the integrated application.
|
950
1858
|
#
|
951
1859
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
952
1860
|
#
|
953
1861
|
# @example Request syntax with placeholder values
|
954
1862
|
#
|
955
|
-
# resp = client.
|
1863
|
+
# resp = client.disassociate_approved_origin({
|
956
1864
|
# instance_id: "InstanceId", # required
|
957
|
-
#
|
958
|
-
# queue_references: [ # required
|
959
|
-
# {
|
960
|
-
# queue_id: "QueueId", # required
|
961
|
-
# channel: "VOICE", # required, accepts VOICE, CHAT
|
962
|
-
# },
|
963
|
-
# ],
|
1865
|
+
# origin: "Origin", # required
|
964
1866
|
# })
|
965
1867
|
#
|
966
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/
|
1868
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateApprovedOrigin AWS API Documentation
|
967
1869
|
#
|
968
|
-
# @overload
|
1870
|
+
# @overload disassociate_approved_origin(params = {})
|
969
1871
|
# @param [Hash] params ({})
|
970
|
-
def
|
971
|
-
req = build_request(:
|
1872
|
+
def disassociate_approved_origin(params = {}, options = {})
|
1873
|
+
req = build_request(:disassociate_approved_origin, params)
|
972
1874
|
req.send_request(options)
|
973
1875
|
end
|
974
1876
|
|
975
|
-
#
|
1877
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1878
|
+
# change.
|
1879
|
+
#
|
1880
|
+
# Removes the storage type configurations for the specified resource
|
1881
|
+
# type and association ID.
|
976
1882
|
#
|
977
1883
|
# @option params [required, String] :instance_id
|
978
1884
|
# The identifier of the Amazon Connect instance.
|
979
1885
|
#
|
980
|
-
# @option params [required, String] :
|
981
|
-
# The identifier
|
1886
|
+
# @option params [required, String] :association_id
|
1887
|
+
# The existing association identifier that uniquely identifies the
|
1888
|
+
# resource type and storage config for the given instance ID.
|
982
1889
|
#
|
983
|
-
# @
|
1890
|
+
# @option params [required, String] :resource_type
|
1891
|
+
# A valid resource type.
|
984
1892
|
#
|
985
|
-
#
|
1893
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
986
1894
|
#
|
987
1895
|
# @example Request syntax with placeholder values
|
988
1896
|
#
|
989
|
-
# resp = client.
|
1897
|
+
# resp = client.disassociate_instance_storage_config({
|
990
1898
|
# instance_id: "InstanceId", # required
|
991
|
-
#
|
1899
|
+
# association_id: "AssociationId", # required
|
1900
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
992
1901
|
# })
|
993
1902
|
#
|
994
|
-
# @
|
995
|
-
#
|
996
|
-
# resp.attributes #=> Hash
|
997
|
-
# resp.attributes["AttributeName"] #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
998
|
-
#
|
999
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetContactAttributes AWS API Documentation
|
1903
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateInstanceStorageConfig AWS API Documentation
|
1000
1904
|
#
|
1001
|
-
# @overload
|
1905
|
+
# @overload disassociate_instance_storage_config(params = {})
|
1002
1906
|
# @param [Hash] params ({})
|
1003
|
-
def
|
1004
|
-
req = build_request(:
|
1907
|
+
def disassociate_instance_storage_config(params = {}, options = {})
|
1908
|
+
req = build_request(:disassociate_instance_storage_config, params)
|
1909
|
+
req.send_request(options)
|
1910
|
+
end
|
1911
|
+
|
1912
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1913
|
+
# change.
|
1914
|
+
#
|
1915
|
+
# Remove the Lambda function from the dropdown options available in the
|
1916
|
+
# relevant contact flow blocks.
|
1917
|
+
#
|
1918
|
+
# @option params [required, String] :instance_id
|
1919
|
+
# The identifier of the Amazon Connect instance..
|
1920
|
+
#
|
1921
|
+
# @option params [required, String] :function_arn
|
1922
|
+
# The Amazon Resource Name (ARN) of the Lambda function being
|
1923
|
+
# disassociated.
|
1924
|
+
#
|
1925
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1926
|
+
#
|
1927
|
+
# @example Request syntax with placeholder values
|
1928
|
+
#
|
1929
|
+
# resp = client.disassociate_lambda_function({
|
1930
|
+
# instance_id: "InstanceId", # required
|
1931
|
+
# function_arn: "FunctionArn", # required
|
1932
|
+
# })
|
1933
|
+
#
|
1934
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateLambdaFunction AWS API Documentation
|
1935
|
+
#
|
1936
|
+
# @overload disassociate_lambda_function(params = {})
|
1937
|
+
# @param [Hash] params ({})
|
1938
|
+
def disassociate_lambda_function(params = {}, options = {})
|
1939
|
+
req = build_request(:disassociate_lambda_function, params)
|
1940
|
+
req.send_request(options)
|
1941
|
+
end
|
1942
|
+
|
1943
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1944
|
+
# change.
|
1945
|
+
#
|
1946
|
+
# Revokes authorization from the specified instance to access the
|
1947
|
+
# specified Amazon Lex bot.
|
1948
|
+
#
|
1949
|
+
# @option params [required, String] :instance_id
|
1950
|
+
# The identifier of the Amazon Connect instance.
|
1951
|
+
#
|
1952
|
+
# @option params [required, String] :bot_name
|
1953
|
+
# The name of the Amazon Lex bot. Maximum character limit of 50.
|
1954
|
+
#
|
1955
|
+
# @option params [required, String] :lex_region
|
1956
|
+
# The Region in which the Amazon Lex bot has been created.
|
1957
|
+
#
|
1958
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1959
|
+
#
|
1960
|
+
# @example Request syntax with placeholder values
|
1961
|
+
#
|
1962
|
+
# resp = client.disassociate_lex_bot({
|
1963
|
+
# instance_id: "InstanceId", # required
|
1964
|
+
# bot_name: "BotName", # required
|
1965
|
+
# lex_region: "LexRegion", # required
|
1966
|
+
# })
|
1967
|
+
#
|
1968
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateLexBot AWS API Documentation
|
1969
|
+
#
|
1970
|
+
# @overload disassociate_lex_bot(params = {})
|
1971
|
+
# @param [Hash] params ({})
|
1972
|
+
def disassociate_lex_bot(params = {}, options = {})
|
1973
|
+
req = build_request(:disassociate_lex_bot, params)
|
1974
|
+
req.send_request(options)
|
1975
|
+
end
|
1976
|
+
|
1977
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1978
|
+
# change.
|
1979
|
+
#
|
1980
|
+
# Disassociates a set of quick connects from a queue.
|
1981
|
+
#
|
1982
|
+
# @option params [required, String] :instance_id
|
1983
|
+
# The identifier of the Amazon Connect instance.
|
1984
|
+
#
|
1985
|
+
# @option params [required, String] :queue_id
|
1986
|
+
# The identifier for the queue.
|
1987
|
+
#
|
1988
|
+
# @option params [required, Array<String>] :quick_connect_ids
|
1989
|
+
# The quick connects to disassociate from the queue.
|
1990
|
+
#
|
1991
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1992
|
+
#
|
1993
|
+
# @example Request syntax with placeholder values
|
1994
|
+
#
|
1995
|
+
# resp = client.disassociate_queue_quick_connects({
|
1996
|
+
# instance_id: "InstanceId", # required
|
1997
|
+
# queue_id: "QueueId", # required
|
1998
|
+
# quick_connect_ids: ["QuickConnectId"], # required
|
1999
|
+
# })
|
2000
|
+
#
|
2001
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateQueueQuickConnects AWS API Documentation
|
2002
|
+
#
|
2003
|
+
# @overload disassociate_queue_quick_connects(params = {})
|
2004
|
+
# @param [Hash] params ({})
|
2005
|
+
def disassociate_queue_quick_connects(params = {}, options = {})
|
2006
|
+
req = build_request(:disassociate_queue_quick_connects, params)
|
2007
|
+
req.send_request(options)
|
2008
|
+
end
|
2009
|
+
|
2010
|
+
# Disassociates a set of queues from a routing profile.
|
2011
|
+
#
|
2012
|
+
# @option params [required, String] :instance_id
|
2013
|
+
# The identifier of the Amazon Connect instance.
|
2014
|
+
#
|
2015
|
+
# @option params [required, String] :routing_profile_id
|
2016
|
+
# The identifier of the routing profile.
|
2017
|
+
#
|
2018
|
+
# @option params [required, Array<Types::RoutingProfileQueueReference>] :queue_references
|
2019
|
+
# The queues to disassociate from this routing profile.
|
2020
|
+
#
|
2021
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2022
|
+
#
|
2023
|
+
# @example Request syntax with placeholder values
|
2024
|
+
#
|
2025
|
+
# resp = client.disassociate_routing_profile_queues({
|
2026
|
+
# instance_id: "InstanceId", # required
|
2027
|
+
# routing_profile_id: "RoutingProfileId", # required
|
2028
|
+
# queue_references: [ # required
|
2029
|
+
# {
|
2030
|
+
# queue_id: "QueueId", # required
|
2031
|
+
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK
|
2032
|
+
# },
|
2033
|
+
# ],
|
2034
|
+
# })
|
2035
|
+
#
|
2036
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateRoutingProfileQueues AWS API Documentation
|
2037
|
+
#
|
2038
|
+
# @overload disassociate_routing_profile_queues(params = {})
|
2039
|
+
# @param [Hash] params ({})
|
2040
|
+
def disassociate_routing_profile_queues(params = {}, options = {})
|
2041
|
+
req = build_request(:disassociate_routing_profile_queues, params)
|
2042
|
+
req.send_request(options)
|
2043
|
+
end
|
2044
|
+
|
2045
|
+
# This API is in preview release for Amazon Connect and is subject to
|
2046
|
+
# change.
|
2047
|
+
#
|
2048
|
+
# Deletes the specified security key.
|
2049
|
+
#
|
2050
|
+
# @option params [required, String] :instance_id
|
2051
|
+
# The identifier of the Amazon Connect instance.
|
2052
|
+
#
|
2053
|
+
# @option params [required, String] :association_id
|
2054
|
+
# The existing association identifier that uniquely identifies the
|
2055
|
+
# resource type and storage config for the given instance ID.
|
2056
|
+
#
|
2057
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2058
|
+
#
|
2059
|
+
# @example Request syntax with placeholder values
|
2060
|
+
#
|
2061
|
+
# resp = client.disassociate_security_key({
|
2062
|
+
# instance_id: "InstanceId", # required
|
2063
|
+
# association_id: "AssociationId", # required
|
2064
|
+
# })
|
2065
|
+
#
|
2066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateSecurityKey AWS API Documentation
|
2067
|
+
#
|
2068
|
+
# @overload disassociate_security_key(params = {})
|
2069
|
+
# @param [Hash] params ({})
|
2070
|
+
def disassociate_security_key(params = {}, options = {})
|
2071
|
+
req = build_request(:disassociate_security_key, params)
|
2072
|
+
req.send_request(options)
|
2073
|
+
end
|
2074
|
+
|
2075
|
+
# Retrieves the contact attributes for the specified contact.
|
2076
|
+
#
|
2077
|
+
# @option params [required, String] :instance_id
|
2078
|
+
# The identifier of the Amazon Connect instance.
|
2079
|
+
#
|
2080
|
+
# @option params [required, String] :initial_contact_id
|
2081
|
+
# The identifier of the initial contact.
|
2082
|
+
#
|
2083
|
+
# @return [Types::GetContactAttributesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2084
|
+
#
|
2085
|
+
# * {Types::GetContactAttributesResponse#attributes #attributes} => Hash<String,String>
|
2086
|
+
#
|
2087
|
+
# @example Request syntax with placeholder values
|
2088
|
+
#
|
2089
|
+
# resp = client.get_contact_attributes({
|
2090
|
+
# instance_id: "InstanceId", # required
|
2091
|
+
# initial_contact_id: "ContactId", # required
|
2092
|
+
# })
|
2093
|
+
#
|
2094
|
+
# @example Response structure
|
2095
|
+
#
|
2096
|
+
# resp.attributes #=> Hash
|
2097
|
+
# resp.attributes["AttributeName"] #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
2098
|
+
#
|
2099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetContactAttributes AWS API Documentation
|
2100
|
+
#
|
2101
|
+
# @overload get_contact_attributes(params = {})
|
2102
|
+
# @param [Hash] params ({})
|
2103
|
+
def get_contact_attributes(params = {}, options = {})
|
2104
|
+
req = build_request(:get_contact_attributes, params)
|
1005
2105
|
req.send_request(options)
|
1006
2106
|
end
|
1007
2107
|
|
@@ -1022,14 +2122,14 @@ module Aws::Connect
|
|
1022
2122
|
# The queues, up to 100, or channels, to use to filter the metrics
|
1023
2123
|
# returned. Metric data is retrieved only for the resources associated
|
1024
2124
|
# with the queues or channels included in the filter. You can include
|
1025
|
-
# both queue IDs and queue ARNs in the same request.
|
1026
|
-
#
|
2125
|
+
# both queue IDs and queue ARNs in the same request. VOICE, CHAT, and
|
2126
|
+
# TASK channels are supported.
|
1027
2127
|
#
|
1028
2128
|
# @option params [Array<String>] :groupings
|
1029
2129
|
# The grouping applied to the metrics returned. For example, when
|
1030
2130
|
# grouped by `QUEUE`, the metrics returned apply to each queue rather
|
1031
2131
|
# than aggregated for all queues. If you group by `CHANNEL`, you should
|
1032
|
-
# include a Channels filter.
|
2132
|
+
# include a Channels filter. VOICE, CHAT, and TASK channels are
|
1033
2133
|
# supported.
|
1034
2134
|
#
|
1035
2135
|
# If no `Grouping` is included in the request, a summary of metrics is
|
@@ -1153,7 +2253,7 @@ module Aws::Connect
|
|
1153
2253
|
# parameters as the request that generated the token.
|
1154
2254
|
#
|
1155
2255
|
# @option params [Integer] :max_results
|
1156
|
-
# The
|
2256
|
+
# The maximum number of results to return per page.
|
1157
2257
|
#
|
1158
2258
|
# @return [Types::GetCurrentMetricDataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1159
2259
|
#
|
@@ -1169,7 +2269,7 @@ module Aws::Connect
|
|
1169
2269
|
# instance_id: "InstanceId", # required
|
1170
2270
|
# filters: { # required
|
1171
2271
|
# queues: ["QueueId"],
|
1172
|
-
# channels: ["VOICE"], # accepts VOICE, CHAT
|
2272
|
+
# channels: ["VOICE"], # accepts VOICE, CHAT, TASK
|
1173
2273
|
# },
|
1174
2274
|
# groupings: ["QUEUE"], # accepts QUEUE, CHANNEL
|
1175
2275
|
# current_metrics: [ # required
|
@@ -1188,7 +2288,7 @@ module Aws::Connect
|
|
1188
2288
|
# resp.metric_results #=> Array
|
1189
2289
|
# resp.metric_results[0].dimensions.queue.id #=> String
|
1190
2290
|
# resp.metric_results[0].dimensions.queue.arn #=> String
|
1191
|
-
# resp.metric_results[0].dimensions.channel #=> String, one of "VOICE", "CHAT"
|
2291
|
+
# resp.metric_results[0].dimensions.channel #=> String, one of "VOICE", "CHAT", "TASK"
|
1192
2292
|
# resp.metric_results[0].collections #=> Array
|
1193
2293
|
# resp.metric_results[0].collections[0].metric.name #=> String, one of "AGENTS_ONLINE", "AGENTS_AVAILABLE", "AGENTS_ON_CALL", "AGENTS_NON_PRODUCTIVE", "AGENTS_AFTER_CONTACT_WORK", "AGENTS_ERROR", "AGENTS_STAFFED", "CONTACTS_IN_QUEUE", "OLDEST_CONTACT_AGE", "CONTACTS_SCHEDULED", "AGENTS_ON_CONTACT", "SLOTS_ACTIVE", "SLOTS_AVAILABLE"
|
1194
2294
|
# resp.metric_results[0].collections[0].metric.unit #=> String, one of "SECONDS", "COUNT", "PERCENT"
|
@@ -1270,8 +2370,8 @@ module Aws::Connect
|
|
1270
2370
|
# The queues, up to 100, or channels, to use to filter the metrics
|
1271
2371
|
# returned. Metric data is retrieved only for the resources associated
|
1272
2372
|
# with the queues or channels included in the filter. You can include
|
1273
|
-
# both queue IDs and queue ARNs in the same request.
|
1274
|
-
#
|
2373
|
+
# both queue IDs and queue ARNs in the same request. VOICE, CHAT, and
|
2374
|
+
# TASK channels are supported.
|
1275
2375
|
#
|
1276
2376
|
# @option params [Array<String>] :groupings
|
1277
2377
|
# The grouping applied to the metrics returned. For example, when
|
@@ -1424,29 +2524,428 @@ module Aws::Connect
|
|
1424
2524
|
#
|
1425
2525
|
# QUEUE\_ANSWER\_TIME
|
1426
2526
|
#
|
1427
|
-
# : Unit: SECONDS
|
2527
|
+
# : Unit: SECONDS
|
2528
|
+
#
|
2529
|
+
# Statistic: AVG
|
2530
|
+
#
|
2531
|
+
# QUEUED\_TIME
|
2532
|
+
#
|
2533
|
+
# : Unit: SECONDS
|
2534
|
+
#
|
2535
|
+
# Statistic: MAX
|
2536
|
+
#
|
2537
|
+
# SERVICE\_LEVEL
|
2538
|
+
#
|
2539
|
+
# : Unit: PERCENT
|
2540
|
+
#
|
2541
|
+
# Statistic: AVG
|
2542
|
+
#
|
2543
|
+
# Threshold: Only "Less than" comparisons are supported, with the
|
2544
|
+
# following service level thresholds: 15, 20, 25, 30, 45, 60, 90, 120,
|
2545
|
+
# 180, 240, 300, 600
|
2546
|
+
#
|
2547
|
+
#
|
2548
|
+
#
|
2549
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
2550
|
+
#
|
2551
|
+
# @option params [String] :next_token
|
2552
|
+
# The token for the next set of results. Use the value returned in the
|
2553
|
+
# previous response in the next request to retrieve the next set of
|
2554
|
+
# results.
|
2555
|
+
#
|
2556
|
+
# @option params [Integer] :max_results
|
2557
|
+
# The maximum number of results to return per page.
|
2558
|
+
#
|
2559
|
+
# @return [Types::GetMetricDataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2560
|
+
#
|
2561
|
+
# * {Types::GetMetricDataResponse#next_token #next_token} => String
|
2562
|
+
# * {Types::GetMetricDataResponse#metric_results #metric_results} => Array<Types::HistoricalMetricResult>
|
2563
|
+
#
|
2564
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2565
|
+
#
|
2566
|
+
# @example Request syntax with placeholder values
|
2567
|
+
#
|
2568
|
+
# resp = client.get_metric_data({
|
2569
|
+
# instance_id: "InstanceId", # required
|
2570
|
+
# start_time: Time.now, # required
|
2571
|
+
# end_time: Time.now, # required
|
2572
|
+
# filters: { # required
|
2573
|
+
# queues: ["QueueId"],
|
2574
|
+
# channels: ["VOICE"], # accepts VOICE, CHAT, TASK
|
2575
|
+
# },
|
2576
|
+
# groupings: ["QUEUE"], # accepts QUEUE, CHANNEL
|
2577
|
+
# historical_metrics: [ # required
|
2578
|
+
# {
|
2579
|
+
# name: "CONTACTS_QUEUED", # accepts CONTACTS_QUEUED, CONTACTS_HANDLED, CONTACTS_ABANDONED, CONTACTS_CONSULTED, CONTACTS_AGENT_HUNG_UP_FIRST, CONTACTS_HANDLED_INCOMING, CONTACTS_HANDLED_OUTBOUND, CONTACTS_HOLD_ABANDONS, CONTACTS_TRANSFERRED_IN, CONTACTS_TRANSFERRED_OUT, CONTACTS_TRANSFERRED_IN_FROM_QUEUE, CONTACTS_TRANSFERRED_OUT_FROM_QUEUE, CONTACTS_MISSED, CALLBACK_CONTACTS_HANDLED, API_CONTACTS_HANDLED, OCCUPANCY, HANDLE_TIME, AFTER_CONTACT_WORK_TIME, QUEUED_TIME, ABANDON_TIME, QUEUE_ANSWER_TIME, HOLD_TIME, INTERACTION_TIME, INTERACTION_AND_HOLD_TIME, SERVICE_LEVEL
|
2580
|
+
# threshold: {
|
2581
|
+
# comparison: "LT", # accepts LT
|
2582
|
+
# threshold_value: 1.0,
|
2583
|
+
# },
|
2584
|
+
# statistic: "SUM", # accepts SUM, MAX, AVG
|
2585
|
+
# unit: "SECONDS", # accepts SECONDS, COUNT, PERCENT
|
2586
|
+
# },
|
2587
|
+
# ],
|
2588
|
+
# next_token: "NextToken",
|
2589
|
+
# max_results: 1,
|
2590
|
+
# })
|
2591
|
+
#
|
2592
|
+
# @example Response structure
|
2593
|
+
#
|
2594
|
+
# resp.next_token #=> String
|
2595
|
+
# resp.metric_results #=> Array
|
2596
|
+
# resp.metric_results[0].dimensions.queue.id #=> String
|
2597
|
+
# resp.metric_results[0].dimensions.queue.arn #=> String
|
2598
|
+
# resp.metric_results[0].dimensions.channel #=> String, one of "VOICE", "CHAT", "TASK"
|
2599
|
+
# resp.metric_results[0].collections #=> Array
|
2600
|
+
# resp.metric_results[0].collections[0].metric.name #=> String, one of "CONTACTS_QUEUED", "CONTACTS_HANDLED", "CONTACTS_ABANDONED", "CONTACTS_CONSULTED", "CONTACTS_AGENT_HUNG_UP_FIRST", "CONTACTS_HANDLED_INCOMING", "CONTACTS_HANDLED_OUTBOUND", "CONTACTS_HOLD_ABANDONS", "CONTACTS_TRANSFERRED_IN", "CONTACTS_TRANSFERRED_OUT", "CONTACTS_TRANSFERRED_IN_FROM_QUEUE", "CONTACTS_TRANSFERRED_OUT_FROM_QUEUE", "CONTACTS_MISSED", "CALLBACK_CONTACTS_HANDLED", "API_CONTACTS_HANDLED", "OCCUPANCY", "HANDLE_TIME", "AFTER_CONTACT_WORK_TIME", "QUEUED_TIME", "ABANDON_TIME", "QUEUE_ANSWER_TIME", "HOLD_TIME", "INTERACTION_TIME", "INTERACTION_AND_HOLD_TIME", "SERVICE_LEVEL"
|
2601
|
+
# resp.metric_results[0].collections[0].metric.threshold.comparison #=> String, one of "LT"
|
2602
|
+
# resp.metric_results[0].collections[0].metric.threshold.threshold_value #=> Float
|
2603
|
+
# resp.metric_results[0].collections[0].metric.statistic #=> String, one of "SUM", "MAX", "AVG"
|
2604
|
+
# resp.metric_results[0].collections[0].metric.unit #=> String, one of "SECONDS", "COUNT", "PERCENT"
|
2605
|
+
# resp.metric_results[0].collections[0].value #=> Float
|
2606
|
+
#
|
2607
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetMetricData AWS API Documentation
|
2608
|
+
#
|
2609
|
+
# @overload get_metric_data(params = {})
|
2610
|
+
# @param [Hash] params ({})
|
2611
|
+
def get_metric_data(params = {}, options = {})
|
2612
|
+
req = build_request(:get_metric_data, params)
|
2613
|
+
req.send_request(options)
|
2614
|
+
end
|
2615
|
+
|
2616
|
+
# This API is in preview release for Amazon Connect and is subject to
|
2617
|
+
# change.
|
2618
|
+
#
|
2619
|
+
# Returns a paginated list of all approved origins associated with the
|
2620
|
+
# instance.
|
2621
|
+
#
|
2622
|
+
# @option params [required, String] :instance_id
|
2623
|
+
# The identifier of the Amazon Connect instance.
|
2624
|
+
#
|
2625
|
+
# @option params [String] :next_token
|
2626
|
+
# The token for the next set of results. Use the value returned in the
|
2627
|
+
# previous response in the next request to retrieve the next set of
|
2628
|
+
# results.
|
2629
|
+
#
|
2630
|
+
# @option params [Integer] :max_results
|
2631
|
+
# The maximum number of results to return per page.
|
2632
|
+
#
|
2633
|
+
# @return [Types::ListApprovedOriginsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2634
|
+
#
|
2635
|
+
# * {Types::ListApprovedOriginsResponse#origins #origins} => Array<String>
|
2636
|
+
# * {Types::ListApprovedOriginsResponse#next_token #next_token} => String
|
2637
|
+
#
|
2638
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2639
|
+
#
|
2640
|
+
# @example Request syntax with placeholder values
|
2641
|
+
#
|
2642
|
+
# resp = client.list_approved_origins({
|
2643
|
+
# instance_id: "InstanceId", # required
|
2644
|
+
# next_token: "NextToken",
|
2645
|
+
# max_results: 1,
|
2646
|
+
# })
|
2647
|
+
#
|
2648
|
+
# @example Response structure
|
2649
|
+
#
|
2650
|
+
# resp.origins #=> Array
|
2651
|
+
# resp.origins[0] #=> String
|
2652
|
+
# resp.next_token #=> String
|
2653
|
+
#
|
2654
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListApprovedOrigins AWS API Documentation
|
2655
|
+
#
|
2656
|
+
# @overload list_approved_origins(params = {})
|
2657
|
+
# @param [Hash] params ({})
|
2658
|
+
def list_approved_origins(params = {}, options = {})
|
2659
|
+
req = build_request(:list_approved_origins, params)
|
2660
|
+
req.send_request(options)
|
2661
|
+
end
|
2662
|
+
|
2663
|
+
# Provides information about the contact flows for the specified Amazon
|
2664
|
+
# Connect instance.
|
2665
|
+
#
|
2666
|
+
# You can also create and update contact flows using the [Amazon Connect
|
2667
|
+
# Flow language][1].
|
2668
|
+
#
|
2669
|
+
# For more information about contact flows, see [Contact Flows][2] in
|
2670
|
+
# the *Amazon Connect Administrator Guide*.
|
2671
|
+
#
|
2672
|
+
#
|
2673
|
+
#
|
2674
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/flow-language.html
|
2675
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/concepts-contact-flows.html
|
2676
|
+
#
|
2677
|
+
# @option params [required, String] :instance_id
|
2678
|
+
# The identifier of the Amazon Connect instance.
|
2679
|
+
#
|
2680
|
+
# @option params [Array<String>] :contact_flow_types
|
2681
|
+
# The type of contact flow.
|
2682
|
+
#
|
2683
|
+
# @option params [String] :next_token
|
2684
|
+
# The token for the next set of results. Use the value returned in the
|
2685
|
+
# previous response in the next request to retrieve the next set of
|
2686
|
+
# results.
|
2687
|
+
#
|
2688
|
+
# @option params [Integer] :max_results
|
2689
|
+
# The maximum number of results to return per page.
|
2690
|
+
#
|
2691
|
+
# @return [Types::ListContactFlowsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2692
|
+
#
|
2693
|
+
# * {Types::ListContactFlowsResponse#contact_flow_summary_list #contact_flow_summary_list} => Array<Types::ContactFlowSummary>
|
2694
|
+
# * {Types::ListContactFlowsResponse#next_token #next_token} => String
|
2695
|
+
#
|
2696
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2697
|
+
#
|
2698
|
+
# @example Request syntax with placeholder values
|
2699
|
+
#
|
2700
|
+
# resp = client.list_contact_flows({
|
2701
|
+
# instance_id: "InstanceId", # required
|
2702
|
+
# contact_flow_types: ["CONTACT_FLOW"], # accepts CONTACT_FLOW, CUSTOMER_QUEUE, CUSTOMER_HOLD, CUSTOMER_WHISPER, AGENT_HOLD, AGENT_WHISPER, OUTBOUND_WHISPER, AGENT_TRANSFER, QUEUE_TRANSFER
|
2703
|
+
# next_token: "NextToken",
|
2704
|
+
# max_results: 1,
|
2705
|
+
# })
|
2706
|
+
#
|
2707
|
+
# @example Response structure
|
2708
|
+
#
|
2709
|
+
# resp.contact_flow_summary_list #=> Array
|
2710
|
+
# resp.contact_flow_summary_list[0].id #=> String
|
2711
|
+
# resp.contact_flow_summary_list[0].arn #=> String
|
2712
|
+
# resp.contact_flow_summary_list[0].name #=> String
|
2713
|
+
# resp.contact_flow_summary_list[0].contact_flow_type #=> String, one of "CONTACT_FLOW", "CUSTOMER_QUEUE", "CUSTOMER_HOLD", "CUSTOMER_WHISPER", "AGENT_HOLD", "AGENT_WHISPER", "OUTBOUND_WHISPER", "AGENT_TRANSFER", "QUEUE_TRANSFER"
|
2714
|
+
# resp.next_token #=> String
|
2715
|
+
#
|
2716
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlows AWS API Documentation
|
2717
|
+
#
|
2718
|
+
# @overload list_contact_flows(params = {})
|
2719
|
+
# @param [Hash] params ({})
|
2720
|
+
def list_contact_flows(params = {}, options = {})
|
2721
|
+
req = build_request(:list_contact_flows, params)
|
2722
|
+
req.send_request(options)
|
2723
|
+
end
|
2724
|
+
|
2725
|
+
# Provides information about the hours of operation for the specified
|
2726
|
+
# Amazon Connect instance.
|
2727
|
+
#
|
2728
|
+
# For more information about hours of operation, see [Set the Hours of
|
2729
|
+
# Operation for a Queue][1] in the *Amazon Connect Administrator Guide*.
|
2730
|
+
#
|
2731
|
+
#
|
2732
|
+
#
|
2733
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/set-hours-operation.html
|
2734
|
+
#
|
2735
|
+
# @option params [required, String] :instance_id
|
2736
|
+
# The identifier of the Amazon Connect instance.
|
2737
|
+
#
|
2738
|
+
# @option params [String] :next_token
|
2739
|
+
# The token for the next set of results. Use the value returned in the
|
2740
|
+
# previous response in the next request to retrieve the next set of
|
2741
|
+
# results.
|
2742
|
+
#
|
2743
|
+
# @option params [Integer] :max_results
|
2744
|
+
# The maximum number of results to return per page.
|
2745
|
+
#
|
2746
|
+
# @return [Types::ListHoursOfOperationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2747
|
+
#
|
2748
|
+
# * {Types::ListHoursOfOperationsResponse#hours_of_operation_summary_list #hours_of_operation_summary_list} => Array<Types::HoursOfOperationSummary>
|
2749
|
+
# * {Types::ListHoursOfOperationsResponse#next_token #next_token} => String
|
2750
|
+
#
|
2751
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2752
|
+
#
|
2753
|
+
# @example Request syntax with placeholder values
|
2754
|
+
#
|
2755
|
+
# resp = client.list_hours_of_operations({
|
2756
|
+
# instance_id: "InstanceId", # required
|
2757
|
+
# next_token: "NextToken",
|
2758
|
+
# max_results: 1,
|
2759
|
+
# })
|
2760
|
+
#
|
2761
|
+
# @example Response structure
|
2762
|
+
#
|
2763
|
+
# resp.hours_of_operation_summary_list #=> Array
|
2764
|
+
# resp.hours_of_operation_summary_list[0].id #=> String
|
2765
|
+
# resp.hours_of_operation_summary_list[0].arn #=> String
|
2766
|
+
# resp.hours_of_operation_summary_list[0].name #=> String
|
2767
|
+
# resp.next_token #=> String
|
2768
|
+
#
|
2769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListHoursOfOperations AWS API Documentation
|
2770
|
+
#
|
2771
|
+
# @overload list_hours_of_operations(params = {})
|
2772
|
+
# @param [Hash] params ({})
|
2773
|
+
def list_hours_of_operations(params = {}, options = {})
|
2774
|
+
req = build_request(:list_hours_of_operations, params)
|
2775
|
+
req.send_request(options)
|
2776
|
+
end
|
2777
|
+
|
2778
|
+
# This API is in preview release for Amazon Connect and is subject to
|
2779
|
+
# change.
|
2780
|
+
#
|
2781
|
+
# Returns a paginated list of all attribute types for the given
|
2782
|
+
# instance.
|
2783
|
+
#
|
2784
|
+
# @option params [required, String] :instance_id
|
2785
|
+
# The identifier of the Amazon Connect instance.
|
2786
|
+
#
|
2787
|
+
# @option params [String] :next_token
|
2788
|
+
# The token for the next set of results. Use the value returned in the
|
2789
|
+
# previous response in the next request to retrieve the next set of
|
2790
|
+
# results.
|
2791
|
+
#
|
2792
|
+
# @option params [Integer] :max_results
|
2793
|
+
# The maximum number of results to return per page.
|
2794
|
+
#
|
2795
|
+
# @return [Types::ListInstanceAttributesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2796
|
+
#
|
2797
|
+
# * {Types::ListInstanceAttributesResponse#attributes #attributes} => Array<Types::Attribute>
|
2798
|
+
# * {Types::ListInstanceAttributesResponse#next_token #next_token} => String
|
2799
|
+
#
|
2800
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2801
|
+
#
|
2802
|
+
# @example Request syntax with placeholder values
|
2803
|
+
#
|
2804
|
+
# resp = client.list_instance_attributes({
|
2805
|
+
# instance_id: "InstanceId", # required
|
2806
|
+
# next_token: "NextToken",
|
2807
|
+
# max_results: 1,
|
2808
|
+
# })
|
2809
|
+
#
|
2810
|
+
# @example Response structure
|
2811
|
+
#
|
2812
|
+
# resp.attributes #=> Array
|
2813
|
+
# resp.attributes[0].attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA"
|
2814
|
+
# resp.attributes[0].value #=> String
|
2815
|
+
# resp.next_token #=> String
|
2816
|
+
#
|
2817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListInstanceAttributes AWS API Documentation
|
2818
|
+
#
|
2819
|
+
# @overload list_instance_attributes(params = {})
|
2820
|
+
# @param [Hash] params ({})
|
2821
|
+
def list_instance_attributes(params = {}, options = {})
|
2822
|
+
req = build_request(:list_instance_attributes, params)
|
2823
|
+
req.send_request(options)
|
2824
|
+
end
|
2825
|
+
|
2826
|
+
# This API is in preview release for Amazon Connect and is subject to
|
2827
|
+
# change.
|
2828
|
+
#
|
2829
|
+
# Returns a paginated list of storage configs for the identified
|
2830
|
+
# instance and resource type.
|
2831
|
+
#
|
2832
|
+
# @option params [required, String] :instance_id
|
2833
|
+
# The identifier of the Amazon Connect instance.
|
2834
|
+
#
|
2835
|
+
# @option params [required, String] :resource_type
|
2836
|
+
# A valid resource type.
|
2837
|
+
#
|
2838
|
+
# @option params [String] :next_token
|
2839
|
+
# The token for the next set of results. Use the value returned in the
|
2840
|
+
# previous response in the next request to retrieve the next set of
|
2841
|
+
# results.
|
2842
|
+
#
|
2843
|
+
# @option params [Integer] :max_results
|
2844
|
+
# The maximum number of results to return per page.
|
2845
|
+
#
|
2846
|
+
# @return [Types::ListInstanceStorageConfigsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2847
|
+
#
|
2848
|
+
# * {Types::ListInstanceStorageConfigsResponse#storage_configs #storage_configs} => Array<Types::InstanceStorageConfig>
|
2849
|
+
# * {Types::ListInstanceStorageConfigsResponse#next_token #next_token} => String
|
2850
|
+
#
|
2851
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2852
|
+
#
|
2853
|
+
# @example Request syntax with placeholder values
|
2854
|
+
#
|
2855
|
+
# resp = client.list_instance_storage_configs({
|
2856
|
+
# instance_id: "InstanceId", # required
|
2857
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
2858
|
+
# next_token: "NextToken",
|
2859
|
+
# max_results: 1,
|
2860
|
+
# })
|
2861
|
+
#
|
2862
|
+
# @example Response structure
|
2863
|
+
#
|
2864
|
+
# resp.storage_configs #=> Array
|
2865
|
+
# resp.storage_configs[0].association_id #=> String
|
2866
|
+
# resp.storage_configs[0].storage_type #=> String, one of "S3", "KINESIS_VIDEO_STREAM", "KINESIS_STREAM", "KINESIS_FIREHOSE"
|
2867
|
+
# resp.storage_configs[0].s3_config.bucket_name #=> String
|
2868
|
+
# resp.storage_configs[0].s3_config.bucket_prefix #=> String
|
2869
|
+
# resp.storage_configs[0].s3_config.encryption_config.encryption_type #=> String, one of "KMS"
|
2870
|
+
# resp.storage_configs[0].s3_config.encryption_config.key_id #=> String
|
2871
|
+
# resp.storage_configs[0].kinesis_video_stream_config.prefix #=> String
|
2872
|
+
# resp.storage_configs[0].kinesis_video_stream_config.retention_period_hours #=> Integer
|
2873
|
+
# resp.storage_configs[0].kinesis_video_stream_config.encryption_config.encryption_type #=> String, one of "KMS"
|
2874
|
+
# resp.storage_configs[0].kinesis_video_stream_config.encryption_config.key_id #=> String
|
2875
|
+
# resp.storage_configs[0].kinesis_stream_config.stream_arn #=> String
|
2876
|
+
# resp.storage_configs[0].kinesis_firehose_config.firehose_arn #=> String
|
2877
|
+
# resp.next_token #=> String
|
2878
|
+
#
|
2879
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListInstanceStorageConfigs AWS API Documentation
|
2880
|
+
#
|
2881
|
+
# @overload list_instance_storage_configs(params = {})
|
2882
|
+
# @param [Hash] params ({})
|
2883
|
+
def list_instance_storage_configs(params = {}, options = {})
|
2884
|
+
req = build_request(:list_instance_storage_configs, params)
|
2885
|
+
req.send_request(options)
|
2886
|
+
end
|
2887
|
+
|
2888
|
+
# This API is in preview release for Amazon Connect and is subject to
|
2889
|
+
# change.
|
2890
|
+
#
|
2891
|
+
# Return a list of instances which are in active state,
|
2892
|
+
# creation-in-progress state, and failed state. Instances that aren't
|
2893
|
+
# successfully created (they are in a failed state) are returned only
|
2894
|
+
# for 24 hours after the CreateInstance API was invoked.
|
2895
|
+
#
|
2896
|
+
# @option params [String] :next_token
|
2897
|
+
# The token for the next set of results. Use the value returned in the
|
2898
|
+
# previous response in the next request to retrieve the next set of
|
2899
|
+
# results.
|
2900
|
+
#
|
2901
|
+
# @option params [Integer] :max_results
|
2902
|
+
# The maximum number of results to return per page.
|
1428
2903
|
#
|
1429
|
-
#
|
2904
|
+
# @return [Types::ListInstancesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1430
2905
|
#
|
1431
|
-
#
|
2906
|
+
# * {Types::ListInstancesResponse#instance_summary_list #instance_summary_list} => Array<Types::InstanceSummary>
|
2907
|
+
# * {Types::ListInstancesResponse#next_token #next_token} => String
|
1432
2908
|
#
|
1433
|
-
#
|
2909
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1434
2910
|
#
|
1435
|
-
#
|
2911
|
+
# @example Request syntax with placeholder values
|
1436
2912
|
#
|
1437
|
-
#
|
2913
|
+
# resp = client.list_instances({
|
2914
|
+
# next_token: "NextToken",
|
2915
|
+
# max_results: 1,
|
2916
|
+
# })
|
1438
2917
|
#
|
1439
|
-
#
|
2918
|
+
# @example Response structure
|
1440
2919
|
#
|
1441
|
-
#
|
2920
|
+
# resp.instance_summary_list #=> Array
|
2921
|
+
# resp.instance_summary_list[0].id #=> String
|
2922
|
+
# resp.instance_summary_list[0].arn #=> String
|
2923
|
+
# resp.instance_summary_list[0].identity_management_type #=> String, one of "SAML", "CONNECT_MANAGED", "EXISTING_DIRECTORY"
|
2924
|
+
# resp.instance_summary_list[0].instance_alias #=> String
|
2925
|
+
# resp.instance_summary_list[0].created_time #=> Time
|
2926
|
+
# resp.instance_summary_list[0].service_role #=> String
|
2927
|
+
# resp.instance_summary_list[0].instance_status #=> String, one of "CREATION_IN_PROGRESS", "ACTIVE", "CREATION_FAILED"
|
2928
|
+
# resp.instance_summary_list[0].inbound_calls_enabled #=> Boolean
|
2929
|
+
# resp.instance_summary_list[0].outbound_calls_enabled #=> Boolean
|
2930
|
+
# resp.next_token #=> String
|
1442
2931
|
#
|
1443
|
-
#
|
1444
|
-
# following service level thresholds: 15, 20, 25, 30, 45, 60, 90, 120,
|
1445
|
-
# 180, 240, 300, 600
|
2932
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListInstances AWS API Documentation
|
1446
2933
|
#
|
2934
|
+
# @overload list_instances(params = {})
|
2935
|
+
# @param [Hash] params ({})
|
2936
|
+
def list_instances(params = {}, options = {})
|
2937
|
+
req = build_request(:list_instances, params)
|
2938
|
+
req.send_request(options)
|
2939
|
+
end
|
2940
|
+
|
2941
|
+
# This API is in preview release for Amazon Connect and is subject to
|
2942
|
+
# change.
|
1447
2943
|
#
|
2944
|
+
# Provides summary information about the AppIntegration associations for
|
2945
|
+
# the specified Amazon Connect instance.
|
1448
2946
|
#
|
1449
|
-
#
|
2947
|
+
# @option params [required, String] :instance_id
|
2948
|
+
# The identifier of the Amazon Connect instance.
|
1450
2949
|
#
|
1451
2950
|
# @option params [String] :next_token
|
1452
2951
|
# The token for the next set of results. Use the value returned in the
|
@@ -1454,136 +2953,97 @@ module Aws::Connect
|
|
1454
2953
|
# results.
|
1455
2954
|
#
|
1456
2955
|
# @option params [Integer] :max_results
|
1457
|
-
# The
|
2956
|
+
# The maximum number of results to return per page.
|
1458
2957
|
#
|
1459
|
-
# @return [Types::
|
2958
|
+
# @return [Types::ListIntegrationAssociationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1460
2959
|
#
|
1461
|
-
# * {Types::
|
1462
|
-
# * {Types::
|
2960
|
+
# * {Types::ListIntegrationAssociationsResponse#integration_association_summary_list #integration_association_summary_list} => Array<Types::IntegrationAssociationSummary>
|
2961
|
+
# * {Types::ListIntegrationAssociationsResponse#next_token #next_token} => String
|
1463
2962
|
#
|
1464
2963
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1465
2964
|
#
|
1466
2965
|
# @example Request syntax with placeholder values
|
1467
2966
|
#
|
1468
|
-
# resp = client.
|
2967
|
+
# resp = client.list_integration_associations({
|
1469
2968
|
# instance_id: "InstanceId", # required
|
1470
|
-
# start_time: Time.now, # required
|
1471
|
-
# end_time: Time.now, # required
|
1472
|
-
# filters: { # required
|
1473
|
-
# queues: ["QueueId"],
|
1474
|
-
# channels: ["VOICE"], # accepts VOICE, CHAT
|
1475
|
-
# },
|
1476
|
-
# groupings: ["QUEUE"], # accepts QUEUE, CHANNEL
|
1477
|
-
# historical_metrics: [ # required
|
1478
|
-
# {
|
1479
|
-
# name: "CONTACTS_QUEUED", # accepts CONTACTS_QUEUED, CONTACTS_HANDLED, CONTACTS_ABANDONED, CONTACTS_CONSULTED, CONTACTS_AGENT_HUNG_UP_FIRST, CONTACTS_HANDLED_INCOMING, CONTACTS_HANDLED_OUTBOUND, CONTACTS_HOLD_ABANDONS, CONTACTS_TRANSFERRED_IN, CONTACTS_TRANSFERRED_OUT, CONTACTS_TRANSFERRED_IN_FROM_QUEUE, CONTACTS_TRANSFERRED_OUT_FROM_QUEUE, CONTACTS_MISSED, CALLBACK_CONTACTS_HANDLED, API_CONTACTS_HANDLED, OCCUPANCY, HANDLE_TIME, AFTER_CONTACT_WORK_TIME, QUEUED_TIME, ABANDON_TIME, QUEUE_ANSWER_TIME, HOLD_TIME, INTERACTION_TIME, INTERACTION_AND_HOLD_TIME, SERVICE_LEVEL
|
1480
|
-
# threshold: {
|
1481
|
-
# comparison: "LT", # accepts LT
|
1482
|
-
# threshold_value: 1.0,
|
1483
|
-
# },
|
1484
|
-
# statistic: "SUM", # accepts SUM, MAX, AVG
|
1485
|
-
# unit: "SECONDS", # accepts SECONDS, COUNT, PERCENT
|
1486
|
-
# },
|
1487
|
-
# ],
|
1488
2969
|
# next_token: "NextToken",
|
1489
2970
|
# max_results: 1,
|
1490
2971
|
# })
|
1491
2972
|
#
|
1492
2973
|
# @example Response structure
|
1493
2974
|
#
|
2975
|
+
# resp.integration_association_summary_list #=> Array
|
2976
|
+
# resp.integration_association_summary_list[0].integration_association_id #=> String
|
2977
|
+
# resp.integration_association_summary_list[0].integration_association_arn #=> String
|
2978
|
+
# resp.integration_association_summary_list[0].instance_id #=> String
|
2979
|
+
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT"
|
2980
|
+
# resp.integration_association_summary_list[0].integration_arn #=> String
|
2981
|
+
# resp.integration_association_summary_list[0].source_application_url #=> String
|
2982
|
+
# resp.integration_association_summary_list[0].source_application_name #=> String
|
2983
|
+
# resp.integration_association_summary_list[0].source_type #=> String, one of "SALESFORCE", "ZENDESK"
|
1494
2984
|
# resp.next_token #=> String
|
1495
|
-
# resp.metric_results #=> Array
|
1496
|
-
# resp.metric_results[0].dimensions.queue.id #=> String
|
1497
|
-
# resp.metric_results[0].dimensions.queue.arn #=> String
|
1498
|
-
# resp.metric_results[0].dimensions.channel #=> String, one of "VOICE", "CHAT"
|
1499
|
-
# resp.metric_results[0].collections #=> Array
|
1500
|
-
# resp.metric_results[0].collections[0].metric.name #=> String, one of "CONTACTS_QUEUED", "CONTACTS_HANDLED", "CONTACTS_ABANDONED", "CONTACTS_CONSULTED", "CONTACTS_AGENT_HUNG_UP_FIRST", "CONTACTS_HANDLED_INCOMING", "CONTACTS_HANDLED_OUTBOUND", "CONTACTS_HOLD_ABANDONS", "CONTACTS_TRANSFERRED_IN", "CONTACTS_TRANSFERRED_OUT", "CONTACTS_TRANSFERRED_IN_FROM_QUEUE", "CONTACTS_TRANSFERRED_OUT_FROM_QUEUE", "CONTACTS_MISSED", "CALLBACK_CONTACTS_HANDLED", "API_CONTACTS_HANDLED", "OCCUPANCY", "HANDLE_TIME", "AFTER_CONTACT_WORK_TIME", "QUEUED_TIME", "ABANDON_TIME", "QUEUE_ANSWER_TIME", "HOLD_TIME", "INTERACTION_TIME", "INTERACTION_AND_HOLD_TIME", "SERVICE_LEVEL"
|
1501
|
-
# resp.metric_results[0].collections[0].metric.threshold.comparison #=> String, one of "LT"
|
1502
|
-
# resp.metric_results[0].collections[0].metric.threshold.threshold_value #=> Float
|
1503
|
-
# resp.metric_results[0].collections[0].metric.statistic #=> String, one of "SUM", "MAX", "AVG"
|
1504
|
-
# resp.metric_results[0].collections[0].metric.unit #=> String, one of "SECONDS", "COUNT", "PERCENT"
|
1505
|
-
# resp.metric_results[0].collections[0].value #=> Float
|
1506
2985
|
#
|
1507
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/
|
2986
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListIntegrationAssociations AWS API Documentation
|
1508
2987
|
#
|
1509
|
-
# @overload
|
2988
|
+
# @overload list_integration_associations(params = {})
|
1510
2989
|
# @param [Hash] params ({})
|
1511
|
-
def
|
1512
|
-
req = build_request(:
|
2990
|
+
def list_integration_associations(params = {}, options = {})
|
2991
|
+
req = build_request(:list_integration_associations, params)
|
1513
2992
|
req.send_request(options)
|
1514
2993
|
end
|
1515
2994
|
|
1516
|
-
#
|
1517
|
-
#
|
1518
|
-
#
|
1519
|
-
# You can also create and update contact flows using the [Amazon Connect
|
1520
|
-
# Flow language][1].
|
1521
|
-
#
|
1522
|
-
# For more information about contact flows, see [Contact Flows][2] in
|
1523
|
-
# the *Amazon Connect Administrator Guide*.
|
2995
|
+
# This API is in preview release for Amazon Connect and is subject to
|
2996
|
+
# change.
|
1524
2997
|
#
|
1525
|
-
#
|
1526
|
-
#
|
1527
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/flow-language.html
|
1528
|
-
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/concepts-contact-flows.html
|
2998
|
+
# Returns a paginated list of all Lambda functions that display in the
|
2999
|
+
# dropdown options in the relevant contact flow blocks.
|
1529
3000
|
#
|
1530
3001
|
# @option params [required, String] :instance_id
|
1531
3002
|
# The identifier of the Amazon Connect instance.
|
1532
3003
|
#
|
1533
|
-
# @option params [Array<String>] :contact_flow_types
|
1534
|
-
# The type of contact flow.
|
1535
|
-
#
|
1536
3004
|
# @option params [String] :next_token
|
1537
3005
|
# The token for the next set of results. Use the value returned in the
|
1538
3006
|
# previous response in the next request to retrieve the next set of
|
1539
3007
|
# results.
|
1540
3008
|
#
|
1541
3009
|
# @option params [Integer] :max_results
|
1542
|
-
# The
|
3010
|
+
# The maximum number of results to return per page.
|
1543
3011
|
#
|
1544
|
-
# @return [Types::
|
3012
|
+
# @return [Types::ListLambdaFunctionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1545
3013
|
#
|
1546
|
-
# * {Types::
|
1547
|
-
# * {Types::
|
3014
|
+
# * {Types::ListLambdaFunctionsResponse#lambda_functions #lambda_functions} => Array<String>
|
3015
|
+
# * {Types::ListLambdaFunctionsResponse#next_token #next_token} => String
|
1548
3016
|
#
|
1549
3017
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1550
3018
|
#
|
1551
3019
|
# @example Request syntax with placeholder values
|
1552
3020
|
#
|
1553
|
-
# resp = client.
|
3021
|
+
# resp = client.list_lambda_functions({
|
1554
3022
|
# instance_id: "InstanceId", # required
|
1555
|
-
# contact_flow_types: ["CONTACT_FLOW"], # accepts CONTACT_FLOW, CUSTOMER_QUEUE, CUSTOMER_HOLD, CUSTOMER_WHISPER, AGENT_HOLD, AGENT_WHISPER, OUTBOUND_WHISPER, AGENT_TRANSFER, QUEUE_TRANSFER
|
1556
3023
|
# next_token: "NextToken",
|
1557
3024
|
# max_results: 1,
|
1558
3025
|
# })
|
1559
3026
|
#
|
1560
3027
|
# @example Response structure
|
1561
3028
|
#
|
1562
|
-
# resp.
|
1563
|
-
# resp.
|
1564
|
-
# resp.contact_flow_summary_list[0].arn #=> String
|
1565
|
-
# resp.contact_flow_summary_list[0].name #=> String
|
1566
|
-
# resp.contact_flow_summary_list[0].contact_flow_type #=> String, one of "CONTACT_FLOW", "CUSTOMER_QUEUE", "CUSTOMER_HOLD", "CUSTOMER_WHISPER", "AGENT_HOLD", "AGENT_WHISPER", "OUTBOUND_WHISPER", "AGENT_TRANSFER", "QUEUE_TRANSFER"
|
3029
|
+
# resp.lambda_functions #=> Array
|
3030
|
+
# resp.lambda_functions[0] #=> String
|
1567
3031
|
# resp.next_token #=> String
|
1568
3032
|
#
|
1569
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/
|
3033
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListLambdaFunctions AWS API Documentation
|
1570
3034
|
#
|
1571
|
-
# @overload
|
3035
|
+
# @overload list_lambda_functions(params = {})
|
1572
3036
|
# @param [Hash] params ({})
|
1573
|
-
def
|
1574
|
-
req = build_request(:
|
3037
|
+
def list_lambda_functions(params = {}, options = {})
|
3038
|
+
req = build_request(:list_lambda_functions, params)
|
1575
3039
|
req.send_request(options)
|
1576
3040
|
end
|
1577
3041
|
|
1578
|
-
#
|
1579
|
-
#
|
1580
|
-
#
|
1581
|
-
# For more information about hours of operation, see [Set the Hours of
|
1582
|
-
# Operation for a Queue][1] in the *Amazon Connect Administrator Guide*.
|
1583
|
-
#
|
3042
|
+
# This API is in preview release for Amazon Connect and is subject to
|
3043
|
+
# change.
|
1584
3044
|
#
|
1585
|
-
#
|
1586
|
-
#
|
3045
|
+
# Returns a paginated list of all the Amazon Lex bots currently
|
3046
|
+
# associated with the instance.
|
1587
3047
|
#
|
1588
3048
|
# @option params [required, String] :instance_id
|
1589
3049
|
# The identifier of the Amazon Connect instance.
|
@@ -1594,18 +3054,18 @@ module Aws::Connect
|
|
1594
3054
|
# results.
|
1595
3055
|
#
|
1596
3056
|
# @option params [Integer] :max_results
|
1597
|
-
# The
|
3057
|
+
# The maximum number of results to return per page.
|
1598
3058
|
#
|
1599
|
-
# @return [Types::
|
3059
|
+
# @return [Types::ListLexBotsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1600
3060
|
#
|
1601
|
-
# * {Types::
|
1602
|
-
# * {Types::
|
3061
|
+
# * {Types::ListLexBotsResponse#lex_bots #lex_bots} => Array<Types::LexBot>
|
3062
|
+
# * {Types::ListLexBotsResponse#next_token #next_token} => String
|
1603
3063
|
#
|
1604
3064
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1605
3065
|
#
|
1606
3066
|
# @example Request syntax with placeholder values
|
1607
3067
|
#
|
1608
|
-
# resp = client.
|
3068
|
+
# resp = client.list_lex_bots({
|
1609
3069
|
# instance_id: "InstanceId", # required
|
1610
3070
|
# next_token: "NextToken",
|
1611
3071
|
# max_results: 1,
|
@@ -1613,18 +3073,17 @@ module Aws::Connect
|
|
1613
3073
|
#
|
1614
3074
|
# @example Response structure
|
1615
3075
|
#
|
1616
|
-
# resp.
|
1617
|
-
# resp.
|
1618
|
-
# resp.
|
1619
|
-
# resp.hours_of_operation_summary_list[0].name #=> String
|
3076
|
+
# resp.lex_bots #=> Array
|
3077
|
+
# resp.lex_bots[0].name #=> String
|
3078
|
+
# resp.lex_bots[0].lex_region #=> String
|
1620
3079
|
# resp.next_token #=> String
|
1621
3080
|
#
|
1622
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/
|
3081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListLexBots AWS API Documentation
|
1623
3082
|
#
|
1624
|
-
# @overload
|
3083
|
+
# @overload list_lex_bots(params = {})
|
1625
3084
|
# @param [Hash] params ({})
|
1626
|
-
def
|
1627
|
-
req = build_request(:
|
3085
|
+
def list_lex_bots(params = {}, options = {})
|
3086
|
+
req = build_request(:list_lex_bots, params)
|
1628
3087
|
req.send_request(options)
|
1629
3088
|
end
|
1630
3089
|
|
@@ -1654,7 +3113,7 @@ module Aws::Connect
|
|
1654
3113
|
# results.
|
1655
3114
|
#
|
1656
3115
|
# @option params [Integer] :max_results
|
1657
|
-
# The
|
3116
|
+
# The maximum number of results to return per page.
|
1658
3117
|
#
|
1659
3118
|
# @return [Types::ListPhoneNumbersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1660
3119
|
#
|
@@ -1738,6 +3197,59 @@ module Aws::Connect
|
|
1738
3197
|
req.send_request(options)
|
1739
3198
|
end
|
1740
3199
|
|
3200
|
+
# This API is in preview release for Amazon Connect and is subject to
|
3201
|
+
# change.
|
3202
|
+
#
|
3203
|
+
# Lists the quick connects associated with a queue.
|
3204
|
+
#
|
3205
|
+
# @option params [required, String] :instance_id
|
3206
|
+
# The identifier of the Amazon Connect instance.
|
3207
|
+
#
|
3208
|
+
# @option params [required, String] :queue_id
|
3209
|
+
# The identifier for the queue.
|
3210
|
+
#
|
3211
|
+
# @option params [String] :next_token
|
3212
|
+
# The token for the next set of results. Use the value returned in the
|
3213
|
+
# previous response in the next request to retrieve the next set of
|
3214
|
+
# results.
|
3215
|
+
#
|
3216
|
+
# @option params [Integer] :max_results
|
3217
|
+
# The maximum number of results to return per page.
|
3218
|
+
#
|
3219
|
+
# @return [Types::ListQueueQuickConnectsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3220
|
+
#
|
3221
|
+
# * {Types::ListQueueQuickConnectsResponse#next_token #next_token} => String
|
3222
|
+
# * {Types::ListQueueQuickConnectsResponse#quick_connect_summary_list #quick_connect_summary_list} => Array<Types::QuickConnectSummary>
|
3223
|
+
#
|
3224
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3225
|
+
#
|
3226
|
+
# @example Request syntax with placeholder values
|
3227
|
+
#
|
3228
|
+
# resp = client.list_queue_quick_connects({
|
3229
|
+
# instance_id: "InstanceId", # required
|
3230
|
+
# queue_id: "QueueId", # required
|
3231
|
+
# next_token: "NextToken",
|
3232
|
+
# max_results: 1,
|
3233
|
+
# })
|
3234
|
+
#
|
3235
|
+
# @example Response structure
|
3236
|
+
#
|
3237
|
+
# resp.next_token #=> String
|
3238
|
+
# resp.quick_connect_summary_list #=> Array
|
3239
|
+
# resp.quick_connect_summary_list[0].id #=> String
|
3240
|
+
# resp.quick_connect_summary_list[0].arn #=> String
|
3241
|
+
# resp.quick_connect_summary_list[0].name #=> String
|
3242
|
+
# resp.quick_connect_summary_list[0].quick_connect_type #=> String, one of "USER", "QUEUE", "PHONE_NUMBER"
|
3243
|
+
#
|
3244
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQueueQuickConnects AWS API Documentation
|
3245
|
+
#
|
3246
|
+
# @overload list_queue_quick_connects(params = {})
|
3247
|
+
# @param [Hash] params ({})
|
3248
|
+
def list_queue_quick_connects(params = {}, options = {})
|
3249
|
+
req = build_request(:list_queue_quick_connects, params)
|
3250
|
+
req.send_request(options)
|
3251
|
+
end
|
3252
|
+
|
1741
3253
|
# Provides information about the queues for the specified Amazon Connect
|
1742
3254
|
# instance.
|
1743
3255
|
#
|
@@ -1760,7 +3272,7 @@ module Aws::Connect
|
|
1760
3272
|
# results.
|
1761
3273
|
#
|
1762
3274
|
# @option params [Integer] :max_results
|
1763
|
-
# The
|
3275
|
+
# The maximum number of results to return per page.
|
1764
3276
|
#
|
1765
3277
|
# @return [Types::ListQueuesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1766
3278
|
#
|
@@ -1796,7 +3308,64 @@ module Aws::Connect
|
|
1796
3308
|
req.send_request(options)
|
1797
3309
|
end
|
1798
3310
|
|
1799
|
-
#
|
3311
|
+
# This API is in preview release for Amazon Connect and is subject to
|
3312
|
+
# change.
|
3313
|
+
#
|
3314
|
+
# Provides information about the quick connects for the specified Amazon
|
3315
|
+
# Connect instance.
|
3316
|
+
#
|
3317
|
+
# @option params [required, String] :instance_id
|
3318
|
+
# The identifier of the Amazon Connect instance.
|
3319
|
+
#
|
3320
|
+
# @option params [String] :next_token
|
3321
|
+
# The token for the next set of results. Use the value returned in the
|
3322
|
+
# previous response in the next request to retrieve the next set of
|
3323
|
+
# results.
|
3324
|
+
#
|
3325
|
+
# @option params [Integer] :max_results
|
3326
|
+
# The maximum number of results to return per page.
|
3327
|
+
#
|
3328
|
+
# @option params [Array<String>] :quick_connect_types
|
3329
|
+
# The type of quick connect. In the Amazon Connect console, when you
|
3330
|
+
# create a quick connect, you are prompted to assign one of the
|
3331
|
+
# following types: Agent (USER), External (PHONE\_NUMBER), or Queue
|
3332
|
+
# (QUEUE).
|
3333
|
+
#
|
3334
|
+
# @return [Types::ListQuickConnectsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3335
|
+
#
|
3336
|
+
# * {Types::ListQuickConnectsResponse#quick_connect_summary_list #quick_connect_summary_list} => Array<Types::QuickConnectSummary>
|
3337
|
+
# * {Types::ListQuickConnectsResponse#next_token #next_token} => String
|
3338
|
+
#
|
3339
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3340
|
+
#
|
3341
|
+
# @example Request syntax with placeholder values
|
3342
|
+
#
|
3343
|
+
# resp = client.list_quick_connects({
|
3344
|
+
# instance_id: "InstanceId", # required
|
3345
|
+
# next_token: "NextToken",
|
3346
|
+
# max_results: 1,
|
3347
|
+
# quick_connect_types: ["USER"], # accepts USER, QUEUE, PHONE_NUMBER
|
3348
|
+
# })
|
3349
|
+
#
|
3350
|
+
# @example Response structure
|
3351
|
+
#
|
3352
|
+
# resp.quick_connect_summary_list #=> Array
|
3353
|
+
# resp.quick_connect_summary_list[0].id #=> String
|
3354
|
+
# resp.quick_connect_summary_list[0].arn #=> String
|
3355
|
+
# resp.quick_connect_summary_list[0].name #=> String
|
3356
|
+
# resp.quick_connect_summary_list[0].quick_connect_type #=> String, one of "USER", "QUEUE", "PHONE_NUMBER"
|
3357
|
+
# resp.next_token #=> String
|
3358
|
+
#
|
3359
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQuickConnects AWS API Documentation
|
3360
|
+
#
|
3361
|
+
# @overload list_quick_connects(params = {})
|
3362
|
+
# @param [Hash] params ({})
|
3363
|
+
def list_quick_connects(params = {}, options = {})
|
3364
|
+
req = build_request(:list_quick_connects, params)
|
3365
|
+
req.send_request(options)
|
3366
|
+
end
|
3367
|
+
|
3368
|
+
# Lists the queues associated with a routing profile.
|
1800
3369
|
#
|
1801
3370
|
# @option params [required, String] :instance_id
|
1802
3371
|
# The identifier of the Amazon Connect instance.
|
@@ -1810,7 +3379,7 @@ module Aws::Connect
|
|
1810
3379
|
# results.
|
1811
3380
|
#
|
1812
3381
|
# @option params [Integer] :max_results
|
1813
|
-
# The
|
3382
|
+
# The maximum number of results to return per page.
|
1814
3383
|
#
|
1815
3384
|
# @return [Types::ListRoutingProfileQueuesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1816
3385
|
#
|
@@ -1837,7 +3406,7 @@ module Aws::Connect
|
|
1837
3406
|
# resp.routing_profile_queue_config_summary_list[0].queue_name #=> String
|
1838
3407
|
# resp.routing_profile_queue_config_summary_list[0].priority #=> Integer
|
1839
3408
|
# resp.routing_profile_queue_config_summary_list[0].delay #=> Integer
|
1840
|
-
# resp.routing_profile_queue_config_summary_list[0].channel #=> String, one of "VOICE", "CHAT"
|
3409
|
+
# resp.routing_profile_queue_config_summary_list[0].channel #=> String, one of "VOICE", "CHAT", "TASK"
|
1841
3410
|
#
|
1842
3411
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfileQueues AWS API Documentation
|
1843
3412
|
#
|
@@ -1869,7 +3438,7 @@ module Aws::Connect
|
|
1869
3438
|
# results.
|
1870
3439
|
#
|
1871
3440
|
# @option params [Integer] :max_results
|
1872
|
-
# The
|
3441
|
+
# The maximum number of results to return per page.
|
1873
3442
|
#
|
1874
3443
|
# @return [Types::ListRoutingProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1875
3444
|
#
|
@@ -1903,6 +3472,55 @@ module Aws::Connect
|
|
1903
3472
|
req.send_request(options)
|
1904
3473
|
end
|
1905
3474
|
|
3475
|
+
# This API is in preview release for Amazon Connect and is subject to
|
3476
|
+
# change.
|
3477
|
+
#
|
3478
|
+
# Returns a paginated list of all security keys associated with the
|
3479
|
+
# instance.
|
3480
|
+
#
|
3481
|
+
# @option params [required, String] :instance_id
|
3482
|
+
# The identifier of the Amazon Connect instance.
|
3483
|
+
#
|
3484
|
+
# @option params [String] :next_token
|
3485
|
+
# The token for the next set of results. Use the value returned in the
|
3486
|
+
# previous response in the next request to retrieve the next set of
|
3487
|
+
# results.
|
3488
|
+
#
|
3489
|
+
# @option params [Integer] :max_results
|
3490
|
+
# The maximum number of results to return per page.
|
3491
|
+
#
|
3492
|
+
# @return [Types::ListSecurityKeysResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3493
|
+
#
|
3494
|
+
# * {Types::ListSecurityKeysResponse#security_keys #security_keys} => Array<Types::SecurityKey>
|
3495
|
+
# * {Types::ListSecurityKeysResponse#next_token #next_token} => String
|
3496
|
+
#
|
3497
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3498
|
+
#
|
3499
|
+
# @example Request syntax with placeholder values
|
3500
|
+
#
|
3501
|
+
# resp = client.list_security_keys({
|
3502
|
+
# instance_id: "InstanceId", # required
|
3503
|
+
# next_token: "NextToken",
|
3504
|
+
# max_results: 1,
|
3505
|
+
# })
|
3506
|
+
#
|
3507
|
+
# @example Response structure
|
3508
|
+
#
|
3509
|
+
# resp.security_keys #=> Array
|
3510
|
+
# resp.security_keys[0].association_id #=> String
|
3511
|
+
# resp.security_keys[0].key #=> String
|
3512
|
+
# resp.security_keys[0].creation_time #=> Time
|
3513
|
+
# resp.next_token #=> String
|
3514
|
+
#
|
3515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityKeys AWS API Documentation
|
3516
|
+
#
|
3517
|
+
# @overload list_security_keys(params = {})
|
3518
|
+
# @param [Hash] params ({})
|
3519
|
+
def list_security_keys(params = {}, options = {})
|
3520
|
+
req = build_request(:list_security_keys, params)
|
3521
|
+
req.send_request(options)
|
3522
|
+
end
|
3523
|
+
|
1906
3524
|
# Provides summary information about the security profiles for the
|
1907
3525
|
# specified Amazon Connect instance.
|
1908
3526
|
#
|
@@ -1922,7 +3540,7 @@ module Aws::Connect
|
|
1922
3540
|
# results.
|
1923
3541
|
#
|
1924
3542
|
# @option params [Integer] :max_results
|
1925
|
-
# The
|
3543
|
+
# The maximum number of results to return per page.
|
1926
3544
|
#
|
1927
3545
|
# @return [Types::ListSecurityProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1928
3546
|
#
|
@@ -1992,6 +3610,58 @@ module Aws::Connect
|
|
1992
3610
|
req.send_request(options)
|
1993
3611
|
end
|
1994
3612
|
|
3613
|
+
# This API is in preview release for Amazon Connect and is subject to
|
3614
|
+
# change.
|
3615
|
+
#
|
3616
|
+
# Lists the use cases.
|
3617
|
+
#
|
3618
|
+
# @option params [required, String] :instance_id
|
3619
|
+
# The identifier of the Amazon Connect instance.
|
3620
|
+
#
|
3621
|
+
# @option params [required, String] :integration_association_id
|
3622
|
+
# The identifier for the integration association.
|
3623
|
+
#
|
3624
|
+
# @option params [String] :next_token
|
3625
|
+
# The token for the next set of results. Use the value returned in the
|
3626
|
+
# previous response in the next request to retrieve the next set of
|
3627
|
+
# results.
|
3628
|
+
#
|
3629
|
+
# @option params [Integer] :max_results
|
3630
|
+
# The maximum number of results to return per page.
|
3631
|
+
#
|
3632
|
+
# @return [Types::ListUseCasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3633
|
+
#
|
3634
|
+
# * {Types::ListUseCasesResponse#use_case_summary_list #use_case_summary_list} => Array<Types::UseCase>
|
3635
|
+
# * {Types::ListUseCasesResponse#next_token #next_token} => String
|
3636
|
+
#
|
3637
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3638
|
+
#
|
3639
|
+
# @example Request syntax with placeholder values
|
3640
|
+
#
|
3641
|
+
# resp = client.list_use_cases({
|
3642
|
+
# instance_id: "InstanceId", # required
|
3643
|
+
# integration_association_id: "IntegrationAssociationId", # required
|
3644
|
+
# next_token: "NextToken",
|
3645
|
+
# max_results: 1,
|
3646
|
+
# })
|
3647
|
+
#
|
3648
|
+
# @example Response structure
|
3649
|
+
#
|
3650
|
+
# resp.use_case_summary_list #=> Array
|
3651
|
+
# resp.use_case_summary_list[0].use_case_id #=> String
|
3652
|
+
# resp.use_case_summary_list[0].use_case_arn #=> String
|
3653
|
+
# resp.use_case_summary_list[0].use_case_type #=> String, one of "RULES_EVALUATION"
|
3654
|
+
# resp.next_token #=> String
|
3655
|
+
#
|
3656
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUseCases AWS API Documentation
|
3657
|
+
#
|
3658
|
+
# @overload list_use_cases(params = {})
|
3659
|
+
# @param [Hash] params ({})
|
3660
|
+
def list_use_cases(params = {}, options = {})
|
3661
|
+
req = build_request(:list_use_cases, params)
|
3662
|
+
req.send_request(options)
|
3663
|
+
end
|
3664
|
+
|
1995
3665
|
# Provides summary information about the hierarchy groups for the
|
1996
3666
|
# specified Amazon Connect instance.
|
1997
3667
|
#
|
@@ -2011,7 +3681,7 @@ module Aws::Connect
|
|
2011
3681
|
# results.
|
2012
3682
|
#
|
2013
3683
|
# @option params [Integer] :max_results
|
2014
|
-
# The
|
3684
|
+
# The maximum number of results to return per page.
|
2015
3685
|
#
|
2016
3686
|
# @return [Types::ListUserHierarchyGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2017
3687
|
#
|
@@ -2057,7 +3727,7 @@ module Aws::Connect
|
|
2057
3727
|
# results.
|
2058
3728
|
#
|
2059
3729
|
# @option params [Integer] :max_results
|
2060
|
-
# The
|
3730
|
+
# The maximum number of results to return per page.
|
2061
3731
|
#
|
2062
3732
|
# @return [Types::ListUsersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2063
3733
|
#
|
@@ -2130,7 +3800,7 @@ module Aws::Connect
|
|
2130
3800
|
# from the [CreateParticipantConnection][1] API in the Amazon Connect
|
2131
3801
|
# Participant Service.
|
2132
3802
|
#
|
2133
|
-
# When a new chat contact is successfully created, clients
|
3803
|
+
# When a new chat contact is successfully created, clients must
|
2134
3804
|
# subscribe to the participant’s connection for the created chat within
|
2135
3805
|
# 5 minutes. This is achieved by invoking
|
2136
3806
|
# [CreateParticipantConnection][1] with WEBSOCKET and
|
@@ -2144,8 +3814,8 @@ module Aws::Connect
|
|
2144
3814
|
# * The [quota for concurrent active chats][2] is exceeded. Active chat
|
2145
3815
|
# throttling returns a `LimitExceededException`.
|
2146
3816
|
#
|
2147
|
-
# For more information about
|
2148
|
-
#
|
3817
|
+
# For more information about chat, see [Chat][3] in the *Amazon Connect
|
3818
|
+
# Administrator Guide*.
|
2149
3819
|
#
|
2150
3820
|
#
|
2151
3821
|
#
|
@@ -2168,7 +3838,7 @@ module Aws::Connect
|
|
2168
3838
|
#
|
2169
3839
|
# @option params [Hash<String,String>] :attributes
|
2170
3840
|
# A custom key-value pair using an attribute map. The attributes are
|
2171
|
-
# standard Amazon Connect attributes
|
3841
|
+
# standard Amazon Connect attributes. They can be accessed in contact
|
2172
3842
|
# flows just like any other contact attributes.
|
2173
3843
|
#
|
2174
3844
|
# There can be up to 32,768 UTF-8 bytes across all key-value pairs per
|
@@ -2227,7 +3897,7 @@ module Aws::Connect
|
|
2227
3897
|
req.send_request(options)
|
2228
3898
|
end
|
2229
3899
|
|
2230
|
-
#
|
3900
|
+
# Starts recording the contact when the agent joins the call.
|
2231
3901
|
# StartContactRecording is a one-time action. For example, if you use
|
2232
3902
|
# StopContactRecording to stop recording an ongoing call, you can't use
|
2233
3903
|
# StartContactRecording to restart it. For scenarios where the recording
|
@@ -2255,7 +3925,7 @@ module Aws::Connect
|
|
2255
3925
|
# associated with the first interaction with the contact center.
|
2256
3926
|
#
|
2257
3927
|
# @option params [required, Types::VoiceRecordingConfiguration] :voice_recording_configuration
|
2258
|
-
#
|
3928
|
+
# The person being recorded.
|
2259
3929
|
#
|
2260
3930
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2261
3931
|
#
|
@@ -2279,16 +3949,16 @@ module Aws::Connect
|
|
2279
3949
|
req.send_request(options)
|
2280
3950
|
end
|
2281
3951
|
|
2282
|
-
#
|
2283
|
-
#
|
2284
|
-
#
|
3952
|
+
# Places an outbound call to a contact, and then initiates the contact
|
3953
|
+
# flow. It performs the actions in the contact flow that's specified
|
3954
|
+
# (in `ContactFlowId`).
|
2285
3955
|
#
|
2286
|
-
# Agents
|
2287
|
-
#
|
2288
|
-
# contact, and then puts the contact in queue,
|
2289
|
-
#
|
3956
|
+
# Agents do not initiate the outbound API, which means that they do not
|
3957
|
+
# dial the contact. If the contact flow places an outbound call to a
|
3958
|
+
# contact, and then puts the contact in queue, the call is then routed
|
3959
|
+
# to the agent, like any other inbound case.
|
2290
3960
|
#
|
2291
|
-
# There is a 60
|
3961
|
+
# There is a 60-second dialing timeout for this operation. If the call
|
2292
3962
|
# is not connected after 60 seconds, it fails.
|
2293
3963
|
#
|
2294
3964
|
# <note markdown="1"> UK numbers with a 447 prefix are not allowed by default. Before you
|
@@ -2378,6 +4048,89 @@ module Aws::Connect
|
|
2378
4048
|
req.send_request(options)
|
2379
4049
|
end
|
2380
4050
|
|
4051
|
+
# Initiates a contact flow to start a new task.
|
4052
|
+
#
|
4053
|
+
# @option params [required, String] :instance_id
|
4054
|
+
# The identifier of the Amazon Connect instance.
|
4055
|
+
#
|
4056
|
+
# @option params [String] :previous_contact_id
|
4057
|
+
# The identifier of the previous chat, voice, or task contact.
|
4058
|
+
#
|
4059
|
+
# @option params [required, String] :contact_flow_id
|
4060
|
+
# The identifier of the contact flow for initiating the tasks. To see
|
4061
|
+
# the ContactFlowId in the Amazon Connect console user interface, on the
|
4062
|
+
# navigation menu go to **Routing**, **Contact Flows**. Choose the
|
4063
|
+
# contact flow. On the contact flow page, under the name of the contact
|
4064
|
+
# flow, choose **Show additional flow information**. The ContactFlowId
|
4065
|
+
# is the last part of the ARN, shown here in bold:
|
4066
|
+
#
|
4067
|
+
# arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/**846ec553-a005-41c0-8341-xxxxxxxxxxxx**
|
4068
|
+
#
|
4069
|
+
# @option params [Hash<String,String>] :attributes
|
4070
|
+
# A custom key-value pair using an attribute map. The attributes are
|
4071
|
+
# standard Amazon Connect attributes, and can be accessed in contact
|
4072
|
+
# flows just like any other contact attributes.
|
4073
|
+
#
|
4074
|
+
# There can be up to 32,768 UTF-8 bytes across all key-value pairs per
|
4075
|
+
# contact. Attribute keys can include only alphanumeric, dash, and
|
4076
|
+
# underscore characters.
|
4077
|
+
#
|
4078
|
+
# @option params [required, String] :name
|
4079
|
+
# The name of a task that is shown to an agent in the Contact Control
|
4080
|
+
# Panel (CCP).
|
4081
|
+
#
|
4082
|
+
# @option params [Hash<String,Types::Reference>] :references
|
4083
|
+
# A formatted URL that is shown to an agent in the Contact Control Panel
|
4084
|
+
# (CCP).
|
4085
|
+
#
|
4086
|
+
# @option params [String] :description
|
4087
|
+
# A description of the task that is shown to an agent in the Contact
|
4088
|
+
# Control Panel (CCP).
|
4089
|
+
#
|
4090
|
+
# @option params [String] :client_token
|
4091
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
4092
|
+
# idempotency of the request.
|
4093
|
+
#
|
4094
|
+
# **A suitable default value is auto-generated.** You should normally
|
4095
|
+
# not need to pass this option.**
|
4096
|
+
#
|
4097
|
+
# @return [Types::StartTaskContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4098
|
+
#
|
4099
|
+
# * {Types::StartTaskContactResponse#contact_id #contact_id} => String
|
4100
|
+
#
|
4101
|
+
# @example Request syntax with placeholder values
|
4102
|
+
#
|
4103
|
+
# resp = client.start_task_contact({
|
4104
|
+
# instance_id: "InstanceId", # required
|
4105
|
+
# previous_contact_id: "ContactId",
|
4106
|
+
# contact_flow_id: "ContactFlowId", # required
|
4107
|
+
# attributes: {
|
4108
|
+
# "AttributeName" => "AttributeValue",
|
4109
|
+
# },
|
4110
|
+
# name: "Name", # required
|
4111
|
+
# references: {
|
4112
|
+
# "ReferenceKey" => {
|
4113
|
+
# value: "ReferenceValue", # required
|
4114
|
+
# type: "URL", # required, accepts URL
|
4115
|
+
# },
|
4116
|
+
# },
|
4117
|
+
# description: "Description",
|
4118
|
+
# client_token: "ClientToken",
|
4119
|
+
# })
|
4120
|
+
#
|
4121
|
+
# @example Response structure
|
4122
|
+
#
|
4123
|
+
# resp.contact_id #=> String
|
4124
|
+
#
|
4125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTaskContact AWS API Documentation
|
4126
|
+
#
|
4127
|
+
# @overload start_task_contact(params = {})
|
4128
|
+
# @param [Hash] params ({})
|
4129
|
+
def start_task_contact(params = {}, options = {})
|
4130
|
+
req = build_request(:start_task_contact, params)
|
4131
|
+
req.send_request(options)
|
4132
|
+
end
|
4133
|
+
|
2381
4134
|
# Ends the specified contact.
|
2382
4135
|
#
|
2383
4136
|
# @option params [required, String] :contact_id
|
@@ -2404,7 +4157,7 @@ module Aws::Connect
|
|
2404
4157
|
req.send_request(options)
|
2405
4158
|
end
|
2406
4159
|
|
2407
|
-
#
|
4160
|
+
# Stops recording a call when a contact is being recorded.
|
2408
4161
|
# StopContactRecording is a one-time action. If you use
|
2409
4162
|
# StopContactRecording to stop recording an ongoing call, you can't use
|
2410
4163
|
# StartContactRecording to restart it. For scenarios where the recording
|
@@ -2484,8 +4237,8 @@ module Aws::Connect
|
|
2484
4237
|
|
2485
4238
|
# Adds the specified tags to the specified resource.
|
2486
4239
|
#
|
2487
|
-
# The supported resource types are users, routing profiles,
|
2488
|
-
# flows.
|
4240
|
+
# The supported resource types are users, routing profiles, queues,
|
4241
|
+
# quick connects, and contact flows.
|
2489
4242
|
#
|
2490
4243
|
# For sample policies that use tags, see [Amazon Connect Identity-Based
|
2491
4244
|
# Policy Examples][1] in the *Amazon Connect Administrator Guide*.
|
@@ -2551,25 +4304,26 @@ module Aws::Connect
|
|
2551
4304
|
# specified contact.
|
2552
4305
|
#
|
2553
4306
|
# You can add or update attributes for both ongoing and completed
|
2554
|
-
# contacts. For example,
|
2555
|
-
#
|
2556
|
-
# about steps that the agent took during the call that
|
2557
|
-
#
|
2558
|
-
#
|
4307
|
+
# contacts. For example, while the call is active, you can update the
|
4308
|
+
# customer's name or the reason the customer called. You can add notes
|
4309
|
+
# about steps that the agent took during the call that display to the
|
4310
|
+
# next agent that takes the call. You can also update attributes for a
|
4311
|
+
# contact using data from your CRM application and save the data with
|
2559
4312
|
# the contact in Amazon Connect. You could also flag calls for
|
2560
|
-
# additional analysis, such as legal review or
|
4313
|
+
# additional analysis, such as legal review or to identify abusive
|
2561
4314
|
# callers.
|
2562
4315
|
#
|
2563
4316
|
# Contact attributes are available in Amazon Connect for 24 months, and
|
2564
4317
|
# are then deleted.
|
2565
4318
|
#
|
2566
4319
|
# **Important:** You cannot use the operation to update attributes for
|
2567
|
-
# contacts that occurred prior to the release of the API,
|
2568
|
-
# 2018. You can update attributes only for contacts that
|
2569
|
-
# the release of the API. If you attempt to update
|
2570
|
-
# contact that occurred prior to the release of the
|
2571
|
-
# returned. This applies also to queued callbacks
|
2572
|
-
# prior to the release of the API but are still
|
4320
|
+
# contacts that occurred prior to the release of the API, which was
|
4321
|
+
# September 12, 2018. You can update attributes only for contacts that
|
4322
|
+
# started after the release of the API. If you attempt to update
|
4323
|
+
# attributes for a contact that occurred prior to the release of the
|
4324
|
+
# API, a 400 error is returned. This applies also to queued callbacks
|
4325
|
+
# that were initiated prior to the release of the API but are still
|
4326
|
+
# active in your instance.
|
2573
4327
|
#
|
2574
4328
|
# @option params [required, String] :initial_contact_id
|
2575
4329
|
# The identifier of the contact. This is the identifier of the contact
|
@@ -2691,6 +4445,365 @@ module Aws::Connect
|
|
2691
4445
|
req.send_request(options)
|
2692
4446
|
end
|
2693
4447
|
|
4448
|
+
# This API is in preview release for Amazon Connect and is subject to
|
4449
|
+
# change.
|
4450
|
+
#
|
4451
|
+
# Updates the value for the specified attribute type.
|
4452
|
+
#
|
4453
|
+
# @option params [required, String] :instance_id
|
4454
|
+
# The identifier of the Amazon Connect instance.
|
4455
|
+
#
|
4456
|
+
# @option params [required, String] :attribute_type
|
4457
|
+
# The type of attribute.
|
4458
|
+
#
|
4459
|
+
# @option params [required, String] :value
|
4460
|
+
# The value for the attribute. Maximum character limit is 100.
|
4461
|
+
#
|
4462
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4463
|
+
#
|
4464
|
+
# @example Request syntax with placeholder values
|
4465
|
+
#
|
4466
|
+
# resp = client.update_instance_attribute({
|
4467
|
+
# instance_id: "InstanceId", # required
|
4468
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA
|
4469
|
+
# value: "InstanceAttributeValue", # required
|
4470
|
+
# })
|
4471
|
+
#
|
4472
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateInstanceAttribute AWS API Documentation
|
4473
|
+
#
|
4474
|
+
# @overload update_instance_attribute(params = {})
|
4475
|
+
# @param [Hash] params ({})
|
4476
|
+
def update_instance_attribute(params = {}, options = {})
|
4477
|
+
req = build_request(:update_instance_attribute, params)
|
4478
|
+
req.send_request(options)
|
4479
|
+
end
|
4480
|
+
|
4481
|
+
# This API is in preview release for Amazon Connect and is subject to
|
4482
|
+
# change.
|
4483
|
+
#
|
4484
|
+
# Updates an existing configuration for a resource type. This API is
|
4485
|
+
# idempotent.
|
4486
|
+
#
|
4487
|
+
# @option params [required, String] :instance_id
|
4488
|
+
# The identifier of the Amazon Connect instance.
|
4489
|
+
#
|
4490
|
+
# @option params [required, String] :association_id
|
4491
|
+
# The existing association identifier that uniquely identifies the
|
4492
|
+
# resource type and storage config for the given instance ID.
|
4493
|
+
#
|
4494
|
+
# @option params [required, String] :resource_type
|
4495
|
+
# A valid resource type.
|
4496
|
+
#
|
4497
|
+
# @option params [required, Types::InstanceStorageConfig] :storage_config
|
4498
|
+
# The storage configuration for the instance.
|
4499
|
+
#
|
4500
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4501
|
+
#
|
4502
|
+
# @example Request syntax with placeholder values
|
4503
|
+
#
|
4504
|
+
# resp = client.update_instance_storage_config({
|
4505
|
+
# instance_id: "InstanceId", # required
|
4506
|
+
# association_id: "AssociationId", # required
|
4507
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
4508
|
+
# storage_config: { # required
|
4509
|
+
# association_id: "AssociationId",
|
4510
|
+
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
4511
|
+
# s3_config: {
|
4512
|
+
# bucket_name: "BucketName", # required
|
4513
|
+
# bucket_prefix: "Prefix", # required
|
4514
|
+
# encryption_config: {
|
4515
|
+
# encryption_type: "KMS", # required, accepts KMS
|
4516
|
+
# key_id: "KeyId", # required
|
4517
|
+
# },
|
4518
|
+
# },
|
4519
|
+
# kinesis_video_stream_config: {
|
4520
|
+
# prefix: "Prefix", # required
|
4521
|
+
# retention_period_hours: 1, # required
|
4522
|
+
# encryption_config: { # required
|
4523
|
+
# encryption_type: "KMS", # required, accepts KMS
|
4524
|
+
# key_id: "KeyId", # required
|
4525
|
+
# },
|
4526
|
+
# },
|
4527
|
+
# kinesis_stream_config: {
|
4528
|
+
# stream_arn: "ARN", # required
|
4529
|
+
# },
|
4530
|
+
# kinesis_firehose_config: {
|
4531
|
+
# firehose_arn: "ARN", # required
|
4532
|
+
# },
|
4533
|
+
# },
|
4534
|
+
# })
|
4535
|
+
#
|
4536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateInstanceStorageConfig AWS API Documentation
|
4537
|
+
#
|
4538
|
+
# @overload update_instance_storage_config(params = {})
|
4539
|
+
# @param [Hash] params ({})
|
4540
|
+
def update_instance_storage_config(params = {}, options = {})
|
4541
|
+
req = build_request(:update_instance_storage_config, params)
|
4542
|
+
req.send_request(options)
|
4543
|
+
end
|
4544
|
+
|
4545
|
+
# This API is in preview release for Amazon Connect and is subject to
|
4546
|
+
# change.
|
4547
|
+
#
|
4548
|
+
# Updates the hours of operation for the specified queue.
|
4549
|
+
#
|
4550
|
+
# @option params [required, String] :instance_id
|
4551
|
+
# The identifier of the Amazon Connect instance.
|
4552
|
+
#
|
4553
|
+
# @option params [required, String] :queue_id
|
4554
|
+
# The identifier for the queue.
|
4555
|
+
#
|
4556
|
+
# @option params [required, String] :hours_of_operation_id
|
4557
|
+
# The identifier for the hours of operation.
|
4558
|
+
#
|
4559
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4560
|
+
#
|
4561
|
+
# @example Request syntax with placeholder values
|
4562
|
+
#
|
4563
|
+
# resp = client.update_queue_hours_of_operation({
|
4564
|
+
# instance_id: "InstanceId", # required
|
4565
|
+
# queue_id: "QueueId", # required
|
4566
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
4567
|
+
# })
|
4568
|
+
#
|
4569
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQueueHoursOfOperation AWS API Documentation
|
4570
|
+
#
|
4571
|
+
# @overload update_queue_hours_of_operation(params = {})
|
4572
|
+
# @param [Hash] params ({})
|
4573
|
+
def update_queue_hours_of_operation(params = {}, options = {})
|
4574
|
+
req = build_request(:update_queue_hours_of_operation, params)
|
4575
|
+
req.send_request(options)
|
4576
|
+
end
|
4577
|
+
|
4578
|
+
# This API is in preview release for Amazon Connect and is subject to
|
4579
|
+
# change.
|
4580
|
+
#
|
4581
|
+
# Updates the maximum number of contacts allowed in a queue before it is
|
4582
|
+
# considered full.
|
4583
|
+
#
|
4584
|
+
# @option params [required, String] :instance_id
|
4585
|
+
# The identifier of the Amazon Connect instance.
|
4586
|
+
#
|
4587
|
+
# @option params [required, String] :queue_id
|
4588
|
+
# The identifier for the queue.
|
4589
|
+
#
|
4590
|
+
# @option params [required, Integer] :max_contacts
|
4591
|
+
# The maximum number of contacts that can be in the queue before it is
|
4592
|
+
# considered full.
|
4593
|
+
#
|
4594
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4595
|
+
#
|
4596
|
+
# @example Request syntax with placeholder values
|
4597
|
+
#
|
4598
|
+
# resp = client.update_queue_max_contacts({
|
4599
|
+
# instance_id: "InstanceId", # required
|
4600
|
+
# queue_id: "QueueId", # required
|
4601
|
+
# max_contacts: 1, # required
|
4602
|
+
# })
|
4603
|
+
#
|
4604
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQueueMaxContacts AWS API Documentation
|
4605
|
+
#
|
4606
|
+
# @overload update_queue_max_contacts(params = {})
|
4607
|
+
# @param [Hash] params ({})
|
4608
|
+
def update_queue_max_contacts(params = {}, options = {})
|
4609
|
+
req = build_request(:update_queue_max_contacts, params)
|
4610
|
+
req.send_request(options)
|
4611
|
+
end
|
4612
|
+
|
4613
|
+
# This API is in preview release for Amazon Connect and is subject to
|
4614
|
+
# change.
|
4615
|
+
#
|
4616
|
+
# Updates the name and description of a queue. At least `Name` or
|
4617
|
+
# `Description` must be provided.
|
4618
|
+
#
|
4619
|
+
# @option params [required, String] :instance_id
|
4620
|
+
# The identifier of the Amazon Connect instance.
|
4621
|
+
#
|
4622
|
+
# @option params [required, String] :queue_id
|
4623
|
+
# The identifier for the queue.
|
4624
|
+
#
|
4625
|
+
# @option params [String] :name
|
4626
|
+
# The name of the queue.
|
4627
|
+
#
|
4628
|
+
# @option params [String] :description
|
4629
|
+
# The description of the queue.
|
4630
|
+
#
|
4631
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4632
|
+
#
|
4633
|
+
# @example Request syntax with placeholder values
|
4634
|
+
#
|
4635
|
+
# resp = client.update_queue_name({
|
4636
|
+
# instance_id: "InstanceId", # required
|
4637
|
+
# queue_id: "QueueId", # required
|
4638
|
+
# name: "CommonNameLength127",
|
4639
|
+
# description: "QueueDescription",
|
4640
|
+
# })
|
4641
|
+
#
|
4642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQueueName AWS API Documentation
|
4643
|
+
#
|
4644
|
+
# @overload update_queue_name(params = {})
|
4645
|
+
# @param [Hash] params ({})
|
4646
|
+
def update_queue_name(params = {}, options = {})
|
4647
|
+
req = build_request(:update_queue_name, params)
|
4648
|
+
req.send_request(options)
|
4649
|
+
end
|
4650
|
+
|
4651
|
+
# This API is in preview release for Amazon Connect and is subject to
|
4652
|
+
# change.
|
4653
|
+
#
|
4654
|
+
# Updates the outbound caller ID name, number, and outbound whisper flow
|
4655
|
+
# for a specified queue.
|
4656
|
+
#
|
4657
|
+
# @option params [required, String] :instance_id
|
4658
|
+
# The identifier of the Amazon Connect instance.
|
4659
|
+
#
|
4660
|
+
# @option params [required, String] :queue_id
|
4661
|
+
# The identifier for the queue.
|
4662
|
+
#
|
4663
|
+
# @option params [required, Types::OutboundCallerConfig] :outbound_caller_config
|
4664
|
+
# The outbound caller ID name, number, and outbound whisper flow.
|
4665
|
+
#
|
4666
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4667
|
+
#
|
4668
|
+
# @example Request syntax with placeholder values
|
4669
|
+
#
|
4670
|
+
# resp = client.update_queue_outbound_caller_config({
|
4671
|
+
# instance_id: "InstanceId", # required
|
4672
|
+
# queue_id: "QueueId", # required
|
4673
|
+
# outbound_caller_config: { # required
|
4674
|
+
# outbound_caller_id_name: "OutboundCallerIdName",
|
4675
|
+
# outbound_caller_id_number_id: "PhoneNumberId",
|
4676
|
+
# outbound_flow_id: "ContactFlowId",
|
4677
|
+
# },
|
4678
|
+
# })
|
4679
|
+
#
|
4680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQueueOutboundCallerConfig AWS API Documentation
|
4681
|
+
#
|
4682
|
+
# @overload update_queue_outbound_caller_config(params = {})
|
4683
|
+
# @param [Hash] params ({})
|
4684
|
+
def update_queue_outbound_caller_config(params = {}, options = {})
|
4685
|
+
req = build_request(:update_queue_outbound_caller_config, params)
|
4686
|
+
req.send_request(options)
|
4687
|
+
end
|
4688
|
+
|
4689
|
+
# This API is in preview release for Amazon Connect and is subject to
|
4690
|
+
# change.
|
4691
|
+
#
|
4692
|
+
# Updates the status of the queue.
|
4693
|
+
#
|
4694
|
+
# @option params [required, String] :instance_id
|
4695
|
+
# The identifier of the Amazon Connect instance.
|
4696
|
+
#
|
4697
|
+
# @option params [required, String] :queue_id
|
4698
|
+
# The identifier for the queue.
|
4699
|
+
#
|
4700
|
+
# @option params [required, String] :status
|
4701
|
+
# The status of the queue.
|
4702
|
+
#
|
4703
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4704
|
+
#
|
4705
|
+
# @example Request syntax with placeholder values
|
4706
|
+
#
|
4707
|
+
# resp = client.update_queue_status({
|
4708
|
+
# instance_id: "InstanceId", # required
|
4709
|
+
# queue_id: "QueueId", # required
|
4710
|
+
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
4711
|
+
# })
|
4712
|
+
#
|
4713
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQueueStatus AWS API Documentation
|
4714
|
+
#
|
4715
|
+
# @overload update_queue_status(params = {})
|
4716
|
+
# @param [Hash] params ({})
|
4717
|
+
def update_queue_status(params = {}, options = {})
|
4718
|
+
req = build_request(:update_queue_status, params)
|
4719
|
+
req.send_request(options)
|
4720
|
+
end
|
4721
|
+
|
4722
|
+
# This API is in preview release for Amazon Connect and is subject to
|
4723
|
+
# change.
|
4724
|
+
#
|
4725
|
+
# Updates the configuration settings for the specified quick connect.
|
4726
|
+
#
|
4727
|
+
# @option params [required, String] :instance_id
|
4728
|
+
# The identifier of the Amazon Connect instance.
|
4729
|
+
#
|
4730
|
+
# @option params [required, String] :quick_connect_id
|
4731
|
+
# The identifier for the quick connect.
|
4732
|
+
#
|
4733
|
+
# @option params [required, Types::QuickConnectConfig] :quick_connect_config
|
4734
|
+
# Information about the configuration settings for the quick connect.
|
4735
|
+
#
|
4736
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4737
|
+
#
|
4738
|
+
# @example Request syntax with placeholder values
|
4739
|
+
#
|
4740
|
+
# resp = client.update_quick_connect_config({
|
4741
|
+
# instance_id: "InstanceId", # required
|
4742
|
+
# quick_connect_id: "QuickConnectId", # required
|
4743
|
+
# quick_connect_config: { # required
|
4744
|
+
# quick_connect_type: "USER", # required, accepts USER, QUEUE, PHONE_NUMBER
|
4745
|
+
# user_config: {
|
4746
|
+
# user_id: "UserId", # required
|
4747
|
+
# contact_flow_id: "ContactFlowId", # required
|
4748
|
+
# },
|
4749
|
+
# queue_config: {
|
4750
|
+
# queue_id: "QueueId", # required
|
4751
|
+
# contact_flow_id: "ContactFlowId", # required
|
4752
|
+
# },
|
4753
|
+
# phone_config: {
|
4754
|
+
# phone_number: "PhoneNumber", # required
|
4755
|
+
# },
|
4756
|
+
# },
|
4757
|
+
# })
|
4758
|
+
#
|
4759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQuickConnectConfig AWS API Documentation
|
4760
|
+
#
|
4761
|
+
# @overload update_quick_connect_config(params = {})
|
4762
|
+
# @param [Hash] params ({})
|
4763
|
+
def update_quick_connect_config(params = {}, options = {})
|
4764
|
+
req = build_request(:update_quick_connect_config, params)
|
4765
|
+
req.send_request(options)
|
4766
|
+
end
|
4767
|
+
|
4768
|
+
# This API is in preview release for Amazon Connect and is subject to
|
4769
|
+
# change.
|
4770
|
+
#
|
4771
|
+
# Updates the name and description of a quick connect. The request
|
4772
|
+
# accepts the following data in JSON format. At least `Name` or
|
4773
|
+
# `Description` must be provided.
|
4774
|
+
#
|
4775
|
+
# @option params [required, String] :instance_id
|
4776
|
+
# The identifier of the Amazon Connect instance.
|
4777
|
+
#
|
4778
|
+
# @option params [required, String] :quick_connect_id
|
4779
|
+
# The identifier for the quick connect.
|
4780
|
+
#
|
4781
|
+
# @option params [String] :name
|
4782
|
+
# The name of the quick connect.
|
4783
|
+
#
|
4784
|
+
# @option params [String] :description
|
4785
|
+
# The description of the quick connect.
|
4786
|
+
#
|
4787
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4788
|
+
#
|
4789
|
+
# @example Request syntax with placeholder values
|
4790
|
+
#
|
4791
|
+
# resp = client.update_quick_connect_name({
|
4792
|
+
# instance_id: "InstanceId", # required
|
4793
|
+
# quick_connect_id: "QuickConnectId", # required
|
4794
|
+
# name: "QuickConnectName",
|
4795
|
+
# description: "QuickConnectDescription",
|
4796
|
+
# })
|
4797
|
+
#
|
4798
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQuickConnectName AWS API Documentation
|
4799
|
+
#
|
4800
|
+
# @overload update_quick_connect_name(params = {})
|
4801
|
+
# @param [Hash] params ({})
|
4802
|
+
def update_quick_connect_name(params = {}, options = {})
|
4803
|
+
req = build_request(:update_quick_connect_name, params)
|
4804
|
+
req.send_request(options)
|
4805
|
+
end
|
4806
|
+
|
2694
4807
|
# Updates the channels that agents can handle in the Contact Control
|
2695
4808
|
# Panel (CCP) for a routing profile.
|
2696
4809
|
#
|
@@ -2701,7 +4814,8 @@ module Aws::Connect
|
|
2701
4814
|
# The identifier of the routing profile.
|
2702
4815
|
#
|
2703
4816
|
# @option params [required, Array<Types::MediaConcurrency>] :media_concurrencies
|
2704
|
-
# The channels agents can handle in the Contact Control Panel
|
4817
|
+
# The channels that agents can handle in the Contact Control Panel
|
4818
|
+
# (CCP).
|
2705
4819
|
#
|
2706
4820
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2707
4821
|
#
|
@@ -2712,7 +4826,7 @@ module Aws::Connect
|
|
2712
4826
|
# routing_profile_id: "RoutingProfileId", # required
|
2713
4827
|
# media_concurrencies: [ # required
|
2714
4828
|
# {
|
2715
|
-
# channel: "VOICE", # required, accepts VOICE, CHAT
|
4829
|
+
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK
|
2716
4830
|
# concurrency: 1, # required
|
2717
4831
|
# },
|
2718
4832
|
# ],
|
@@ -2804,7 +4918,9 @@ module Aws::Connect
|
|
2804
4918
|
# The identifier of the routing profile.
|
2805
4919
|
#
|
2806
4920
|
# @option params [required, Array<Types::RoutingProfileQueueConfig>] :queue_configs
|
2807
|
-
# The queues to be updated for this routing profile.
|
4921
|
+
# The queues to be updated for this routing profile. Queues must first
|
4922
|
+
# be associated to the routing profile. You can do this using
|
4923
|
+
# AssociateRoutingProfileQueues.
|
2808
4924
|
#
|
2809
4925
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2810
4926
|
#
|
@@ -2817,7 +4933,7 @@ module Aws::Connect
|
|
2817
4933
|
# {
|
2818
4934
|
# queue_reference: { # required
|
2819
4935
|
# queue_id: "QueueId", # required
|
2820
|
-
# channel: "VOICE", # required, accepts VOICE, CHAT
|
4936
|
+
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK
|
2821
4937
|
# },
|
2822
4938
|
# priority: 1, # required
|
2823
4939
|
# delay: 1, # required
|
@@ -2939,14 +5055,13 @@ module Aws::Connect
|
|
2939
5055
|
|
2940
5056
|
# Updates the identity information for the specified user.
|
2941
5057
|
#
|
2942
|
-
#
|
2943
|
-
#
|
2944
|
-
#
|
2945
|
-
#
|
2946
|
-
#
|
2947
|
-
#
|
2948
|
-
#
|
2949
|
-
# *Amazon Connect Administrator Guide*.
|
5058
|
+
# We strongly recommend limiting who has the ability to invoke
|
5059
|
+
# `UpdateUserIdentityInfo`. Someone with that ability can change the
|
5060
|
+
# login credentials of other users by changing their email address. This
|
5061
|
+
# poses a security risk to your organization. They can change the email
|
5062
|
+
# address of a user to the attacker's email address, and then reset the
|
5063
|
+
# password through email. For more information, see [Best Practices for
|
5064
|
+
# Security Profiles][1] in the *Amazon Connect Administrator Guide*.
|
2950
5065
|
#
|
2951
5066
|
#
|
2952
5067
|
#
|
@@ -3092,7 +5207,7 @@ module Aws::Connect
|
|
3092
5207
|
params: params,
|
3093
5208
|
config: config)
|
3094
5209
|
context[:gem_name] = 'aws-sdk-connect'
|
3095
|
-
context[:gem_version] = '1.
|
5210
|
+
context[:gem_version] = '1.40.0'
|
3096
5211
|
Seahorse::Client::Request.new(handlers, context)
|
3097
5212
|
end
|
3098
5213
|
|