aws-sdk-connect 1.195.0 → 1.197.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +536 -197
- data/lib/aws-sdk-connect/client_api.rb +49 -1
- data/lib/aws-sdk-connect/types.rb +575 -204
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +43 -15
- data/sig/types.rbs +35 -0
- metadata +2 -2
@@ -539,13 +539,39 @@ module Aws::Connect
|
|
539
539
|
# The Amazon Resource Name (ARN) of the Resource Access Manager share.
|
540
540
|
# @return [String]
|
541
541
|
#
|
542
|
+
# @!attribute [rw] resource_share_status
|
543
|
+
# The Amazon Web Services Resource Access Manager status of
|
544
|
+
# association.
|
545
|
+
# @return [String]
|
546
|
+
#
|
542
547
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AnalyticsDataAssociationResult AWS API Documentation
|
543
548
|
#
|
544
549
|
class AnalyticsDataAssociationResult < Struct.new(
|
545
550
|
:data_set_id,
|
546
551
|
:target_account_id,
|
547
552
|
:resource_share_id,
|
548
|
-
:resource_share_arn
|
553
|
+
:resource_share_arn,
|
554
|
+
:resource_share_status)
|
555
|
+
SENSITIVE = []
|
556
|
+
include Aws::Structure
|
557
|
+
end
|
558
|
+
|
559
|
+
# Information about datasets that are available to associate with:
|
560
|
+
# `DataSetId`, `DataSetName`.
|
561
|
+
#
|
562
|
+
# @!attribute [rw] data_set_id
|
563
|
+
# The identifier of the dataset.
|
564
|
+
# @return [String]
|
565
|
+
#
|
566
|
+
# @!attribute [rw] data_set_name
|
567
|
+
# The name of the dataset.
|
568
|
+
# @return [String]
|
569
|
+
#
|
570
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AnalyticsDataSetsResult AWS API Documentation
|
571
|
+
#
|
572
|
+
class AnalyticsDataSetsResult < Struct.new(
|
573
|
+
:data_set_id,
|
574
|
+
:data_set_name)
|
549
575
|
SENSITIVE = []
|
550
576
|
include Aws::Structure
|
551
577
|
end
|
@@ -678,11 +704,26 @@ module Aws::Connect
|
|
678
704
|
# The domain to add to your allow list.
|
679
705
|
# @return [String]
|
680
706
|
#
|
707
|
+
# @!attribute [rw] client_token
|
708
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
709
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
710
|
+
# SDK populates this field. For more information about idempotency,
|
711
|
+
# see [Making retries safe with idempotent APIs][1].
|
712
|
+
#
|
713
|
+
# **A suitable default value is auto-generated.** You should normally
|
714
|
+
# not need to pass this option.
|
715
|
+
#
|
716
|
+
#
|
717
|
+
#
|
718
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
719
|
+
# @return [String]
|
720
|
+
#
|
681
721
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateApprovedOriginRequest AWS API Documentation
|
682
722
|
#
|
683
723
|
class AssociateApprovedOriginRequest < Struct.new(
|
684
724
|
:instance_id,
|
685
|
-
:origin
|
725
|
+
:origin,
|
726
|
+
:client_token)
|
686
727
|
SENSITIVE = []
|
687
728
|
include Aws::Structure
|
688
729
|
end
|
@@ -704,12 +745,27 @@ module Aws::Connect
|
|
704
745
|
# The Amazon Lex V2 bot to associate with the instance.
|
705
746
|
# @return [Types::LexV2Bot]
|
706
747
|
#
|
748
|
+
# @!attribute [rw] client_token
|
749
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
750
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
751
|
+
# SDK populates this field. For more information about idempotency,
|
752
|
+
# see [Making retries safe with idempotent APIs][1].
|
753
|
+
#
|
754
|
+
# **A suitable default value is auto-generated.** You should normally
|
755
|
+
# not need to pass this option.
|
756
|
+
#
|
757
|
+
#
|
758
|
+
#
|
759
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
760
|
+
# @return [String]
|
761
|
+
#
|
707
762
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateBotRequest AWS API Documentation
|
708
763
|
#
|
709
764
|
class AssociateBotRequest < Struct.new(
|
710
765
|
:instance_id,
|
711
766
|
:lex_bot,
|
712
|
-
:lex_v2_bot
|
767
|
+
:lex_v2_bot,
|
768
|
+
:client_token)
|
713
769
|
SENSITIVE = []
|
714
770
|
include Aws::Structure
|
715
771
|
end
|
@@ -832,12 +888,27 @@ module Aws::Connect
|
|
832
888
|
# A valid storage type.
|
833
889
|
# @return [Types::InstanceStorageConfig]
|
834
890
|
#
|
891
|
+
# @!attribute [rw] client_token
|
892
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
893
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
894
|
+
# SDK populates this field. For more information about idempotency,
|
895
|
+
# see [Making retries safe with idempotent APIs][1].
|
896
|
+
#
|
897
|
+
# **A suitable default value is auto-generated.** You should normally
|
898
|
+
# not need to pass this option.
|
899
|
+
#
|
900
|
+
#
|
901
|
+
#
|
902
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
903
|
+
# @return [String]
|
904
|
+
#
|
835
905
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateInstanceStorageConfigRequest AWS API Documentation
|
836
906
|
#
|
837
907
|
class AssociateInstanceStorageConfigRequest < Struct.new(
|
838
908
|
:instance_id,
|
839
909
|
:resource_type,
|
840
|
-
:storage_config
|
910
|
+
:storage_config,
|
911
|
+
:client_token)
|
841
912
|
SENSITIVE = []
|
842
913
|
include Aws::Structure
|
843
914
|
end
|
@@ -869,11 +940,26 @@ module Aws::Connect
|
|
869
940
|
# associated. Maximum number of characters allowed is 140.
|
870
941
|
# @return [String]
|
871
942
|
#
|
943
|
+
# @!attribute [rw] client_token
|
944
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
945
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
946
|
+
# SDK populates this field. For more information about idempotency,
|
947
|
+
# see [Making retries safe with idempotent APIs][1].
|
948
|
+
#
|
949
|
+
# **A suitable default value is auto-generated.** You should normally
|
950
|
+
# not need to pass this option.
|
951
|
+
#
|
952
|
+
#
|
953
|
+
#
|
954
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
955
|
+
# @return [String]
|
956
|
+
#
|
872
957
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateLambdaFunctionRequest AWS API Documentation
|
873
958
|
#
|
874
959
|
class AssociateLambdaFunctionRequest < Struct.new(
|
875
960
|
:instance_id,
|
876
|
-
:function_arn
|
961
|
+
:function_arn,
|
962
|
+
:client_token)
|
877
963
|
SENSITIVE = []
|
878
964
|
include Aws::Structure
|
879
965
|
end
|
@@ -891,11 +977,26 @@ module Aws::Connect
|
|
891
977
|
# The Amazon Lex bot to associate with the instance.
|
892
978
|
# @return [Types::LexBot]
|
893
979
|
#
|
980
|
+
# @!attribute [rw] client_token
|
981
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
982
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
983
|
+
# SDK populates this field. For more information about idempotency,
|
984
|
+
# see [Making retries safe with idempotent APIs][1].
|
985
|
+
#
|
986
|
+
# **A suitable default value is auto-generated.** You should normally
|
987
|
+
# not need to pass this option.
|
988
|
+
#
|
989
|
+
#
|
990
|
+
#
|
991
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
992
|
+
# @return [String]
|
993
|
+
#
|
894
994
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateLexBotRequest AWS API Documentation
|
895
995
|
#
|
896
996
|
class AssociateLexBotRequest < Struct.new(
|
897
997
|
:instance_id,
|
898
|
-
:lex_bot
|
998
|
+
:lex_bot,
|
999
|
+
:client_token)
|
899
1000
|
SENSITIVE = []
|
900
1001
|
include Aws::Structure
|
901
1002
|
end
|
@@ -994,11 +1095,26 @@ module Aws::Connect
|
|
994
1095
|
# A valid security key in PEM format as a String.
|
995
1096
|
# @return [String]
|
996
1097
|
#
|
1098
|
+
# @!attribute [rw] client_token
|
1099
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
1100
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
1101
|
+
# SDK populates this field. For more information about idempotency,
|
1102
|
+
# see [Making retries safe with idempotent APIs][1].
|
1103
|
+
#
|
1104
|
+
# **A suitable default value is auto-generated.** You should normally
|
1105
|
+
# not need to pass this option.
|
1106
|
+
#
|
1107
|
+
#
|
1108
|
+
#
|
1109
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
1110
|
+
# @return [String]
|
1111
|
+
#
|
997
1112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateSecurityKeyRequest AWS API Documentation
|
998
1113
|
#
|
999
1114
|
class AssociateSecurityKeyRequest < Struct.new(
|
1000
1115
|
:instance_id,
|
1001
|
-
:key
|
1116
|
+
:key,
|
1117
|
+
:client_token)
|
1002
1118
|
SENSITIVE = []
|
1003
1119
|
include Aws::Structure
|
1004
1120
|
end
|
@@ -1396,8 +1512,8 @@ module Aws::Connect
|
|
1396
1512
|
end
|
1397
1513
|
|
1398
1514
|
# This API is in preview release for Amazon Connect and is subject to
|
1399
|
-
# change. To request access to this API, contact Amazon Web
|
1400
|
-
#
|
1515
|
+
# change. To request access to this API, contact Amazon Web
|
1516
|
+
# ServicesSupport.
|
1401
1517
|
#
|
1402
1518
|
# Information about an authentication profile. An authentication profile
|
1403
1519
|
# is a resource that stores the authentication settings for users in
|
@@ -1510,8 +1626,8 @@ module Aws::Connect
|
|
1510
1626
|
end
|
1511
1627
|
|
1512
1628
|
# This API is in preview release for Amazon Connect and is subject to
|
1513
|
-
# change. To request access to this API, contact Amazon Web
|
1514
|
-
#
|
1629
|
+
# change. To request access to this API, contact Amazon Web
|
1630
|
+
# ServicesSupport.
|
1515
1631
|
#
|
1516
1632
|
# A summary of a given authentication profile.
|
1517
1633
|
#
|
@@ -3628,10 +3744,19 @@ module Aws::Connect
|
|
3628
3744
|
#
|
3629
3745
|
# @!attribute [rw] channel
|
3630
3746
|
# The channel for the contact
|
3747
|
+
#
|
3748
|
+
# CreateContact only supports the EMAIL channel. The following
|
3749
|
+
# information that states other channels are supported is incorrect.
|
3750
|
+
# We are working to update this topic.
|
3631
3751
|
# @return [String]
|
3632
3752
|
#
|
3633
3753
|
# @!attribute [rw] initiation_method
|
3634
3754
|
# Indicates how the contact was initiated.
|
3755
|
+
#
|
3756
|
+
# CreateContact only supports the following initiation methods:
|
3757
|
+
# OUTBOUND, AGENT\_REPLY, and FLOW. The following information that
|
3758
|
+
# states other initiation methods are supported is incorrect. We are
|
3759
|
+
# working to update this topic.
|
3635
3760
|
# @return [String]
|
3636
3761
|
#
|
3637
3762
|
# @!attribute [rw] expiry_duration_in_minutes
|
@@ -3972,6 +4097,9 @@ module Aws::Connect
|
|
3972
4097
|
|
3973
4098
|
# @!attribute [rw] client_token
|
3974
4099
|
# The idempotency token.
|
4100
|
+
#
|
4101
|
+
# **A suitable default value is auto-generated.** You should normally
|
4102
|
+
# not need to pass this option.
|
3975
4103
|
# @return [String]
|
3976
4104
|
#
|
3977
4105
|
# @!attribute [rw] identity_management_type
|
@@ -4775,9 +4903,13 @@ module Aws::Connect
|
|
4775
4903
|
#
|
4776
4904
|
# @!attribute [rw] tag_restricted_resources
|
4777
4905
|
# The list of resources that a security profile applies tag
|
4778
|
-
# restrictions to in Amazon Connect.
|
4779
|
-
#
|
4780
|
-
#
|
4906
|
+
# restrictions to in Amazon Connect. For a list of Amazon Connect
|
4907
|
+
# resources that you can tag, see [Add tags to resources in Amazon
|
4908
|
+
# Connect][1] in the *Amazon Connect Administrator Guide*.
|
4909
|
+
#
|
4910
|
+
#
|
4911
|
+
#
|
4912
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/tagging.html
|
4781
4913
|
# @return [Array<String>]
|
4782
4914
|
#
|
4783
4915
|
# @!attribute [rw] applications
|
@@ -6014,10 +6146,25 @@ module Aws::Connect
|
|
6014
6146
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6015
6147
|
# @return [String]
|
6016
6148
|
#
|
6149
|
+
# @!attribute [rw] client_token
|
6150
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
6151
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
6152
|
+
# SDK populates this field. For more information about idempotency,
|
6153
|
+
# see [Making retries safe with idempotent APIs][1].
|
6154
|
+
#
|
6155
|
+
# **A suitable default value is auto-generated.** You should normally
|
6156
|
+
# not need to pass this option.
|
6157
|
+
#
|
6158
|
+
#
|
6159
|
+
#
|
6160
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
6161
|
+
# @return [String]
|
6162
|
+
#
|
6017
6163
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteInstanceRequest AWS API Documentation
|
6018
6164
|
#
|
6019
6165
|
class DeleteInstanceRequest < Struct.new(
|
6020
|
-
:instance_id
|
6166
|
+
:instance_id,
|
6167
|
+
:client_token)
|
6021
6168
|
SENSITIVE = []
|
6022
6169
|
include Aws::Structure
|
6023
6170
|
end
|
@@ -7495,11 +7642,26 @@ module Aws::Connect
|
|
7495
7642
|
# The domain URL of the integrated application.
|
7496
7643
|
# @return [String]
|
7497
7644
|
#
|
7645
|
+
# @!attribute [rw] client_token
|
7646
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
7647
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
7648
|
+
# SDK populates this field. For more information about idempotency,
|
7649
|
+
# see [Making retries safe with idempotent APIs][1].
|
7650
|
+
#
|
7651
|
+
# **A suitable default value is auto-generated.** You should normally
|
7652
|
+
# not need to pass this option.
|
7653
|
+
#
|
7654
|
+
#
|
7655
|
+
#
|
7656
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
7657
|
+
# @return [String]
|
7658
|
+
#
|
7498
7659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateApprovedOriginRequest AWS API Documentation
|
7499
7660
|
#
|
7500
7661
|
class DisassociateApprovedOriginRequest < Struct.new(
|
7501
7662
|
:instance_id,
|
7502
|
-
:origin
|
7663
|
+
:origin,
|
7664
|
+
:client_token)
|
7503
7665
|
SENSITIVE = []
|
7504
7666
|
include Aws::Structure
|
7505
7667
|
end
|
@@ -7521,12 +7683,27 @@ module Aws::Connect
|
|
7521
7683
|
# The Amazon Lex V2 bot to disassociate from the instance.
|
7522
7684
|
# @return [Types::LexV2Bot]
|
7523
7685
|
#
|
7686
|
+
# @!attribute [rw] client_token
|
7687
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
7688
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
7689
|
+
# SDK populates this field. For more information about idempotency,
|
7690
|
+
# see [Making retries safe with idempotent APIs][1].
|
7691
|
+
#
|
7692
|
+
# **A suitable default value is auto-generated.** You should normally
|
7693
|
+
# not need to pass this option.
|
7694
|
+
#
|
7695
|
+
#
|
7696
|
+
#
|
7697
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
7698
|
+
# @return [String]
|
7699
|
+
#
|
7524
7700
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateBotRequest AWS API Documentation
|
7525
7701
|
#
|
7526
7702
|
class DisassociateBotRequest < Struct.new(
|
7527
7703
|
:instance_id,
|
7528
7704
|
:lex_bot,
|
7529
|
-
:lex_v2_bot
|
7705
|
+
:lex_v2_bot,
|
7706
|
+
:client_token)
|
7530
7707
|
SENSITIVE = []
|
7531
7708
|
include Aws::Structure
|
7532
7709
|
end
|
@@ -7586,12 +7763,27 @@ module Aws::Connect
|
|
7586
7763
|
# A valid resource type.
|
7587
7764
|
# @return [String]
|
7588
7765
|
#
|
7766
|
+
# @!attribute [rw] client_token
|
7767
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
7768
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
7769
|
+
# SDK populates this field. For more information about idempotency,
|
7770
|
+
# see [Making retries safe with idempotent APIs][1].
|
7771
|
+
#
|
7772
|
+
# **A suitable default value is auto-generated.** You should normally
|
7773
|
+
# not need to pass this option.
|
7774
|
+
#
|
7775
|
+
#
|
7776
|
+
#
|
7777
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
7778
|
+
# @return [String]
|
7779
|
+
#
|
7589
7780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateInstanceStorageConfigRequest AWS API Documentation
|
7590
7781
|
#
|
7591
7782
|
class DisassociateInstanceStorageConfigRequest < Struct.new(
|
7592
7783
|
:instance_id,
|
7593
7784
|
:association_id,
|
7594
|
-
:resource_type
|
7785
|
+
:resource_type,
|
7786
|
+
:client_token)
|
7595
7787
|
SENSITIVE = []
|
7596
7788
|
include Aws::Structure
|
7597
7789
|
end
|
@@ -7610,11 +7802,26 @@ module Aws::Connect
|
|
7610
7802
|
# disassociated.
|
7611
7803
|
# @return [String]
|
7612
7804
|
#
|
7805
|
+
# @!attribute [rw] client_token
|
7806
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
7807
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
7808
|
+
# SDK populates this field. For more information about idempotency,
|
7809
|
+
# see [Making retries safe with idempotent APIs][1].
|
7810
|
+
#
|
7811
|
+
# **A suitable default value is auto-generated.** You should normally
|
7812
|
+
# not need to pass this option.
|
7813
|
+
#
|
7814
|
+
#
|
7815
|
+
#
|
7816
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
7817
|
+
# @return [String]
|
7818
|
+
#
|
7613
7819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateLambdaFunctionRequest AWS API Documentation
|
7614
7820
|
#
|
7615
7821
|
class DisassociateLambdaFunctionRequest < Struct.new(
|
7616
7822
|
:instance_id,
|
7617
|
-
:function_arn
|
7823
|
+
:function_arn,
|
7824
|
+
:client_token)
|
7618
7825
|
SENSITIVE = []
|
7619
7826
|
include Aws::Structure
|
7620
7827
|
end
|
@@ -7637,12 +7844,27 @@ module Aws::Connect
|
|
7637
7844
|
# created.
|
7638
7845
|
# @return [String]
|
7639
7846
|
#
|
7847
|
+
# @!attribute [rw] client_token
|
7848
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
7849
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
7850
|
+
# SDK populates this field. For more information about idempotency,
|
7851
|
+
# see [Making retries safe with idempotent APIs][1].
|
7852
|
+
#
|
7853
|
+
# **A suitable default value is auto-generated.** You should normally
|
7854
|
+
# not need to pass this option.
|
7855
|
+
#
|
7856
|
+
#
|
7857
|
+
#
|
7858
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
7859
|
+
# @return [String]
|
7860
|
+
#
|
7640
7861
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateLexBotRequest AWS API Documentation
|
7641
7862
|
#
|
7642
7863
|
class DisassociateLexBotRequest < Struct.new(
|
7643
7864
|
:instance_id,
|
7644
7865
|
:bot_name,
|
7645
|
-
:lex_region
|
7866
|
+
:lex_region,
|
7867
|
+
:client_token)
|
7646
7868
|
SENSITIVE = []
|
7647
7869
|
include Aws::Structure
|
7648
7870
|
end
|
@@ -7737,11 +7959,26 @@ module Aws::Connect
|
|
7737
7959
|
# resource type and storage config for the given instance ID.
|
7738
7960
|
# @return [String]
|
7739
7961
|
#
|
7962
|
+
# @!attribute [rw] client_token
|
7963
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
7964
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
7965
|
+
# SDK populates this field. For more information about idempotency,
|
7966
|
+
# see [Making retries safe with idempotent APIs][1].
|
7967
|
+
#
|
7968
|
+
# **A suitable default value is auto-generated.** You should normally
|
7969
|
+
# not need to pass this option.
|
7970
|
+
#
|
7971
|
+
#
|
7972
|
+
#
|
7973
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
7974
|
+
# @return [String]
|
7975
|
+
#
|
7740
7976
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateSecurityKeyRequest AWS API Documentation
|
7741
7977
|
#
|
7742
7978
|
class DisassociateSecurityKeyRequest < Struct.new(
|
7743
7979
|
:instance_id,
|
7744
|
-
:association_id
|
7980
|
+
:association_id,
|
7981
|
+
:client_token)
|
7745
7982
|
SENSITIVE = []
|
7746
7983
|
include Aws::Structure
|
7747
7984
|
end
|
@@ -10315,11 +10552,12 @@ module Aws::Connect
|
|
10315
10552
|
# `CAMPAIGN` \| `CAMPAIGN_DELIVERY_EVENT_TYPE` \|`CASE_TEMPLATE_ARN`
|
10316
10553
|
# \| `CASE_STATUS` \| `CHANNEL` \|
|
10317
10554
|
# `contact/segmentAttributes/connect:Subtype` \| `DISCONNECT_REASON`
|
10318
|
-
# \| `
|
10319
|
-
# `
|
10320
|
-
# `
|
10321
|
-
# `
|
10322
|
-
# `
|
10555
|
+
# \| `EVALUATION_FORM` \| `EVALUATION_SECTION` \|
|
10556
|
+
# `EVALUATION_QUESTION` \| `EVALUATION_SOURCE` \| `FEATURE` \|
|
10557
|
+
# `FLOW_ACTION_ID` \| `FLOW_TYPE` \| `FLOWS_MODULE_RESOURCE_ID` \|
|
10558
|
+
# `FLOWS_NEXT_RESOURCE_ID` \| `FLOWS_NEXT_RESOURCE_QUEUE_ID` \|
|
10559
|
+
# `FLOWS_OUTCOME_TYPE` \| `FLOWS_RESOURCE_ID` \| `FORM_VERSION` \|
|
10560
|
+
# `INITIATION_METHOD` \| `INVOKING_RESOURCE_PUBLISHED_TIMESTAMP` \|
|
10323
10561
|
# `INVOKING_RESOURCE_TYPE` \| `PARENT_FLOWS_RESOURCE_ID` \|
|
10324
10562
|
# `RESOURCE_PUBLISHED_TIMESTAMP` \| `ROUTING_PROFILE` \|
|
10325
10563
|
# `ROUTING_STEP_EXPRESSION` \| `QUEUE` \| `Q_CONNECT_ENABLED` \|
|
@@ -10379,12 +10617,20 @@ module Aws::Connect
|
|
10379
10617
|
# `CAMPAIGN_DELIVERY_EVENT_TYPE` \| `CASE_TEMPLATE_ARN` \|
|
10380
10618
|
# `CASE_STATUS` \| `CHANNEL` \|
|
10381
10619
|
# `contact/segmentAttributes/connect:Subtype` \| `DISCONNECT_REASON`
|
10382
|
-
# \| `
|
10383
|
-
# `
|
10384
|
-
# `
|
10385
|
-
# `
|
10386
|
-
# `
|
10387
|
-
# `
|
10620
|
+
# \| `EVALUATION_FORM` \| `EVALUATION_SECTION` \|
|
10621
|
+
# `EVALUATION_QUESTION` \| `EVALUATION_SOURCE` \| `FLOWS_RESOURCE_ID`
|
10622
|
+
# \| `FLOWS_MODULE_RESOURCE_ID` \| `FLOW_ACTION_ID` \| `FLOW_TYPE` \|
|
10623
|
+
# `FLOWS_OUTCOME_TYPE` \| `FORM_VERSION` \| `INITIATION_METHOD` \|
|
10624
|
+
# `INVOKING_RESOURCE_PUBLISHED_TIMESTAMP` \| `INVOKING_RESOURCE_TYPE`
|
10625
|
+
# \| `PARENT_FLOWS_RESOURCE_ID` \| `Q_CONNECT_ENABLED` \| `QUEUE` \|
|
10626
|
+
# `RESOURCE_PUBLISHED_TIMESTAMP` \| `ROUTING_PROFILE` \|
|
10627
|
+
# `ROUTING_STEP_EXPRESSION`
|
10628
|
+
#
|
10629
|
+
# Type: Array of strings
|
10630
|
+
#
|
10631
|
+
# Array Members: Maximum number of 4 items
|
10632
|
+
#
|
10633
|
+
# Required: No
|
10388
10634
|
# @return [Array<String>]
|
10389
10635
|
#
|
10390
10636
|
# @!attribute [rw] metrics
|
@@ -10631,6 +10877,16 @@ module Aws::Connect
|
|
10631
10877
|
#
|
10632
10878
|
# UI name: [Average dials per minute][23]
|
10633
10879
|
#
|
10880
|
+
# AVG\_EVALUATION\_SCORE
|
10881
|
+
#
|
10882
|
+
# : Unit: Percent
|
10883
|
+
#
|
10884
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
10885
|
+
# Evaluation Form ID, Evaluation Section ID, Evaluation Question ID,
|
10886
|
+
# Evaluation Source, Form Version, Queue, Routing Profile
|
10887
|
+
#
|
10888
|
+
# UI name: [Average agent evaluation score][24]
|
10889
|
+
#
|
10634
10890
|
# AVG\_FLOW\_TIME
|
10635
10891
|
#
|
10636
10892
|
# : Unit: Seconds
|
@@ -10641,7 +10897,7 @@ module Aws::Connect
|
|
10641
10897
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
10642
10898
|
# published timestamp
|
10643
10899
|
#
|
10644
|
-
# UI name: [Average flow time][
|
10900
|
+
# UI name: [Average flow time][25]
|
10645
10901
|
#
|
10646
10902
|
# AVG\_GREETING\_TIME\_AGENT
|
10647
10903
|
#
|
@@ -10654,7 +10910,7 @@ module Aws::Connect
|
|
10654
10910
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10655
10911
|
# Q in Connect
|
10656
10912
|
#
|
10657
|
-
# UI name: [Average agent greeting time][
|
10913
|
+
# UI name: [Average agent greeting time][26]
|
10658
10914
|
#
|
10659
10915
|
# AVG\_HANDLE\_TIME
|
10660
10916
|
#
|
@@ -10664,7 +10920,7 @@ module Aws::Connect
|
|
10664
10920
|
# Agent, Agent Hierarchy, Feature,
|
10665
10921
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression
|
10666
10922
|
#
|
10667
|
-
# UI name: [Average handle time][
|
10923
|
+
# UI name: [Average handle time][27]
|
10668
10924
|
#
|
10669
10925
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10670
10926
|
#
|
@@ -10678,7 +10934,7 @@ module Aws::Connect
|
|
10678
10934
|
# Agent, Agent Hierarchy, Feature,
|
10679
10935
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
10680
10936
|
#
|
10681
|
-
# UI name: [Average customer hold time][
|
10937
|
+
# UI name: [Average customer hold time][28]
|
10682
10938
|
#
|
10683
10939
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10684
10940
|
#
|
@@ -10692,7 +10948,7 @@ module Aws::Connect
|
|
10692
10948
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10693
10949
|
# Q in Connect
|
10694
10950
|
#
|
10695
|
-
# UI name: [Average customer hold time all contacts][
|
10951
|
+
# UI name: [Average customer hold time all contacts][29]
|
10696
10952
|
#
|
10697
10953
|
# AVG\_HOLDS
|
10698
10954
|
#
|
@@ -10702,7 +10958,7 @@ module Aws::Connect
|
|
10702
10958
|
# Agent, Agent Hierarchy, Feature,
|
10703
10959
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
10704
10960
|
#
|
10705
|
-
# UI name: [Average holds][
|
10961
|
+
# UI name: [Average holds][30]
|
10706
10962
|
#
|
10707
10963
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10708
10964
|
#
|
@@ -10716,7 +10972,7 @@ module Aws::Connect
|
|
10716
10972
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10717
10973
|
# Q in Connect
|
10718
10974
|
#
|
10719
|
-
# UI name: [Average agent interaction and customer hold time][
|
10975
|
+
# UI name: [Average agent interaction and customer hold time][31]
|
10720
10976
|
#
|
10721
10977
|
# AVG\_INTERACTION\_TIME
|
10722
10978
|
#
|
@@ -10727,7 +10983,7 @@ module Aws::Connect
|
|
10727
10983
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10728
10984
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
10729
10985
|
#
|
10730
|
-
# UI name: [Average agent interaction time][
|
10986
|
+
# UI name: [Average agent interaction time][32]
|
10731
10987
|
#
|
10732
10988
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10733
10989
|
#
|
@@ -10744,7 +11000,7 @@ module Aws::Connect
|
|
10744
11000
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10745
11001
|
# Q in Connect
|
10746
11002
|
#
|
10747
|
-
# UI name: [Average agent interruptions][
|
11003
|
+
# UI name: [Average agent interruptions][33]
|
10748
11004
|
#
|
10749
11005
|
# AVG\_INTERRUPTION\_TIME\_AGENT
|
10750
11006
|
#
|
@@ -10757,7 +11013,7 @@ module Aws::Connect
|
|
10757
11013
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10758
11014
|
# Q in Connect
|
10759
11015
|
#
|
10760
|
-
# UI name: [Average agent interruption time][
|
11016
|
+
# UI name: [Average agent interruption time][34]
|
10761
11017
|
#
|
10762
11018
|
# AVG\_NON\_TALK\_TIME
|
10763
11019
|
#
|
@@ -10770,7 +11026,7 @@ module Aws::Connect
|
|
10770
11026
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10771
11027
|
# Q in Connect
|
10772
11028
|
#
|
10773
|
-
# UI name: [Average non-talk time][
|
11029
|
+
# UI name: [Average non-talk time][35]
|
10774
11030
|
#
|
10775
11031
|
# AVG\_QUEUE\_ANSWER\_TIME
|
10776
11032
|
#
|
@@ -10779,7 +11035,7 @@ module Aws::Connect
|
|
10779
11035
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10780
11036
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
10781
11037
|
#
|
10782
|
-
# UI name: [Average queue answer time][
|
11038
|
+
# UI name: [Average queue answer time][36]
|
10783
11039
|
#
|
10784
11040
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10785
11041
|
#
|
@@ -10792,7 +11048,7 @@ module Aws::Connect
|
|
10792
11048
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10793
11049
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
10794
11050
|
#
|
10795
|
-
# UI name: [Average resolution time][
|
11051
|
+
# UI name: [Average resolution time][37]
|
10796
11052
|
#
|
10797
11053
|
# AVG\_TALK\_TIME
|
10798
11054
|
#
|
@@ -10805,7 +11061,7 @@ module Aws::Connect
|
|
10805
11061
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10806
11062
|
# Q in Connect
|
10807
11063
|
#
|
10808
|
-
# UI name: [Average talk time][
|
11064
|
+
# UI name: [Average talk time][38]
|
10809
11065
|
#
|
10810
11066
|
# AVG\_TALK\_TIME\_AGENT
|
10811
11067
|
#
|
@@ -10818,7 +11074,7 @@ module Aws::Connect
|
|
10818
11074
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10819
11075
|
# Q in Connect
|
10820
11076
|
#
|
10821
|
-
# UI name: [Average agent talk time][
|
11077
|
+
# UI name: [Average agent talk time][39]
|
10822
11078
|
#
|
10823
11079
|
# AVG\_TALK\_TIME\_CUSTOMER
|
10824
11080
|
#
|
@@ -10831,7 +11087,7 @@ module Aws::Connect
|
|
10831
11087
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10832
11088
|
# Q in Connect
|
10833
11089
|
#
|
10834
|
-
# UI name: [Average customer talk time][
|
11090
|
+
# UI name: [Average customer talk time][40]
|
10835
11091
|
#
|
10836
11092
|
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
|
10837
11093
|
#
|
@@ -10842,7 +11098,17 @@ module Aws::Connect
|
|
10842
11098
|
#
|
10843
11099
|
# Valid groupings and filters: Campaign
|
10844
11100
|
#
|
10845
|
-
# UI name: [Average wait time after customer connection][
|
11101
|
+
# UI name: [Average wait time after customer connection][41]
|
11102
|
+
#
|
11103
|
+
# AVG\_WEIGHTED\_EVALUATION\_SCORE
|
11104
|
+
#
|
11105
|
+
# : Unit: Percent
|
11106
|
+
#
|
11107
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11108
|
+
# Evaluation Form Id, Evaluation Section ID, Evaluation Question ID,
|
11109
|
+
# Evaluation Source, Form Version, Queue, Routing Profile
|
11110
|
+
#
|
11111
|
+
# UI name: [Average weighted agent evaluation score][42]
|
10846
11112
|
#
|
10847
11113
|
# BOT\_CONVERSATIONS\_COMPLETED
|
10848
11114
|
#
|
@@ -10855,7 +11121,7 @@ module Aws::Connect
|
|
10855
11121
|
# Initiation method, Invoking resource type, Parent flows resource
|
10856
11122
|
# ID
|
10857
11123
|
#
|
10858
|
-
# UI name: [Bot conversations][
|
11124
|
+
# UI name: [Bot conversations][43]
|
10859
11125
|
#
|
10860
11126
|
# BOT\_INTENTS\_COMPLETED
|
10861
11127
|
#
|
@@ -10868,7 +11134,7 @@ module Aws::Connect
|
|
10868
11134
|
# published timestamp, Initiation method, Invoking resource type,
|
10869
11135
|
# Parent flows resource ID
|
10870
11136
|
#
|
10871
|
-
# UI name: [Bot intents completed][
|
11137
|
+
# UI name: [Bot intents completed][44]
|
10872
11138
|
#
|
10873
11139
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
|
10874
11140
|
#
|
@@ -10883,7 +11149,7 @@ module Aws::Connect
|
|
10883
11149
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
10884
11150
|
# `GT` (for *Greater than*).
|
10885
11151
|
#
|
10886
|
-
# UI name: [Campaign contacts abandoned after X][
|
11152
|
+
# UI name: [Campaign contacts abandoned after X][45]
|
10887
11153
|
#
|
10888
11154
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
|
10889
11155
|
#
|
@@ -10898,7 +11164,7 @@ module Aws::Connect
|
|
10898
11164
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
10899
11165
|
# `GT` (for *Greater than*).
|
10900
11166
|
#
|
10901
|
-
# UI name: [Campaign contacts abandoned after X rate][
|
11167
|
+
# UI name: [Campaign contacts abandoned after X rate][46]
|
10902
11168
|
#
|
10903
11169
|
# CAMPAIGN\_INTERACTIONS
|
10904
11170
|
#
|
@@ -10911,7 +11177,7 @@ module Aws::Connect
|
|
10911
11177
|
#
|
10912
11178
|
# Valid groupings and filters: Campaign
|
10913
11179
|
#
|
10914
|
-
# UI name: [Campaign interactions][
|
11180
|
+
# UI name: [Campaign interactions][47]
|
10915
11181
|
#
|
10916
11182
|
# CAMPAIGN\_SEND\_ATTEMPTS
|
10917
11183
|
#
|
@@ -10922,7 +11188,7 @@ module Aws::Connect
|
|
10922
11188
|
# Valid groupings and filters: Campaign, Channel,
|
10923
11189
|
# contact/segmentAttributes/connect:Subtype
|
10924
11190
|
#
|
10925
|
-
# UI name: [Campaign send attempts][
|
11191
|
+
# UI name: [Campaign send attempts][48]
|
10926
11192
|
#
|
10927
11193
|
# CASES\_CREATED
|
10928
11194
|
#
|
@@ -10932,7 +11198,7 @@ module Aws::Connect
|
|
10932
11198
|
#
|
10933
11199
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
10934
11200
|
#
|
10935
|
-
# UI name: [Cases created][
|
11201
|
+
# UI name: [Cases created][49]
|
10936
11202
|
#
|
10937
11203
|
# CONTACTS\_CREATED
|
10938
11204
|
#
|
@@ -10943,7 +11209,7 @@ module Aws::Connect
|
|
10943
11209
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10944
11210
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
10945
11211
|
#
|
10946
|
-
# UI name: [Contacts created][
|
11212
|
+
# UI name: [Contacts created][50]
|
10947
11213
|
#
|
10948
11214
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10949
11215
|
#
|
@@ -10960,7 +11226,7 @@ module Aws::Connect
|
|
10960
11226
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression,
|
10961
11227
|
# Q in Connect
|
10962
11228
|
#
|
10963
|
-
# UI name: [API contacts handled][
|
11229
|
+
# UI name: [API contacts handled][51]
|
10964
11230
|
#
|
10965
11231
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10966
11232
|
#
|
@@ -10975,7 +11241,7 @@ module Aws::Connect
|
|
10975
11241
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
10976
11242
|
# Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect
|
10977
11243
|
#
|
10978
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
11244
|
+
# UI name: [Contacts handled (connected to agent timestamp)][52]
|
10979
11245
|
#
|
10980
11246
|
# CONTACTS\_HOLD\_ABANDONS
|
10981
11247
|
#
|
@@ -10985,7 +11251,7 @@ module Aws::Connect
|
|
10985
11251
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10986
11252
|
# Q in Connect
|
10987
11253
|
#
|
10988
|
-
# UI name: [Contacts hold disconnect][
|
11254
|
+
# UI name: [Contacts hold disconnect][52]
|
10989
11255
|
#
|
10990
11256
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
10991
11257
|
#
|
@@ -10994,7 +11260,7 @@ module Aws::Connect
|
|
10994
11260
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10995
11261
|
# Agent, Agent Hierarchy, Q in Connect
|
10996
11262
|
#
|
10997
|
-
# UI name: [Contacts hold agent disconnect][
|
11263
|
+
# UI name: [Contacts hold agent disconnect][53]
|
10998
11264
|
#
|
10999
11265
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
11000
11266
|
#
|
@@ -11003,7 +11269,7 @@ module Aws::Connect
|
|
11003
11269
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11004
11270
|
# Agent, Agent Hierarchy, Q in Connect
|
11005
11271
|
#
|
11006
|
-
# UI name: [Contacts hold customer disconnect][
|
11272
|
+
# UI name: [Contacts hold customer disconnect][54]
|
11007
11273
|
#
|
11008
11274
|
# CONTACTS\_PUT\_ON\_HOLD
|
11009
11275
|
#
|
@@ -11012,7 +11278,7 @@ module Aws::Connect
|
|
11012
11278
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11013
11279
|
# Agent, Agent Hierarchy, Q in Connect
|
11014
11280
|
#
|
11015
|
-
# UI name: [Contacts put on hold][
|
11281
|
+
# UI name: [Contacts put on hold][54]
|
11016
11282
|
#
|
11017
11283
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
11018
11284
|
#
|
@@ -11021,7 +11287,7 @@ module Aws::Connect
|
|
11021
11287
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11022
11288
|
# Agent, Agent Hierarchy, Q in Connect
|
11023
11289
|
#
|
11024
|
-
# UI name: [Contacts transferred out external][
|
11290
|
+
# UI name: [Contacts transferred out external][55]
|
11025
11291
|
#
|
11026
11292
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
11027
11293
|
#
|
@@ -11030,7 +11296,7 @@ module Aws::Connect
|
|
11030
11296
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11031
11297
|
# Agent, Agent Hierarchy, Q in Connect
|
11032
11298
|
#
|
11033
|
-
# UI name: [Contacts transferred out internal][
|
11299
|
+
# UI name: [Contacts transferred out internal][56]
|
11034
11300
|
#
|
11035
11301
|
# CONTACTS\_QUEUED
|
11036
11302
|
#
|
@@ -11040,7 +11306,7 @@ module Aws::Connect
|
|
11040
11306
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11041
11307
|
# Q in Connect
|
11042
11308
|
#
|
11043
|
-
# UI name: [Contacts queued][
|
11309
|
+
# UI name: [Contacts queued][57]
|
11044
11310
|
#
|
11045
11311
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
11046
11312
|
#
|
@@ -11049,7 +11315,7 @@ module Aws::Connect
|
|
11049
11315
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
11050
11316
|
# Hierarchy, contact/segmentAttributes/connect:Subtype
|
11051
11317
|
#
|
11052
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
11318
|
+
# UI name: [Contacts queued (enqueue timestamp)][58]
|
11053
11319
|
#
|
11054
11320
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
11055
11321
|
#
|
@@ -11062,7 +11328,7 @@ module Aws::Connect
|
|
11062
11328
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11063
11329
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11064
11330
|
#
|
11065
|
-
# UI name: [Contacts removed from queue in X seconds][
|
11331
|
+
# UI name: [Contacts removed from queue in X seconds][59]
|
11066
11332
|
#
|
11067
11333
|
# CONTACTS\_RESOLVED\_IN\_X
|
11068
11334
|
#
|
@@ -11075,7 +11341,7 @@ module Aws::Connect
|
|
11075
11341
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11076
11342
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11077
11343
|
#
|
11078
|
-
# UI name: [Contacts resolved in X][
|
11344
|
+
# UI name: [Contacts resolved in X][60]
|
11079
11345
|
#
|
11080
11346
|
# CONTACTS\_TRANSFERRED\_OUT
|
11081
11347
|
#
|
@@ -11085,7 +11351,7 @@ module Aws::Connect
|
|
11085
11351
|
# Agent, Agent Hierarchy, Feature,
|
11086
11352
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11087
11353
|
#
|
11088
|
-
# UI name: [Contacts transferred out][
|
11354
|
+
# UI name: [Contacts transferred out][61]
|
11089
11355
|
#
|
11090
11356
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11091
11357
|
#
|
@@ -11099,7 +11365,7 @@ module Aws::Connect
|
|
11099
11365
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11100
11366
|
# Q in Connect
|
11101
11367
|
#
|
11102
|
-
# UI name: [Contacts transferred out by agent][
|
11368
|
+
# UI name: [Contacts transferred out by agent][62]
|
11103
11369
|
#
|
11104
11370
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
11105
11371
|
#
|
@@ -11109,7 +11375,7 @@ module Aws::Connect
|
|
11109
11375
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11110
11376
|
# Q in Connect
|
11111
11377
|
#
|
11112
|
-
# UI name: [Contacts transferred out queue][
|
11378
|
+
# UI name: [Contacts transferred out queue][62]
|
11113
11379
|
#
|
11114
11380
|
# CURRENT\_CASES
|
11115
11381
|
#
|
@@ -11119,7 +11385,7 @@ module Aws::Connect
|
|
11119
11385
|
#
|
11120
11386
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11121
11387
|
#
|
11122
|
-
# UI name: [Current cases][
|
11388
|
+
# UI name: [Current cases][63]
|
11123
11389
|
#
|
11124
11390
|
# DELIVERY\_ATTEMPTS
|
11125
11391
|
#
|
@@ -11135,7 +11401,7 @@ module Aws::Connect
|
|
11135
11401
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11136
11402
|
# Queue, Routing Profile
|
11137
11403
|
#
|
11138
|
-
# UI name: [Delivery attempts][
|
11404
|
+
# UI name: [Delivery attempts][64]
|
11139
11405
|
#
|
11140
11406
|
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
11141
11407
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -11161,7 +11427,7 @@ module Aws::Connect
|
|
11161
11427
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11162
11428
|
# Queue, Routing Profile
|
11163
11429
|
#
|
11164
|
-
# UI name: [Delivery attempt disposition rate][
|
11430
|
+
# UI name: [Delivery attempt disposition rate][65]
|
11165
11431
|
#
|
11166
11432
|
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only
|
11167
11433
|
# available for SMS and Email campaign delivery modes. Agent, Queue,
|
@@ -11171,6 +11437,16 @@ module Aws::Connect
|
|
11171
11437
|
#
|
11172
11438
|
# </note>
|
11173
11439
|
#
|
11440
|
+
# EVALUATIONS\_PERFORMED
|
11441
|
+
#
|
11442
|
+
# : Unit: Count
|
11443
|
+
#
|
11444
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11445
|
+
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
11446
|
+
# Routing Profile
|
11447
|
+
#
|
11448
|
+
# UI name: [Evaluations performed][66]
|
11449
|
+
#
|
11174
11450
|
# FLOWS\_OUTCOME
|
11175
11451
|
#
|
11176
11452
|
# : Unit: Count
|
@@ -11181,7 +11457,7 @@ module Aws::Connect
|
|
11181
11457
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11182
11458
|
# published timestamp
|
11183
11459
|
#
|
11184
|
-
# UI name: [Flows outcome][
|
11460
|
+
# UI name: [Flows outcome][67]
|
11185
11461
|
#
|
11186
11462
|
# FLOWS\_STARTED
|
11187
11463
|
#
|
@@ -11192,7 +11468,7 @@ module Aws::Connect
|
|
11192
11468
|
# resource ID, Flows resource ID, Initiation method, Resource
|
11193
11469
|
# published timestamp
|
11194
11470
|
#
|
11195
|
-
# UI name: [Flows started][
|
11471
|
+
# UI name: [Flows started][68]
|
11196
11472
|
#
|
11197
11473
|
# HUMAN\_ANSWERED\_CALLS
|
11198
11474
|
#
|
@@ -11204,7 +11480,7 @@ module Aws::Connect
|
|
11204
11480
|
#
|
11205
11481
|
# Valid groupings and filters: Agent, Campaign
|
11206
11482
|
#
|
11207
|
-
# UI name: [Human answered][
|
11483
|
+
# UI name: [Human answered][69]
|
11208
11484
|
#
|
11209
11485
|
# MAX\_FLOW\_TIME
|
11210
11486
|
#
|
@@ -11216,7 +11492,7 @@ module Aws::Connect
|
|
11216
11492
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11217
11493
|
# published timestamp
|
11218
11494
|
#
|
11219
|
-
# UI name: [Maximum flow time][
|
11495
|
+
# UI name: [Maximum flow time][70]
|
11220
11496
|
#
|
11221
11497
|
# MAX\_QUEUED\_TIME
|
11222
11498
|
#
|
@@ -11226,7 +11502,7 @@ module Aws::Connect
|
|
11226
11502
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11227
11503
|
# Q in Connect
|
11228
11504
|
#
|
11229
|
-
# UI name: [Maximum queued time][
|
11505
|
+
# UI name: [Maximum queued time][71]
|
11230
11506
|
#
|
11231
11507
|
# MIN\_FLOW\_TIME
|
11232
11508
|
#
|
@@ -11238,7 +11514,17 @@ module Aws::Connect
|
|
11238
11514
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11239
11515
|
# published timestamp
|
11240
11516
|
#
|
11241
|
-
# UI name: [Minimum flow time][
|
11517
|
+
# UI name: [Minimum flow time][72]
|
11518
|
+
#
|
11519
|
+
# PERCENT\_AUTOMATIC\_FAILS
|
11520
|
+
#
|
11521
|
+
# : Unit: Percent
|
11522
|
+
#
|
11523
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11524
|
+
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
11525
|
+
# Routing Profile
|
11526
|
+
#
|
11527
|
+
# UI name: [Automatic fails percent][73]
|
11242
11528
|
#
|
11243
11529
|
# PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
|
11244
11530
|
#
|
@@ -11251,7 +11537,7 @@ module Aws::Connect
|
|
11251
11537
|
# Initiation method, Invoking resource type, Parent flows resource
|
11252
11538
|
# ID
|
11253
11539
|
#
|
11254
|
-
# UI name: [Percent bot conversations outcome][
|
11540
|
+
# UI name: [Percent bot conversations outcome][74]
|
11255
11541
|
#
|
11256
11542
|
# PERCENT\_BOT\_INTENTS\_OUTCOME
|
11257
11543
|
#
|
@@ -11264,7 +11550,7 @@ module Aws::Connect
|
|
11264
11550
|
# published timestamp, Initiation method, Invoking resource type,
|
11265
11551
|
# Parent flows resource ID
|
11266
11552
|
#
|
11267
|
-
# UI name: [Percent bot intents outcome][
|
11553
|
+
# UI name: [Percent bot intents outcome][75]
|
11268
11554
|
#
|
11269
11555
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
11270
11556
|
#
|
@@ -11274,7 +11560,7 @@ module Aws::Connect
|
|
11274
11560
|
#
|
11275
11561
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11276
11562
|
#
|
11277
|
-
# UI name: [Cases resolved on first contact][
|
11563
|
+
# UI name: [Cases resolved on first contact][76]
|
11278
11564
|
#
|
11279
11565
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
11280
11566
|
#
|
@@ -11306,7 +11592,7 @@ module Aws::Connect
|
|
11306
11592
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11307
11593
|
# published timestamp
|
11308
11594
|
#
|
11309
|
-
# UI name: [Flows outcome percentage][
|
11595
|
+
# UI name: [Flows outcome percentage][77].
|
11310
11596
|
#
|
11311
11597
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
11312
11598
|
#
|
@@ -11323,7 +11609,7 @@ module Aws::Connect
|
|
11323
11609
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11324
11610
|
# Q in Connect
|
11325
11611
|
#
|
11326
|
-
# UI name: [Non-talk time percent][
|
11612
|
+
# UI name: [Non-talk time percent][78]
|
11327
11613
|
#
|
11328
11614
|
# PERCENT\_TALK\_TIME
|
11329
11615
|
#
|
@@ -11336,7 +11622,7 @@ module Aws::Connect
|
|
11336
11622
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11337
11623
|
# Q in Connect
|
11338
11624
|
#
|
11339
|
-
# UI name: [Talk time percent][
|
11625
|
+
# UI name: [Talk time percent][79]
|
11340
11626
|
#
|
11341
11627
|
# PERCENT\_TALK\_TIME\_AGENT
|
11342
11628
|
#
|
@@ -11349,7 +11635,7 @@ module Aws::Connect
|
|
11349
11635
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11350
11636
|
# Q in Connect
|
11351
11637
|
#
|
11352
|
-
# UI name: [Agent talk time percent][
|
11638
|
+
# UI name: [Agent talk time percent][80]
|
11353
11639
|
#
|
11354
11640
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
11355
11641
|
#
|
@@ -11362,7 +11648,7 @@ module Aws::Connect
|
|
11362
11648
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11363
11649
|
# Q in Connect
|
11364
11650
|
#
|
11365
|
-
# UI name: [Customer talk time percent][
|
11651
|
+
# UI name: [Customer talk time percent][81]
|
11366
11652
|
#
|
11367
11653
|
# REOPENED\_CASE\_ACTIONS
|
11368
11654
|
#
|
@@ -11372,7 +11658,7 @@ module Aws::Connect
|
|
11372
11658
|
#
|
11373
11659
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11374
11660
|
#
|
11375
|
-
# UI name: [Cases reopened][
|
11661
|
+
# UI name: [Cases reopened][82]
|
11376
11662
|
#
|
11377
11663
|
# RESOLVED\_CASE\_ACTIONS
|
11378
11664
|
#
|
@@ -11382,7 +11668,7 @@ module Aws::Connect
|
|
11382
11668
|
#
|
11383
11669
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11384
11670
|
#
|
11385
|
-
# UI name: [Cases resolved][
|
11671
|
+
# UI name: [Cases resolved][83]
|
11386
11672
|
#
|
11387
11673
|
# SERVICE\_LEVEL
|
11388
11674
|
#
|
@@ -11397,7 +11683,7 @@ module Aws::Connect
|
|
11397
11683
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11398
11684
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11399
11685
|
#
|
11400
|
-
# UI name: [Service level X][
|
11686
|
+
# UI name: [Service level X][84]
|
11401
11687
|
#
|
11402
11688
|
# STEP\_CONTACTS\_QUEUED
|
11403
11689
|
#
|
@@ -11415,7 +11701,7 @@ module Aws::Connect
|
|
11415
11701
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11416
11702
|
# Agent, Agent Hierarchy, Q in Connect
|
11417
11703
|
#
|
11418
|
-
# UI name: [After contact work time][
|
11704
|
+
# UI name: [After contact work time][85]
|
11419
11705
|
#
|
11420
11706
|
# SUM\_CONNECTING\_TIME\_AGENT
|
11421
11707
|
#
|
@@ -11428,7 +11714,7 @@ module Aws::Connect
|
|
11428
11714
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11429
11715
|
# Agent, Agent Hierarchy
|
11430
11716
|
#
|
11431
|
-
# UI name: [Agent API connecting time][
|
11717
|
+
# UI name: [Agent API connecting time][86]
|
11432
11718
|
#
|
11433
11719
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for
|
11434
11720
|
# this metric.
|
@@ -11450,7 +11736,7 @@ module Aws::Connect
|
|
11450
11736
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11451
11737
|
# RoutingStepExpression, Q in Connect
|
11452
11738
|
#
|
11453
|
-
# UI name: [Contact abandoned][
|
11739
|
+
# UI name: [Contact abandoned][87]
|
11454
11740
|
#
|
11455
11741
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
11456
11742
|
#
|
@@ -11463,7 +11749,7 @@ module Aws::Connect
|
|
11463
11749
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11464
11750
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11465
11751
|
#
|
11466
|
-
# UI name: [Contacts abandoned in X seconds][
|
11752
|
+
# UI name: [Contacts abandoned in X seconds][88]
|
11467
11753
|
#
|
11468
11754
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
11469
11755
|
#
|
@@ -11476,7 +11762,7 @@ module Aws::Connect
|
|
11476
11762
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11477
11763
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11478
11764
|
#
|
11479
|
-
# UI name: [Contacts answered in X seconds][
|
11765
|
+
# UI name: [Contacts answered in X seconds][89]
|
11480
11766
|
#
|
11481
11767
|
# SUM\_CONTACT\_FLOW\_TIME
|
11482
11768
|
#
|
@@ -11485,7 +11771,7 @@ module Aws::Connect
|
|
11485
11771
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11486
11772
|
# Agent, Agent Hierarchy, Q in Connect
|
11487
11773
|
#
|
11488
|
-
# UI name: [Contact flow time][
|
11774
|
+
# UI name: [Contact flow time][90]
|
11489
11775
|
#
|
11490
11776
|
# SUM\_CONTACT\_TIME\_AGENT
|
11491
11777
|
#
|
@@ -11494,7 +11780,7 @@ module Aws::Connect
|
|
11494
11780
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
11495
11781
|
# Hierarchy
|
11496
11782
|
#
|
11497
|
-
# UI name: [Agent on contact time][
|
11783
|
+
# UI name: [Agent on contact time][91]
|
11498
11784
|
#
|
11499
11785
|
# SUM\_CONTACTS\_DISCONNECTED
|
11500
11786
|
#
|
@@ -11506,7 +11792,7 @@ module Aws::Connect
|
|
11506
11792
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11507
11793
|
# Q in Connect
|
11508
11794
|
#
|
11509
|
-
# UI name: [Contact disconnected][
|
11795
|
+
# UI name: [Contact disconnected][92]
|
11510
11796
|
#
|
11511
11797
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
11512
11798
|
#
|
@@ -11515,7 +11801,7 @@ module Aws::Connect
|
|
11515
11801
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
11516
11802
|
# Hierarchy
|
11517
11803
|
#
|
11518
|
-
# UI name: [Error status time][
|
11804
|
+
# UI name: [Error status time][93]
|
11519
11805
|
#
|
11520
11806
|
# SUM\_HANDLE\_TIME
|
11521
11807
|
#
|
@@ -11524,7 +11810,7 @@ module Aws::Connect
|
|
11524
11810
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11525
11811
|
# Agent, Agent Hierarchy, Q in Connect
|
11526
11812
|
#
|
11527
|
-
# UI name: [Contact handle time][
|
11813
|
+
# UI name: [Contact handle time][94]
|
11528
11814
|
#
|
11529
11815
|
# SUM\_HOLD\_TIME
|
11530
11816
|
#
|
@@ -11533,7 +11819,7 @@ module Aws::Connect
|
|
11533
11819
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11534
11820
|
# Agent, Agent Hierarchy, Q in Connect
|
11535
11821
|
#
|
11536
|
-
# UI name: [Customer hold time][
|
11822
|
+
# UI name: [Customer hold time][95]
|
11537
11823
|
#
|
11538
11824
|
# SUM\_IDLE\_TIME\_AGENT
|
11539
11825
|
#
|
@@ -11542,7 +11828,7 @@ module Aws::Connect
|
|
11542
11828
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
11543
11829
|
# Hierarchy
|
11544
11830
|
#
|
11545
|
-
# UI name: [Agent idle time][
|
11831
|
+
# UI name: [Agent idle time][96]
|
11546
11832
|
#
|
11547
11833
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
11548
11834
|
#
|
@@ -11551,7 +11837,7 @@ module Aws::Connect
|
|
11551
11837
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11552
11838
|
# Agent, Agent Hierarchy, Q in Connect
|
11553
11839
|
#
|
11554
|
-
# UI name: [Agent interaction and hold time][
|
11840
|
+
# UI name: [Agent interaction and hold time][97]
|
11555
11841
|
#
|
11556
11842
|
# SUM\_INTERACTION\_TIME
|
11557
11843
|
#
|
@@ -11560,7 +11846,7 @@ module Aws::Connect
|
|
11560
11846
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11561
11847
|
# Agent, Agent Hierarchy
|
11562
11848
|
#
|
11563
|
-
# UI name: [Agent interaction time][
|
11849
|
+
# UI name: [Agent interaction time][98]
|
11564
11850
|
#
|
11565
11851
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
11566
11852
|
#
|
@@ -11569,7 +11855,7 @@ module Aws::Connect
|
|
11569
11855
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
11570
11856
|
# Hierarchy
|
11571
11857
|
#
|
11572
|
-
# UI name: [Non-Productive Time][
|
11858
|
+
# UI name: [Non-Productive Time][99]
|
11573
11859
|
#
|
11574
11860
|
# SUM\_ONLINE\_TIME\_AGENT
|
11575
11861
|
#
|
@@ -11578,7 +11864,7 @@ module Aws::Connect
|
|
11578
11864
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
11579
11865
|
# Hierarchy
|
11580
11866
|
#
|
11581
|
-
# UI name: [Online time][
|
11867
|
+
# UI name: [Online time][100]
|
11582
11868
|
#
|
11583
11869
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
11584
11870
|
#
|
@@ -11587,7 +11873,7 @@ module Aws::Connect
|
|
11587
11873
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11588
11874
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11589
11875
|
#
|
11590
|
-
# UI name: [Callback attempts][
|
11876
|
+
# UI name: [Callback attempts][101]
|
11591
11877
|
#
|
11592
11878
|
#
|
11593
11879
|
#
|
@@ -11614,80 +11900,84 @@ module Aws::Connect
|
|
11614
11900
|
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contact-duration-historical
|
11615
11901
|
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-conversation-duration-historical
|
11616
11902
|
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-dials-historical
|
11617
|
-
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
11618
|
-
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
11619
|
-
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
11620
|
-
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
11621
|
-
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11622
|
-
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11623
|
-
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
11624
|
-
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical
|
11625
|
-
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
11626
|
-
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-
|
11627
|
-
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
11628
|
-
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
11629
|
-
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
11630
|
-
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
11631
|
-
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-
|
11632
|
-
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-
|
11633
|
-
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
11634
|
-
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11635
|
-
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11636
|
-
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11637
|
-
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11638
|
-
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-
|
11639
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-
|
11640
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11641
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11642
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11643
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
11644
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
11645
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
11646
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
11647
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
11648
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
11649
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
11650
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
11651
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
11652
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
11653
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
11654
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11655
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11656
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11657
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11658
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11659
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11660
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11661
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11662
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11663
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11664
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11665
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11666
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11667
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11668
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11669
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11670
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11671
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11672
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11673
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11674
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11675
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11676
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11677
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11678
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11679
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11680
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11681
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11682
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11683
|
-
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-
|
11684
|
-
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11685
|
-
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11686
|
-
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11687
|
-
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11688
|
-
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11689
|
-
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11690
|
-
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11903
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-evaluation-score-historical
|
11904
|
+
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-flow-time-historical
|
11905
|
+
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-greeting-time-agent-historical
|
11906
|
+
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-handle-time-historical
|
11907
|
+
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-customer-hold-time-historical
|
11908
|
+
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#avg-customer-hold-time-all-contacts-historical
|
11909
|
+
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-holds-historical
|
11910
|
+
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-customer-hold-time-historical
|
11911
|
+
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical
|
11912
|
+
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-agent-historical
|
11913
|
+
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-time-agent-historical
|
11914
|
+
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##average-non-talk-time-historical
|
11915
|
+
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-answer-time-historical
|
11916
|
+
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-resolution-time-historical
|
11917
|
+
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-historical
|
11918
|
+
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-agent-historical
|
11919
|
+
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-customer-historical
|
11920
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-wait-time-historical
|
11921
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-weighted-agent-evaluation-score-historical
|
11922
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed-metric
|
11923
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed-metric
|
11924
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-historical
|
11925
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-rate-historical
|
11926
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-interactions-historical
|
11927
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-send-attempts-historical
|
11928
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-created-historical
|
11929
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-created-historical
|
11930
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#api-contacts-handled-historical
|
11931
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical
|
11932
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-agent-disconnect-historical
|
11933
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical
|
11934
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-external-historical
|
11935
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical
|
11936
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical
|
11937
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical
|
11938
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-removed-historical
|
11939
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical
|
11940
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical
|
11941
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical
|
11942
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#current-cases-historical
|
11943
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempts-historical
|
11944
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempt-disposition-rate-historical
|
11945
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#evaluations-performed-historical
|
11946
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical
|
11947
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-started-historical
|
11948
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#human-answered-historical
|
11949
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-flow-time-historical
|
11950
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical
|
11951
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#minimum-flow-time-historical
|
11952
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#percent-evaluation-automatic-failures-historical
|
11953
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome-metric
|
11954
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome-metric
|
11955
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-first-contact-historical
|
11956
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-percentage-historical
|
11957
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical
|
11958
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical
|
11959
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical
|
11960
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical
|
11961
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-reopened-historical
|
11962
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historical
|
11963
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical
|
11964
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical
|
11965
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time
|
11966
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical
|
11967
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical
|
11968
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical
|
11969
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical
|
11970
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical
|
11971
|
+
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical
|
11972
|
+
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical
|
11973
|
+
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical
|
11974
|
+
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical
|
11975
|
+
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-idle-time-historica
|
11976
|
+
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical
|
11977
|
+
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
|
11978
|
+
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#npt-historical
|
11979
|
+
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#online-time-historical
|
11980
|
+
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical
|
11691
11981
|
# @return [Array<Types::MetricV2>]
|
11692
11982
|
#
|
11693
11983
|
# @!attribute [rw] next_token
|
@@ -13451,6 +13741,55 @@ module Aws::Connect
|
|
13451
13741
|
include Aws::Structure
|
13452
13742
|
end
|
13453
13743
|
|
13744
|
+
# @!attribute [rw] instance_id
|
13745
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
13746
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
13747
|
+
#
|
13748
|
+
#
|
13749
|
+
#
|
13750
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
13751
|
+
# @return [String]
|
13752
|
+
#
|
13753
|
+
# @!attribute [rw] next_token
|
13754
|
+
# The token for the next set of results. Use the value returned in the
|
13755
|
+
# previous response in the next request to retrieve the next set of
|
13756
|
+
# results.
|
13757
|
+
# @return [String]
|
13758
|
+
#
|
13759
|
+
# @!attribute [rw] max_results
|
13760
|
+
# The maximum number of results to return per page.
|
13761
|
+
# @return [Integer]
|
13762
|
+
#
|
13763
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAnalyticsDataLakeDataSetsRequest AWS API Documentation
|
13764
|
+
#
|
13765
|
+
class ListAnalyticsDataLakeDataSetsRequest < Struct.new(
|
13766
|
+
:instance_id,
|
13767
|
+
:next_token,
|
13768
|
+
:max_results)
|
13769
|
+
SENSITIVE = []
|
13770
|
+
include Aws::Structure
|
13771
|
+
end
|
13772
|
+
|
13773
|
+
# @!attribute [rw] results
|
13774
|
+
# An array of successful results: `DataSetId`, `DataSetName`. This is
|
13775
|
+
# a paginated API, so `nextToken` is given if there are more results
|
13776
|
+
# to be returned.
|
13777
|
+
# @return [Array<Types::AnalyticsDataSetsResult>]
|
13778
|
+
#
|
13779
|
+
# @!attribute [rw] next_token
|
13780
|
+
# If there are additional results, this is the token for the next set
|
13781
|
+
# of results.
|
13782
|
+
# @return [String]
|
13783
|
+
#
|
13784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAnalyticsDataLakeDataSetsResponse AWS API Documentation
|
13785
|
+
#
|
13786
|
+
class ListAnalyticsDataLakeDataSetsResponse < Struct.new(
|
13787
|
+
:results,
|
13788
|
+
:next_token)
|
13789
|
+
SENSITIVE = []
|
13790
|
+
include Aws::Structure
|
13791
|
+
end
|
13792
|
+
|
13454
13793
|
# @!attribute [rw] instance_id
|
13455
13794
|
# The identifier of the Amazon Connect instance. You can [find the
|
13456
13795
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -16428,7 +16767,9 @@ module Aws::Connect
|
|
16428
16767
|
# @return [Hash<String,String>]
|
16429
16768
|
#
|
16430
16769
|
# @!attribute [rw] user_ids
|
16431
|
-
# A list of user IDs.
|
16770
|
+
# A list of user IDs. Supports variable injection of
|
16771
|
+
# `$.ContactLens.ContactEvaluation.Agent.AgentId` for
|
16772
|
+
# `OnContactEvaluationSubmit` event source.
|
16432
16773
|
# @return [Array<String>]
|
16433
16774
|
#
|
16434
16775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/NotificationRecipientType AWS API Documentation
|
@@ -20238,25 +20579,30 @@ module Aws::Connect
|
|
20238
20579
|
# @!attribute [rw] resource_types
|
20239
20580
|
# The list of resource types to be used to search tags from. If not
|
20240
20581
|
# provided or if any empty list is provided, this API will search from
|
20241
|
-
# all supported resource types.
|
20582
|
+
# all supported resource types. Note that lowercase and - are
|
20583
|
+
# required.
|
20242
20584
|
#
|
20243
20585
|
# **Supported resource types**
|
20244
20586
|
#
|
20245
|
-
# *
|
20587
|
+
# * agent
|
20588
|
+
#
|
20589
|
+
# * agent-state
|
20246
20590
|
#
|
20247
|
-
# *
|
20591
|
+
# * routing-profile
|
20248
20592
|
#
|
20249
|
-
# *
|
20593
|
+
# * standard-queue
|
20250
20594
|
#
|
20251
|
-
# *
|
20595
|
+
# * security-profile
|
20252
20596
|
#
|
20253
|
-
# *
|
20597
|
+
# * operating-hours
|
20254
20598
|
#
|
20255
|
-
# *
|
20599
|
+
# * prompt
|
20256
20600
|
#
|
20257
|
-
# *
|
20601
|
+
# * contact-flow
|
20258
20602
|
#
|
20259
|
-
# *
|
20603
|
+
# * flow- module
|
20604
|
+
#
|
20605
|
+
# * transfer-destination (also known as quick connect)
|
20260
20606
|
# @return [Array<String>]
|
20261
20607
|
#
|
20262
20608
|
# @!attribute [rw] next_token
|
@@ -20509,11 +20855,6 @@ module Aws::Connect
|
|
20509
20855
|
# The identifier of the Amazon Connect instance. You can [find the
|
20510
20856
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
20511
20857
|
#
|
20512
|
-
# <note markdown="1"> InstanceID is a required field. The "Required: No" below is
|
20513
|
-
# incorrect.
|
20514
|
-
#
|
20515
|
-
# </note>
|
20516
|
-
#
|
20517
20858
|
#
|
20518
20859
|
#
|
20519
20860
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
@@ -23818,9 +24159,9 @@ module Aws::Connect
|
|
23818
24159
|
# contact. Attribute keys can include only alphanumeric, dash, and
|
23819
24160
|
# underscore characters.
|
23820
24161
|
#
|
23821
|
-
#
|
23822
|
-
# routed down the Error branch of
|
23823
|
-
# the following options:
|
24162
|
+
# In the [Set contact attributes][1] block, when the attributes for a
|
24163
|
+
# contact exceed 32 KB, the contact is routed down the Error branch of
|
24164
|
+
# the flow. As a mitigation, consider the following options:
|
23824
24165
|
#
|
23825
24166
|
# * Remove unnecessary attributes by setting their values to empty.
|
23826
24167
|
#
|
@@ -24530,7 +24871,7 @@ module Aws::Connect
|
|
24530
24871
|
# The type of attribute.
|
24531
24872
|
#
|
24532
24873
|
# <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
|
24533
|
-
# access this feature, contact Amazon Web
|
24874
|
+
# access this feature, contact Amazon Web ServicesSupport for
|
24534
24875
|
# allowlisting.
|
24535
24876
|
#
|
24536
24877
|
# </note>
|
@@ -24540,12 +24881,27 @@ module Aws::Connect
|
|
24540
24881
|
# The value for the attribute. Maximum character limit is 100.
|
24541
24882
|
# @return [String]
|
24542
24883
|
#
|
24884
|
+
# @!attribute [rw] client_token
|
24885
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
24886
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
24887
|
+
# SDK populates this field. For more information about idempotency,
|
24888
|
+
# see [Making retries safe with idempotent APIs][1].
|
24889
|
+
#
|
24890
|
+
# **A suitable default value is auto-generated.** You should normally
|
24891
|
+
# not need to pass this option.
|
24892
|
+
#
|
24893
|
+
#
|
24894
|
+
#
|
24895
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
24896
|
+
# @return [String]
|
24897
|
+
#
|
24543
24898
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateInstanceAttributeRequest AWS API Documentation
|
24544
24899
|
#
|
24545
24900
|
class UpdateInstanceAttributeRequest < Struct.new(
|
24546
24901
|
:instance_id,
|
24547
24902
|
:attribute_type,
|
24548
|
-
:value
|
24903
|
+
:value,
|
24904
|
+
:client_token)
|
24549
24905
|
SENSITIVE = []
|
24550
24906
|
include Aws::Structure
|
24551
24907
|
end
|
@@ -24572,13 +24928,28 @@ module Aws::Connect
|
|
24572
24928
|
# The storage configuration for the instance.
|
24573
24929
|
# @return [Types::InstanceStorageConfig]
|
24574
24930
|
#
|
24931
|
+
# @!attribute [rw] client_token
|
24932
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
24933
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
24934
|
+
# SDK populates this field. For more information about idempotency,
|
24935
|
+
# see [Making retries safe with idempotent APIs][1].
|
24936
|
+
#
|
24937
|
+
# **A suitable default value is auto-generated.** You should normally
|
24938
|
+
# not need to pass this option.
|
24939
|
+
#
|
24940
|
+
#
|
24941
|
+
#
|
24942
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
24943
|
+
# @return [String]
|
24944
|
+
#
|
24575
24945
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateInstanceStorageConfigRequest AWS API Documentation
|
24576
24946
|
#
|
24577
24947
|
class UpdateInstanceStorageConfigRequest < Struct.new(
|
24578
24948
|
:instance_id,
|
24579
24949
|
:association_id,
|
24580
24950
|
:resource_type,
|
24581
|
-
:storage_config
|
24951
|
+
:storage_config,
|
24952
|
+
:client_token)
|
24582
24953
|
SENSITIVE = []
|
24583
24954
|
include Aws::Structure
|
24584
24955
|
end
|