aws-sdk-connect 1.196.0 → 1.198.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 +523 -205
- data/lib/aws-sdk-connect/client_api.rb +49 -1
- data/lib/aws-sdk-connect/types.rb +539 -183
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +43 -15
- data/sig/types.rbs +35 -0
- metadata +2 -2
@@ -7,34 +7,34 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
-
require 'seahorse/client/plugins/content_length
|
11
|
-
require 'aws-sdk-core/plugins/credentials_configuration
|
12
|
-
require 'aws-sdk-core/plugins/logging
|
13
|
-
require 'aws-sdk-core/plugins/param_converter
|
14
|
-
require 'aws-sdk-core/plugins/param_validator
|
15
|
-
require 'aws-sdk-core/plugins/user_agent
|
16
|
-
require 'aws-sdk-core/plugins/helpful_socket_errors
|
17
|
-
require 'aws-sdk-core/plugins/retry_errors
|
18
|
-
require 'aws-sdk-core/plugins/global_configuration
|
19
|
-
require 'aws-sdk-core/plugins/regional_endpoint
|
20
|
-
require 'aws-sdk-core/plugins/endpoint_discovery
|
21
|
-
require 'aws-sdk-core/plugins/endpoint_pattern
|
22
|
-
require 'aws-sdk-core/plugins/response_paging
|
23
|
-
require 'aws-sdk-core/plugins/stub_responses
|
24
|
-
require 'aws-sdk-core/plugins/idempotency_token
|
25
|
-
require 'aws-sdk-core/plugins/invocation_id
|
26
|
-
require 'aws-sdk-core/plugins/jsonvalue_converter
|
27
|
-
require 'aws-sdk-core/plugins/client_metrics_plugin
|
28
|
-
require 'aws-sdk-core/plugins/client_metrics_send_plugin
|
29
|
-
require 'aws-sdk-core/plugins/transfer_encoding
|
30
|
-
require 'aws-sdk-core/plugins/http_checksum
|
31
|
-
require 'aws-sdk-core/plugins/checksum_algorithm
|
32
|
-
require 'aws-sdk-core/plugins/request_compression
|
33
|
-
require 'aws-sdk-core/plugins/defaults_mode
|
34
|
-
require 'aws-sdk-core/plugins/recursion_detection
|
35
|
-
require 'aws-sdk-core/plugins/telemetry
|
36
|
-
require 'aws-sdk-core/plugins/sign
|
37
|
-
require 'aws-sdk-core/plugins/protocols/rest_json
|
10
|
+
require 'seahorse/client/plugins/content_length'
|
11
|
+
require 'aws-sdk-core/plugins/credentials_configuration'
|
12
|
+
require 'aws-sdk-core/plugins/logging'
|
13
|
+
require 'aws-sdk-core/plugins/param_converter'
|
14
|
+
require 'aws-sdk-core/plugins/param_validator'
|
15
|
+
require 'aws-sdk-core/plugins/user_agent'
|
16
|
+
require 'aws-sdk-core/plugins/helpful_socket_errors'
|
17
|
+
require 'aws-sdk-core/plugins/retry_errors'
|
18
|
+
require 'aws-sdk-core/plugins/global_configuration'
|
19
|
+
require 'aws-sdk-core/plugins/regional_endpoint'
|
20
|
+
require 'aws-sdk-core/plugins/endpoint_discovery'
|
21
|
+
require 'aws-sdk-core/plugins/endpoint_pattern'
|
22
|
+
require 'aws-sdk-core/plugins/response_paging'
|
23
|
+
require 'aws-sdk-core/plugins/stub_responses'
|
24
|
+
require 'aws-sdk-core/plugins/idempotency_token'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id'
|
26
|
+
require 'aws-sdk-core/plugins/jsonvalue_converter'
|
27
|
+
require 'aws-sdk-core/plugins/client_metrics_plugin'
|
28
|
+
require 'aws-sdk-core/plugins/client_metrics_send_plugin'
|
29
|
+
require 'aws-sdk-core/plugins/transfer_encoding'
|
30
|
+
require 'aws-sdk-core/plugins/http_checksum'
|
31
|
+
require 'aws-sdk-core/plugins/checksum_algorithm'
|
32
|
+
require 'aws-sdk-core/plugins/request_compression'
|
33
|
+
require 'aws-sdk-core/plugins/defaults_mode'
|
34
|
+
require 'aws-sdk-core/plugins/recursion_detection'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry'
|
36
|
+
require 'aws-sdk-core/plugins/sign'
|
37
|
+
require 'aws-sdk-core/plugins/protocols/rest_json'
|
38
38
|
|
39
39
|
module Aws::Connect
|
40
40
|
# An API client for Connect. To construct a client, you need to configure a `:region` and `:credentials`.
|
@@ -587,6 +587,19 @@ module Aws::Connect
|
|
587
587
|
# @option params [required, String] :origin
|
588
588
|
# The domain to add to your allow list.
|
589
589
|
#
|
590
|
+
# @option params [String] :client_token
|
591
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
592
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
593
|
+
# SDK populates this field. For more information about idempotency, see
|
594
|
+
# [Making retries safe with idempotent APIs][1].
|
595
|
+
#
|
596
|
+
# **A suitable default value is auto-generated.** You should normally
|
597
|
+
# not need to pass this option.**
|
598
|
+
#
|
599
|
+
#
|
600
|
+
#
|
601
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
602
|
+
#
|
590
603
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
591
604
|
#
|
592
605
|
# @example Request syntax with placeholder values
|
@@ -594,6 +607,7 @@ module Aws::Connect
|
|
594
607
|
# resp = client.associate_approved_origin({
|
595
608
|
# instance_id: "InstanceId", # required
|
596
609
|
# origin: "Origin", # required
|
610
|
+
# client_token: "ClientToken",
|
597
611
|
# })
|
598
612
|
#
|
599
613
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateApprovedOrigin AWS API Documentation
|
@@ -625,6 +639,19 @@ module Aws::Connect
|
|
625
639
|
# @option params [Types::LexV2Bot] :lex_v2_bot
|
626
640
|
# The Amazon Lex V2 bot to associate with the instance.
|
627
641
|
#
|
642
|
+
# @option params [String] :client_token
|
643
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
644
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
645
|
+
# SDK populates this field. For more information about idempotency, see
|
646
|
+
# [Making retries safe with idempotent APIs][1].
|
647
|
+
#
|
648
|
+
# **A suitable default value is auto-generated.** You should normally
|
649
|
+
# not need to pass this option.**
|
650
|
+
#
|
651
|
+
#
|
652
|
+
#
|
653
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
654
|
+
#
|
628
655
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
629
656
|
#
|
630
657
|
# @example Request syntax with placeholder values
|
@@ -638,6 +665,7 @@ module Aws::Connect
|
|
638
665
|
# lex_v2_bot: {
|
639
666
|
# alias_arn: "AliasArn",
|
640
667
|
# },
|
668
|
+
# client_token: "ClientToken",
|
641
669
|
# })
|
642
670
|
#
|
643
671
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateBot AWS API Documentation
|
@@ -785,6 +813,19 @@ module Aws::Connect
|
|
785
813
|
# @option params [required, Types::InstanceStorageConfig] :storage_config
|
786
814
|
# A valid storage type.
|
787
815
|
#
|
816
|
+
# @option params [String] :client_token
|
817
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
818
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
819
|
+
# SDK populates this field. For more information about idempotency, see
|
820
|
+
# [Making retries safe with idempotent APIs][1].
|
821
|
+
#
|
822
|
+
# **A suitable default value is auto-generated.** You should normally
|
823
|
+
# not need to pass this option.**
|
824
|
+
#
|
825
|
+
#
|
826
|
+
#
|
827
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
828
|
+
#
|
788
829
|
# @return [Types::AssociateInstanceStorageConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
789
830
|
#
|
790
831
|
# * {Types::AssociateInstanceStorageConfigResponse#association_id #association_id} => String
|
@@ -820,6 +861,7 @@ module Aws::Connect
|
|
820
861
|
# firehose_arn: "ARN", # required
|
821
862
|
# },
|
822
863
|
# },
|
864
|
+
# client_token: "ClientToken",
|
823
865
|
# })
|
824
866
|
#
|
825
867
|
# @example Response structure
|
@@ -853,6 +895,19 @@ module Aws::Connect
|
|
853
895
|
# The Amazon Resource Name (ARN) for the Lambda function being
|
854
896
|
# associated. Maximum number of characters allowed is 140.
|
855
897
|
#
|
898
|
+
# @option params [String] :client_token
|
899
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
900
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
901
|
+
# SDK populates this field. For more information about idempotency, see
|
902
|
+
# [Making retries safe with idempotent APIs][1].
|
903
|
+
#
|
904
|
+
# **A suitable default value is auto-generated.** You should normally
|
905
|
+
# not need to pass this option.**
|
906
|
+
#
|
907
|
+
#
|
908
|
+
#
|
909
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
910
|
+
#
|
856
911
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
857
912
|
#
|
858
913
|
# @example Request syntax with placeholder values
|
@@ -860,6 +915,7 @@ module Aws::Connect
|
|
860
915
|
# resp = client.associate_lambda_function({
|
861
916
|
# instance_id: "InstanceId", # required
|
862
917
|
# function_arn: "FunctionArn", # required
|
918
|
+
# client_token: "ClientToken",
|
863
919
|
# })
|
864
920
|
#
|
865
921
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateLambdaFunction AWS API Documentation
|
@@ -889,6 +945,19 @@ module Aws::Connect
|
|
889
945
|
# @option params [required, Types::LexBot] :lex_bot
|
890
946
|
# The Amazon Lex bot to associate with the instance.
|
891
947
|
#
|
948
|
+
# @option params [String] :client_token
|
949
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
950
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
951
|
+
# SDK populates this field. For more information about idempotency, see
|
952
|
+
# [Making retries safe with idempotent APIs][1].
|
953
|
+
#
|
954
|
+
# **A suitable default value is auto-generated.** You should normally
|
955
|
+
# not need to pass this option.**
|
956
|
+
#
|
957
|
+
#
|
958
|
+
#
|
959
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
960
|
+
#
|
892
961
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
893
962
|
#
|
894
963
|
# @example Request syntax with placeholder values
|
@@ -899,6 +968,7 @@ module Aws::Connect
|
|
899
968
|
# name: "BotName", # required
|
900
969
|
# lex_region: "LexRegion", # required
|
901
970
|
# },
|
971
|
+
# client_token: "ClientToken",
|
902
972
|
# })
|
903
973
|
#
|
904
974
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateLexBot AWS API Documentation
|
@@ -1055,6 +1125,19 @@ module Aws::Connect
|
|
1055
1125
|
# @option params [required, String] :key
|
1056
1126
|
# A valid security key in PEM format as a String.
|
1057
1127
|
#
|
1128
|
+
# @option params [String] :client_token
|
1129
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
1130
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
1131
|
+
# SDK populates this field. For more information about idempotency, see
|
1132
|
+
# [Making retries safe with idempotent APIs][1].
|
1133
|
+
#
|
1134
|
+
# **A suitable default value is auto-generated.** You should normally
|
1135
|
+
# not need to pass this option.**
|
1136
|
+
#
|
1137
|
+
#
|
1138
|
+
#
|
1139
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
1140
|
+
#
|
1058
1141
|
# @return [Types::AssociateSecurityKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1059
1142
|
#
|
1060
1143
|
# * {Types::AssociateSecurityKeyResponse#association_id #association_id} => String
|
@@ -1064,6 +1147,7 @@ module Aws::Connect
|
|
1064
1147
|
# resp = client.associate_security_key({
|
1065
1148
|
# instance_id: "InstanceId", # required
|
1066
1149
|
# key: "PEM", # required
|
1150
|
+
# client_token: "ClientToken",
|
1067
1151
|
# })
|
1068
1152
|
#
|
1069
1153
|
# @example Response structure
|
@@ -1196,6 +1280,7 @@ module Aws::Connect
|
|
1196
1280
|
# resp.created[0].target_account_id #=> String
|
1197
1281
|
# resp.created[0].resource_share_id #=> String
|
1198
1282
|
# resp.created[0].resource_share_arn #=> String
|
1283
|
+
# resp.created[0].resource_share_status #=> String
|
1199
1284
|
# resp.errors #=> Array
|
1200
1285
|
# resp.errors[0].error_code #=> String
|
1201
1286
|
# resp.errors[0].error_message #=> String
|
@@ -2423,6 +2508,9 @@ module Aws::Connect
|
|
2423
2508
|
# @option params [String] :client_token
|
2424
2509
|
# The idempotency token.
|
2425
2510
|
#
|
2511
|
+
# **A suitable default value is auto-generated.** You should normally
|
2512
|
+
# not need to pass this option.**
|
2513
|
+
#
|
2426
2514
|
# @option params [required, String] :identity_management_type
|
2427
2515
|
# The type of identity management for your Amazon Connect users.
|
2428
2516
|
#
|
@@ -4514,12 +4602,26 @@ module Aws::Connect
|
|
4514
4602
|
#
|
4515
4603
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4516
4604
|
#
|
4605
|
+
# @option params [String] :client_token
|
4606
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
4607
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
4608
|
+
# SDK populates this field. For more information about idempotency, see
|
4609
|
+
# [Making retries safe with idempotent APIs][1].
|
4610
|
+
#
|
4611
|
+
# **A suitable default value is auto-generated.** You should normally
|
4612
|
+
# not need to pass this option.**
|
4613
|
+
#
|
4614
|
+
#
|
4615
|
+
#
|
4616
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
4617
|
+
#
|
4517
4618
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4518
4619
|
#
|
4519
4620
|
# @example Request syntax with placeholder values
|
4520
4621
|
#
|
4521
4622
|
# resp = client.delete_instance({
|
4522
4623
|
# instance_id: "InstanceId", # required
|
4624
|
+
# client_token: "ClientToken",
|
4523
4625
|
# })
|
4524
4626
|
#
|
4525
4627
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteInstance AWS API Documentation
|
@@ -5165,8 +5267,8 @@ module Aws::Connect
|
|
5165
5267
|
end
|
5166
5268
|
|
5167
5269
|
# This API is in preview release for Amazon Connect and is subject to
|
5168
|
-
# change. To request access to this API, contact Amazon Web
|
5169
|
-
#
|
5270
|
+
# change. To request access to this API, contact Amazon Web
|
5271
|
+
# ServicesSupport.
|
5170
5272
|
#
|
5171
5273
|
# Describes the target authentication profile.
|
5172
5274
|
#
|
@@ -5223,10 +5325,13 @@ module Aws::Connect
|
|
5223
5325
|
#
|
5224
5326
|
# Describes the specified contact.
|
5225
5327
|
#
|
5226
|
-
#
|
5227
|
-
#
|
5228
|
-
#
|
5229
|
-
#
|
5328
|
+
# * `CustomerEndpoint` and `SystemEndpoint` are only populated for EMAIL
|
5329
|
+
# contacts.
|
5330
|
+
#
|
5331
|
+
# * Contact information remains available in Amazon Connect for 24
|
5332
|
+
# months from the `InitiationTimestamp`, and then it is deleted. Only
|
5333
|
+
# contact information that is available in Amazon Connect is returned
|
5334
|
+
# by this API.
|
5230
5335
|
#
|
5231
5336
|
# @option params [required, String] :instance_id
|
5232
5337
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -6816,6 +6921,19 @@ module Aws::Connect
|
|
6816
6921
|
# @option params [required, String] :origin
|
6817
6922
|
# The domain URL of the integrated application.
|
6818
6923
|
#
|
6924
|
+
# @option params [String] :client_token
|
6925
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
6926
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
6927
|
+
# SDK populates this field. For more information about idempotency, see
|
6928
|
+
# [Making retries safe with idempotent APIs][1].
|
6929
|
+
#
|
6930
|
+
# **A suitable default value is auto-generated.** You should normally
|
6931
|
+
# not need to pass this option.**
|
6932
|
+
#
|
6933
|
+
#
|
6934
|
+
#
|
6935
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
6936
|
+
#
|
6819
6937
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
6820
6938
|
#
|
6821
6939
|
# @example Request syntax with placeholder values
|
@@ -6823,6 +6941,7 @@ module Aws::Connect
|
|
6823
6941
|
# resp = client.disassociate_approved_origin({
|
6824
6942
|
# instance_id: "InstanceId", # required
|
6825
6943
|
# origin: "Origin", # required
|
6944
|
+
# client_token: "ClientToken",
|
6826
6945
|
# })
|
6827
6946
|
#
|
6828
6947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateApprovedOrigin AWS API Documentation
|
@@ -6854,6 +6973,19 @@ module Aws::Connect
|
|
6854
6973
|
# @option params [Types::LexV2Bot] :lex_v2_bot
|
6855
6974
|
# The Amazon Lex V2 bot to disassociate from the instance.
|
6856
6975
|
#
|
6976
|
+
# @option params [String] :client_token
|
6977
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
6978
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
6979
|
+
# SDK populates this field. For more information about idempotency, see
|
6980
|
+
# [Making retries safe with idempotent APIs][1].
|
6981
|
+
#
|
6982
|
+
# **A suitable default value is auto-generated.** You should normally
|
6983
|
+
# not need to pass this option.**
|
6984
|
+
#
|
6985
|
+
#
|
6986
|
+
#
|
6987
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
6988
|
+
#
|
6857
6989
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
6858
6990
|
#
|
6859
6991
|
# @example Request syntax with placeholder values
|
@@ -6867,6 +6999,7 @@ module Aws::Connect
|
|
6867
6999
|
# lex_v2_bot: {
|
6868
7000
|
# alias_arn: "AliasArn",
|
6869
7001
|
# },
|
7002
|
+
# client_token: "ClientToken",
|
6870
7003
|
# })
|
6871
7004
|
#
|
6872
7005
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateBot AWS API Documentation
|
@@ -6940,6 +7073,19 @@ module Aws::Connect
|
|
6940
7073
|
# @option params [required, String] :resource_type
|
6941
7074
|
# A valid resource type.
|
6942
7075
|
#
|
7076
|
+
# @option params [String] :client_token
|
7077
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
7078
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
7079
|
+
# SDK populates this field. For more information about idempotency, see
|
7080
|
+
# [Making retries safe with idempotent APIs][1].
|
7081
|
+
#
|
7082
|
+
# **A suitable default value is auto-generated.** You should normally
|
7083
|
+
# not need to pass this option.**
|
7084
|
+
#
|
7085
|
+
#
|
7086
|
+
#
|
7087
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
7088
|
+
#
|
6943
7089
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
6944
7090
|
#
|
6945
7091
|
# @example Request syntax with placeholder values
|
@@ -6948,6 +7094,7 @@ module Aws::Connect
|
|
6948
7094
|
# instance_id: "InstanceId", # required
|
6949
7095
|
# association_id: "AssociationId", # required
|
6950
7096
|
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS, REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS, REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS, EMAIL_MESSAGES
|
7097
|
+
# client_token: "ClientToken",
|
6951
7098
|
# })
|
6952
7099
|
#
|
6953
7100
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateInstanceStorageConfig AWS API Documentation
|
@@ -6977,6 +7124,19 @@ module Aws::Connect
|
|
6977
7124
|
# The Amazon Resource Name (ARN) of the Lambda function being
|
6978
7125
|
# disassociated.
|
6979
7126
|
#
|
7127
|
+
# @option params [String] :client_token
|
7128
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
7129
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
7130
|
+
# SDK populates this field. For more information about idempotency, see
|
7131
|
+
# [Making retries safe with idempotent APIs][1].
|
7132
|
+
#
|
7133
|
+
# **A suitable default value is auto-generated.** You should normally
|
7134
|
+
# not need to pass this option.**
|
7135
|
+
#
|
7136
|
+
#
|
7137
|
+
#
|
7138
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
7139
|
+
#
|
6980
7140
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
6981
7141
|
#
|
6982
7142
|
# @example Request syntax with placeholder values
|
@@ -6984,6 +7144,7 @@ module Aws::Connect
|
|
6984
7144
|
# resp = client.disassociate_lambda_function({
|
6985
7145
|
# instance_id: "InstanceId", # required
|
6986
7146
|
# function_arn: "FunctionArn", # required
|
7147
|
+
# client_token: "ClientToken",
|
6987
7148
|
# })
|
6988
7149
|
#
|
6989
7150
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateLambdaFunction AWS API Documentation
|
@@ -7016,6 +7177,19 @@ module Aws::Connect
|
|
7016
7177
|
# The Amazon Web Services Region in which the Amazon Lex bot has been
|
7017
7178
|
# created.
|
7018
7179
|
#
|
7180
|
+
# @option params [String] :client_token
|
7181
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
7182
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
7183
|
+
# SDK populates this field. For more information about idempotency, see
|
7184
|
+
# [Making retries safe with idempotent APIs][1].
|
7185
|
+
#
|
7186
|
+
# **A suitable default value is auto-generated.** You should normally
|
7187
|
+
# not need to pass this option.**
|
7188
|
+
#
|
7189
|
+
#
|
7190
|
+
#
|
7191
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
7192
|
+
#
|
7019
7193
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
7020
7194
|
#
|
7021
7195
|
# @example Request syntax with placeholder values
|
@@ -7024,6 +7198,7 @@ module Aws::Connect
|
|
7024
7198
|
# instance_id: "InstanceId", # required
|
7025
7199
|
# bot_name: "BotName", # required
|
7026
7200
|
# lex_region: "LexRegion", # required
|
7201
|
+
# client_token: "ClientToken",
|
7027
7202
|
# })
|
7028
7203
|
#
|
7029
7204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateLexBot AWS API Documentation
|
@@ -7173,6 +7348,19 @@ module Aws::Connect
|
|
7173
7348
|
# The existing association identifier that uniquely identifies the
|
7174
7349
|
# resource type and storage config for the given instance ID.
|
7175
7350
|
#
|
7351
|
+
# @option params [String] :client_token
|
7352
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
7353
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
7354
|
+
# SDK populates this field. For more information about idempotency, see
|
7355
|
+
# [Making retries safe with idempotent APIs][1].
|
7356
|
+
#
|
7357
|
+
# **A suitable default value is auto-generated.** You should normally
|
7358
|
+
# not need to pass this option.**
|
7359
|
+
#
|
7360
|
+
#
|
7361
|
+
#
|
7362
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
7363
|
+
#
|
7176
7364
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
7177
7365
|
#
|
7178
7366
|
# @example Request syntax with placeholder values
|
@@ -7180,6 +7368,7 @@ module Aws::Connect
|
|
7180
7368
|
# resp = client.disassociate_security_key({
|
7181
7369
|
# instance_id: "InstanceId", # required
|
7182
7370
|
# association_id: "AssociationId", # required
|
7371
|
+
# client_token: "ClientToken",
|
7183
7372
|
# })
|
7184
7373
|
#
|
7185
7374
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateSecurityKey AWS API Documentation
|
@@ -8379,14 +8568,15 @@ module Aws::Connect
|
|
8379
8568
|
# `BOT_INTENT_NAME` \| `CAMPAIGN` \| `CAMPAIGN_DELIVERY_EVENT_TYPE`
|
8380
8569
|
# \|`CASE_TEMPLATE_ARN` \| `CASE_STATUS` \| `CHANNEL` \|
|
8381
8570
|
# `contact/segmentAttributes/connect:Subtype` \| `DISCONNECT_REASON`
|
8382
|
-
# \| `
|
8383
|
-
# `
|
8384
|
-
# `
|
8385
|
-
# `
|
8386
|
-
# `
|
8387
|
-
#
|
8388
|
-
# `
|
8389
|
-
# `
|
8571
|
+
# \| `EVALUATION_FORM` \| `EVALUATION_SECTION` \|
|
8572
|
+
# `EVALUATION_QUESTION` \| `EVALUATION_SOURCE` \| `FEATURE` \|
|
8573
|
+
# `FLOW_ACTION_ID` \| `FLOW_TYPE` \| `FLOWS_MODULE_RESOURCE_ID` \|
|
8574
|
+
# `FLOWS_NEXT_RESOURCE_ID` \| `FLOWS_NEXT_RESOURCE_QUEUE_ID` \|
|
8575
|
+
# `FLOWS_OUTCOME_TYPE` \| `FLOWS_RESOURCE_ID` \| `FORM_VERSION` \|
|
8576
|
+
# `INITIATION_METHOD` \| `INVOKING_RESOURCE_PUBLISHED_TIMESTAMP` \|
|
8577
|
+
# `INVOKING_RESOURCE_TYPE` \| `PARENT_FLOWS_RESOURCE_ID` \|
|
8578
|
+
# `RESOURCE_PUBLISHED_TIMESTAMP` \| `ROUTING_PROFILE` \|
|
8579
|
+
# `ROUTING_STEP_EXPRESSION` \| `QUEUE` \| `Q_CONNECT_ENABLED` \|
|
8390
8580
|
#
|
8391
8581
|
# * **Filter values**: A maximum of 100 filter values are supported in a
|
8392
8582
|
# single request. VOICE, CHAT, and TASK are valid `filterValue` for
|
@@ -8441,14 +8631,21 @@ module Aws::Connect
|
|
8441
8631
|
# `BOT_VERSION` \| `BOT_LOCALE` \| `BOT_INTENT_NAME` \| `CAMPAIGN` \|
|
8442
8632
|
# `CAMPAIGN_DELIVERY_EVENT_TYPE` \| `CASE_TEMPLATE_ARN` \| `CASE_STATUS`
|
8443
8633
|
# \| `CHANNEL` \| `contact/segmentAttributes/connect:Subtype` \|
|
8444
|
-
# `DISCONNECT_REASON` \| `
|
8634
|
+
# `DISCONNECT_REASON` \| `EVALUATION_FORM` \| `EVALUATION_SECTION` \|
|
8635
|
+
# `EVALUATION_QUESTION` \| `EVALUATION_SOURCE` \| `FLOWS_RESOURCE_ID` \|
|
8445
8636
|
# `FLOWS_MODULE_RESOURCE_ID` \| `FLOW_ACTION_ID` \| `FLOW_TYPE` \|
|
8446
|
-
# `FLOWS_OUTCOME_TYPE` \| `INITIATION_METHOD` \|
|
8637
|
+
# `FLOWS_OUTCOME_TYPE` \| `FORM_VERSION` \| `INITIATION_METHOD` \|
|
8447
8638
|
# `INVOKING_RESOURCE_PUBLISHED_TIMESTAMP` \| `INVOKING_RESOURCE_TYPE` \|
|
8448
8639
|
# `PARENT_FLOWS_RESOURCE_ID` \| `Q_CONNECT_ENABLED` \| `QUEUE` \|
|
8449
8640
|
# `RESOURCE_PUBLISHED_TIMESTAMP` \| `ROUTING_PROFILE` \|
|
8450
8641
|
# `ROUTING_STEP_EXPRESSION`
|
8451
8642
|
#
|
8643
|
+
# Type: Array of strings
|
8644
|
+
#
|
8645
|
+
# Array Members: Maximum number of 4 items
|
8646
|
+
#
|
8647
|
+
# Required: No
|
8648
|
+
#
|
8452
8649
|
# @option params [required, Array<Types::MetricV2>] :metrics
|
8453
8650
|
# The metrics to retrieve. Specify the name, groupings, and filters for
|
8454
8651
|
# each metric. The following historical metrics are available. For a
|
@@ -8689,6 +8886,16 @@ module Aws::Connect
|
|
8689
8886
|
#
|
8690
8887
|
# UI name: [Average dials per minute][23]
|
8691
8888
|
#
|
8889
|
+
# AVG\_EVALUATION\_SCORE
|
8890
|
+
#
|
8891
|
+
# : Unit: Percent
|
8892
|
+
#
|
8893
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
8894
|
+
# Evaluation Form ID, Evaluation Section ID, Evaluation Question ID,
|
8895
|
+
# Evaluation Source, Form Version, Queue, Routing Profile
|
8896
|
+
#
|
8897
|
+
# UI name: [Average agent evaluation score][24]
|
8898
|
+
#
|
8692
8899
|
# AVG\_FLOW\_TIME
|
8693
8900
|
#
|
8694
8901
|
# : Unit: Seconds
|
@@ -8699,7 +8906,7 @@ module Aws::Connect
|
|
8699
8906
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8700
8907
|
# published timestamp
|
8701
8908
|
#
|
8702
|
-
# UI name: [Average flow time][
|
8909
|
+
# UI name: [Average flow time][25]
|
8703
8910
|
#
|
8704
8911
|
# AVG\_GREETING\_TIME\_AGENT
|
8705
8912
|
#
|
@@ -8712,7 +8919,7 @@ module Aws::Connect
|
|
8712
8919
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8713
8920
|
# Connect
|
8714
8921
|
#
|
8715
|
-
# UI name: [Average agent greeting time][
|
8922
|
+
# UI name: [Average agent greeting time][26]
|
8716
8923
|
#
|
8717
8924
|
# AVG\_HANDLE\_TIME
|
8718
8925
|
#
|
@@ -8722,7 +8929,7 @@ module Aws::Connect
|
|
8722
8929
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8723
8930
|
# RoutingStepExpression
|
8724
8931
|
#
|
8725
|
-
# UI name: [Average handle time][
|
8932
|
+
# UI name: [Average handle time][27]
|
8726
8933
|
#
|
8727
8934
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8728
8935
|
#
|
@@ -8736,7 +8943,7 @@ module Aws::Connect
|
|
8736
8943
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8737
8944
|
# Q in Connect
|
8738
8945
|
#
|
8739
|
-
# UI name: [Average customer hold time][
|
8946
|
+
# UI name: [Average customer hold time][28]
|
8740
8947
|
#
|
8741
8948
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8742
8949
|
#
|
@@ -8750,7 +8957,7 @@ module Aws::Connect
|
|
8750
8957
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8751
8958
|
# Connect
|
8752
8959
|
#
|
8753
|
-
# UI name: [Average customer hold time all contacts][
|
8960
|
+
# UI name: [Average customer hold time all contacts][29]
|
8754
8961
|
#
|
8755
8962
|
# AVG\_HOLDS
|
8756
8963
|
#
|
@@ -8760,7 +8967,7 @@ module Aws::Connect
|
|
8760
8967
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8761
8968
|
# Q in Connect
|
8762
8969
|
#
|
8763
|
-
# UI name: [Average holds][
|
8970
|
+
# UI name: [Average holds][30]
|
8764
8971
|
#
|
8765
8972
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8766
8973
|
#
|
@@ -8774,7 +8981,7 @@ module Aws::Connect
|
|
8774
8981
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8775
8982
|
# Connect
|
8776
8983
|
#
|
8777
|
-
# UI name: [Average agent interaction and customer hold time][
|
8984
|
+
# UI name: [Average agent interaction and customer hold time][31]
|
8778
8985
|
#
|
8779
8986
|
# AVG\_INTERACTION\_TIME
|
8780
8987
|
#
|
@@ -8785,7 +8992,7 @@ module Aws::Connect
|
|
8785
8992
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8786
8993
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8787
8994
|
#
|
8788
|
-
# UI name: [Average agent interaction time][
|
8995
|
+
# UI name: [Average agent interaction time][32]
|
8789
8996
|
#
|
8790
8997
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8791
8998
|
#
|
@@ -8802,7 +9009,7 @@ module Aws::Connect
|
|
8802
9009
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8803
9010
|
# Connect
|
8804
9011
|
#
|
8805
|
-
# UI name: [Average agent interruptions][
|
9012
|
+
# UI name: [Average agent interruptions][33]
|
8806
9013
|
#
|
8807
9014
|
# AVG\_INTERRUPTION\_TIME\_AGENT
|
8808
9015
|
#
|
@@ -8815,7 +9022,7 @@ module Aws::Connect
|
|
8815
9022
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8816
9023
|
# Connect
|
8817
9024
|
#
|
8818
|
-
# UI name: [Average agent interruption time][
|
9025
|
+
# UI name: [Average agent interruption time][34]
|
8819
9026
|
#
|
8820
9027
|
# AVG\_NON\_TALK\_TIME
|
8821
9028
|
#
|
@@ -8828,7 +9035,7 @@ module Aws::Connect
|
|
8828
9035
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8829
9036
|
# Connect
|
8830
9037
|
#
|
8831
|
-
# UI name: [Average non-talk time][
|
9038
|
+
# UI name: [Average non-talk time][35]
|
8832
9039
|
#
|
8833
9040
|
# AVG\_QUEUE\_ANSWER\_TIME
|
8834
9041
|
#
|
@@ -8837,7 +9044,7 @@ module Aws::Connect
|
|
8837
9044
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8838
9045
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8839
9046
|
#
|
8840
|
-
# UI name: [Average queue answer time][
|
9047
|
+
# UI name: [Average queue answer time][36]
|
8841
9048
|
#
|
8842
9049
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8843
9050
|
#
|
@@ -8850,7 +9057,7 @@ module Aws::Connect
|
|
8850
9057
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8851
9058
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
8852
9059
|
#
|
8853
|
-
# UI name: [Average resolution time][
|
9060
|
+
# UI name: [Average resolution time][37]
|
8854
9061
|
#
|
8855
9062
|
# AVG\_TALK\_TIME
|
8856
9063
|
#
|
@@ -8863,7 +9070,7 @@ module Aws::Connect
|
|
8863
9070
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8864
9071
|
# Connect
|
8865
9072
|
#
|
8866
|
-
# UI name: [Average talk time][
|
9073
|
+
# UI name: [Average talk time][38]
|
8867
9074
|
#
|
8868
9075
|
# AVG\_TALK\_TIME\_AGENT
|
8869
9076
|
#
|
@@ -8876,7 +9083,7 @@ module Aws::Connect
|
|
8876
9083
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8877
9084
|
# Connect
|
8878
9085
|
#
|
8879
|
-
# UI name: [Average agent talk time][
|
9086
|
+
# UI name: [Average agent talk time][39]
|
8880
9087
|
#
|
8881
9088
|
# AVG\_TALK\_TIME\_CUSTOMER
|
8882
9089
|
#
|
@@ -8889,7 +9096,7 @@ module Aws::Connect
|
|
8889
9096
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8890
9097
|
# Connect
|
8891
9098
|
#
|
8892
|
-
# UI name: [Average customer talk time][
|
9099
|
+
# UI name: [Average customer talk time][40]
|
8893
9100
|
#
|
8894
9101
|
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
|
8895
9102
|
#
|
@@ -8900,7 +9107,17 @@ module Aws::Connect
|
|
8900
9107
|
#
|
8901
9108
|
# Valid groupings and filters: Campaign
|
8902
9109
|
#
|
8903
|
-
# UI name: [Average wait time after customer connection][
|
9110
|
+
# UI name: [Average wait time after customer connection][41]
|
9111
|
+
#
|
9112
|
+
# AVG\_WEIGHTED\_EVALUATION\_SCORE
|
9113
|
+
#
|
9114
|
+
# : Unit: Percent
|
9115
|
+
#
|
9116
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
9117
|
+
# Evaluation Form Id, Evaluation Section ID, Evaluation Question ID,
|
9118
|
+
# Evaluation Source, Form Version, Queue, Routing Profile
|
9119
|
+
#
|
9120
|
+
# UI name: [Average weighted agent evaluation score][42]
|
8904
9121
|
#
|
8905
9122
|
# BOT\_CONVERSATIONS\_COMPLETED
|
8906
9123
|
#
|
@@ -8912,7 +9129,7 @@ module Aws::Connect
|
|
8912
9129
|
# Flow type, Flow action ID, Invoking resource published timestamp,
|
8913
9130
|
# Initiation method, Invoking resource type, Parent flows resource ID
|
8914
9131
|
#
|
8915
|
-
# UI name: [Bot conversations][
|
9132
|
+
# UI name: [Bot conversations][43]
|
8916
9133
|
#
|
8917
9134
|
# BOT\_INTENTS\_COMPLETED
|
8918
9135
|
#
|
@@ -8925,7 +9142,7 @@ module Aws::Connect
|
|
8925
9142
|
# published timestamp, Initiation method, Invoking resource type,
|
8926
9143
|
# Parent flows resource ID
|
8927
9144
|
#
|
8928
|
-
# UI name: [Bot intents completed][
|
9145
|
+
# UI name: [Bot intents completed][44]
|
8929
9146
|
#
|
8930
9147
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
|
8931
9148
|
#
|
@@ -8940,7 +9157,7 @@ module Aws::Connect
|
|
8940
9157
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
8941
9158
|
# `GT` (for *Greater than*).
|
8942
9159
|
#
|
8943
|
-
# UI name: [Campaign contacts abandoned after X][
|
9160
|
+
# UI name: [Campaign contacts abandoned after X][45]
|
8944
9161
|
#
|
8945
9162
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
|
8946
9163
|
#
|
@@ -8955,7 +9172,7 @@ module Aws::Connect
|
|
8955
9172
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
8956
9173
|
# `GT` (for *Greater than*).
|
8957
9174
|
#
|
8958
|
-
# UI name: [Campaign contacts abandoned after X rate][
|
9175
|
+
# UI name: [Campaign contacts abandoned after X rate][46]
|
8959
9176
|
#
|
8960
9177
|
# CAMPAIGN\_INTERACTIONS
|
8961
9178
|
#
|
@@ -8968,7 +9185,7 @@ module Aws::Connect
|
|
8968
9185
|
#
|
8969
9186
|
# Valid groupings and filters: Campaign
|
8970
9187
|
#
|
8971
|
-
# UI name: [Campaign interactions][
|
9188
|
+
# UI name: [Campaign interactions][47]
|
8972
9189
|
#
|
8973
9190
|
# CAMPAIGN\_SEND\_ATTEMPTS
|
8974
9191
|
#
|
@@ -8979,7 +9196,7 @@ module Aws::Connect
|
|
8979
9196
|
# Valid groupings and filters: Campaign, Channel,
|
8980
9197
|
# contact/segmentAttributes/connect:Subtype
|
8981
9198
|
#
|
8982
|
-
# UI name: [Campaign send attempts][
|
9199
|
+
# UI name: [Campaign send attempts][48]
|
8983
9200
|
#
|
8984
9201
|
# CASES\_CREATED
|
8985
9202
|
#
|
@@ -8989,7 +9206,7 @@ module Aws::Connect
|
|
8989
9206
|
#
|
8990
9207
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8991
9208
|
#
|
8992
|
-
# UI name: [Cases created][
|
9209
|
+
# UI name: [Cases created][49]
|
8993
9210
|
#
|
8994
9211
|
# CONTACTS\_CREATED
|
8995
9212
|
#
|
@@ -9000,7 +9217,7 @@ module Aws::Connect
|
|
9000
9217
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9001
9218
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
9002
9219
|
#
|
9003
|
-
# UI name: [Contacts created][
|
9220
|
+
# UI name: [Contacts created][50]
|
9004
9221
|
#
|
9005
9222
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9006
9223
|
#
|
@@ -9016,7 +9233,7 @@ module Aws::Connect
|
|
9016
9233
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
9017
9234
|
# RoutingStepExpression, Q in Connect
|
9018
9235
|
#
|
9019
|
-
# UI name: [API contacts handled][
|
9236
|
+
# UI name: [API contacts handled][51]
|
9020
9237
|
#
|
9021
9238
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9022
9239
|
#
|
@@ -9031,7 +9248,7 @@ module Aws::Connect
|
|
9031
9248
|
# Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
9032
9249
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9033
9250
|
#
|
9034
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
9251
|
+
# UI name: [Contacts handled (connected to agent timestamp)][52]
|
9035
9252
|
#
|
9036
9253
|
# CONTACTS\_HOLD\_ABANDONS
|
9037
9254
|
#
|
@@ -9041,7 +9258,7 @@ module Aws::Connect
|
|
9041
9258
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9042
9259
|
# Connect
|
9043
9260
|
#
|
9044
|
-
# UI name: [Contacts hold disconnect][
|
9261
|
+
# UI name: [Contacts hold disconnect][52]
|
9045
9262
|
#
|
9046
9263
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
9047
9264
|
#
|
@@ -9050,7 +9267,7 @@ module Aws::Connect
|
|
9050
9267
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9051
9268
|
# Agent Hierarchy, Q in Connect
|
9052
9269
|
#
|
9053
|
-
# UI name: [Contacts hold agent disconnect][
|
9270
|
+
# UI name: [Contacts hold agent disconnect][53]
|
9054
9271
|
#
|
9055
9272
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
9056
9273
|
#
|
@@ -9059,7 +9276,7 @@ module Aws::Connect
|
|
9059
9276
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9060
9277
|
# Agent Hierarchy, Q in Connect
|
9061
9278
|
#
|
9062
|
-
# UI name: [Contacts hold customer disconnect][
|
9279
|
+
# UI name: [Contacts hold customer disconnect][54]
|
9063
9280
|
#
|
9064
9281
|
# CONTACTS\_PUT\_ON\_HOLD
|
9065
9282
|
#
|
@@ -9068,7 +9285,7 @@ module Aws::Connect
|
|
9068
9285
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9069
9286
|
# Agent Hierarchy, Q in Connect
|
9070
9287
|
#
|
9071
|
-
# UI name: [Contacts put on hold][
|
9288
|
+
# UI name: [Contacts put on hold][54]
|
9072
9289
|
#
|
9073
9290
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
9074
9291
|
#
|
@@ -9077,7 +9294,7 @@ module Aws::Connect
|
|
9077
9294
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9078
9295
|
# Agent Hierarchy, Q in Connect
|
9079
9296
|
#
|
9080
|
-
# UI name: [Contacts transferred out external][
|
9297
|
+
# UI name: [Contacts transferred out external][55]
|
9081
9298
|
#
|
9082
9299
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
9083
9300
|
#
|
@@ -9086,7 +9303,7 @@ module Aws::Connect
|
|
9086
9303
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9087
9304
|
# Agent Hierarchy, Q in Connect
|
9088
9305
|
#
|
9089
|
-
# UI name: [Contacts transferred out internal][
|
9306
|
+
# UI name: [Contacts transferred out internal][56]
|
9090
9307
|
#
|
9091
9308
|
# CONTACTS\_QUEUED
|
9092
9309
|
#
|
@@ -9096,7 +9313,7 @@ module Aws::Connect
|
|
9096
9313
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9097
9314
|
# Connect
|
9098
9315
|
#
|
9099
|
-
# UI name: [Contacts queued][
|
9316
|
+
# UI name: [Contacts queued][57]
|
9100
9317
|
#
|
9101
9318
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
9102
9319
|
#
|
@@ -9105,7 +9322,7 @@ module Aws::Connect
|
|
9105
9322
|
# Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
9106
9323
|
# contact/segmentAttributes/connect:Subtype
|
9107
9324
|
#
|
9108
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
9325
|
+
# UI name: [Contacts queued (enqueue timestamp)][58]
|
9109
9326
|
#
|
9110
9327
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
9111
9328
|
#
|
@@ -9118,7 +9335,7 @@ module Aws::Connect
|
|
9118
9335
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
9119
9336
|
# (for "Less than") or `LTE` (for "Less than equal").
|
9120
9337
|
#
|
9121
|
-
# UI name: [Contacts removed from queue in X seconds][
|
9338
|
+
# UI name: [Contacts removed from queue in X seconds][59]
|
9122
9339
|
#
|
9123
9340
|
# CONTACTS\_RESOLVED\_IN\_X
|
9124
9341
|
#
|
@@ -9131,7 +9348,7 @@ module Aws::Connect
|
|
9131
9348
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
9132
9349
|
# (for "Less than") or `LTE` (for "Less than equal").
|
9133
9350
|
#
|
9134
|
-
# UI name: [Contacts resolved in X][
|
9351
|
+
# UI name: [Contacts resolved in X][60]
|
9135
9352
|
#
|
9136
9353
|
# CONTACTS\_TRANSFERRED\_OUT
|
9137
9354
|
#
|
@@ -9141,7 +9358,7 @@ module Aws::Connect
|
|
9141
9358
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
9142
9359
|
# Q in Connect
|
9143
9360
|
#
|
9144
|
-
# UI name: [Contacts transferred out][
|
9361
|
+
# UI name: [Contacts transferred out][61]
|
9145
9362
|
#
|
9146
9363
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9147
9364
|
#
|
@@ -9155,7 +9372,7 @@ module Aws::Connect
|
|
9155
9372
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9156
9373
|
# Connect
|
9157
9374
|
#
|
9158
|
-
# UI name: [Contacts transferred out by agent][
|
9375
|
+
# UI name: [Contacts transferred out by agent][62]
|
9159
9376
|
#
|
9160
9377
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
9161
9378
|
#
|
@@ -9165,7 +9382,7 @@ module Aws::Connect
|
|
9165
9382
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9166
9383
|
# Connect
|
9167
9384
|
#
|
9168
|
-
# UI name: [Contacts transferred out queue][
|
9385
|
+
# UI name: [Contacts transferred out queue][62]
|
9169
9386
|
#
|
9170
9387
|
# CURRENT\_CASES
|
9171
9388
|
#
|
@@ -9175,7 +9392,7 @@ module Aws::Connect
|
|
9175
9392
|
#
|
9176
9393
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9177
9394
|
#
|
9178
|
-
# UI name: [Current cases][
|
9395
|
+
# UI name: [Current cases][63]
|
9179
9396
|
#
|
9180
9397
|
# DELIVERY\_ATTEMPTS
|
9181
9398
|
#
|
@@ -9191,7 +9408,7 @@ module Aws::Connect
|
|
9191
9408
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
|
9192
9409
|
# Routing Profile
|
9193
9410
|
#
|
9194
|
-
# UI name: [Delivery attempts][
|
9411
|
+
# UI name: [Delivery attempts][64]
|
9195
9412
|
#
|
9196
9413
|
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
9197
9414
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -9217,7 +9434,7 @@ module Aws::Connect
|
|
9217
9434
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
|
9218
9435
|
# Routing Profile
|
9219
9436
|
#
|
9220
|
-
# UI name: [Delivery attempt disposition rate][
|
9437
|
+
# UI name: [Delivery attempt disposition rate][65]
|
9221
9438
|
#
|
9222
9439
|
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only available
|
9223
9440
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -9227,6 +9444,16 @@ module Aws::Connect
|
|
9227
9444
|
#
|
9228
9445
|
# </note>
|
9229
9446
|
#
|
9447
|
+
# EVALUATIONS\_PERFORMED
|
9448
|
+
#
|
9449
|
+
# : Unit: Count
|
9450
|
+
#
|
9451
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
9452
|
+
# Evaluation Form ID, Evaluation Source, Form Version, Queue, Routing
|
9453
|
+
# Profile
|
9454
|
+
#
|
9455
|
+
# UI name: [Evaluations performed][66]
|
9456
|
+
#
|
9230
9457
|
# FLOWS\_OUTCOME
|
9231
9458
|
#
|
9232
9459
|
# : Unit: Count
|
@@ -9237,7 +9464,7 @@ module Aws::Connect
|
|
9237
9464
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9238
9465
|
# published timestamp
|
9239
9466
|
#
|
9240
|
-
# UI name: [Flows outcome][
|
9467
|
+
# UI name: [Flows outcome][67]
|
9241
9468
|
#
|
9242
9469
|
# FLOWS\_STARTED
|
9243
9470
|
#
|
@@ -9248,7 +9475,7 @@ module Aws::Connect
|
|
9248
9475
|
# resource ID, Flows resource ID, Initiation method, Resource
|
9249
9476
|
# published timestamp
|
9250
9477
|
#
|
9251
|
-
# UI name: [Flows started][
|
9478
|
+
# UI name: [Flows started][68]
|
9252
9479
|
#
|
9253
9480
|
# HUMAN\_ANSWERED\_CALLS
|
9254
9481
|
#
|
@@ -9260,7 +9487,7 @@ module Aws::Connect
|
|
9260
9487
|
#
|
9261
9488
|
# Valid groupings and filters: Agent, Campaign
|
9262
9489
|
#
|
9263
|
-
# UI name: [Human answered][
|
9490
|
+
# UI name: [Human answered][69]
|
9264
9491
|
#
|
9265
9492
|
# MAX\_FLOW\_TIME
|
9266
9493
|
#
|
@@ -9272,7 +9499,7 @@ module Aws::Connect
|
|
9272
9499
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9273
9500
|
# published timestamp
|
9274
9501
|
#
|
9275
|
-
# UI name: [Maximum flow time][
|
9502
|
+
# UI name: [Maximum flow time][70]
|
9276
9503
|
#
|
9277
9504
|
# MAX\_QUEUED\_TIME
|
9278
9505
|
#
|
@@ -9282,7 +9509,7 @@ module Aws::Connect
|
|
9282
9509
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9283
9510
|
# Connect
|
9284
9511
|
#
|
9285
|
-
# UI name: [Maximum queued time][
|
9512
|
+
# UI name: [Maximum queued time][71]
|
9286
9513
|
#
|
9287
9514
|
# MIN\_FLOW\_TIME
|
9288
9515
|
#
|
@@ -9294,7 +9521,17 @@ module Aws::Connect
|
|
9294
9521
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9295
9522
|
# published timestamp
|
9296
9523
|
#
|
9297
|
-
# UI name: [Minimum flow time][
|
9524
|
+
# UI name: [Minimum flow time][72]
|
9525
|
+
#
|
9526
|
+
# PERCENT\_AUTOMATIC\_FAILS
|
9527
|
+
#
|
9528
|
+
# : Unit: Percent
|
9529
|
+
#
|
9530
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
9531
|
+
# Evaluation Form ID, Evaluation Source, Form Version, Queue, Routing
|
9532
|
+
# Profile
|
9533
|
+
#
|
9534
|
+
# UI name: [Automatic fails percent][73]
|
9298
9535
|
#
|
9299
9536
|
# PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
|
9300
9537
|
#
|
@@ -9306,7 +9543,7 @@ module Aws::Connect
|
|
9306
9543
|
# Flow type, Flow action ID, Invoking resource published timestamp,
|
9307
9544
|
# Initiation method, Invoking resource type, Parent flows resource ID
|
9308
9545
|
#
|
9309
|
-
# UI name: [Percent bot conversations outcome][
|
9546
|
+
# UI name: [Percent bot conversations outcome][74]
|
9310
9547
|
#
|
9311
9548
|
# PERCENT\_BOT\_INTENTS\_OUTCOME
|
9312
9549
|
#
|
@@ -9319,7 +9556,7 @@ module Aws::Connect
|
|
9319
9556
|
# published timestamp, Initiation method, Invoking resource type,
|
9320
9557
|
# Parent flows resource ID
|
9321
9558
|
#
|
9322
|
-
# UI name: [Percent bot intents outcome][
|
9559
|
+
# UI name: [Percent bot intents outcome][75]
|
9323
9560
|
#
|
9324
9561
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
9325
9562
|
#
|
@@ -9329,7 +9566,7 @@ module Aws::Connect
|
|
9329
9566
|
#
|
9330
9567
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9331
9568
|
#
|
9332
|
-
# UI name: [Cases resolved on first contact][
|
9569
|
+
# UI name: [Cases resolved on first contact][76]
|
9333
9570
|
#
|
9334
9571
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
9335
9572
|
#
|
@@ -9361,7 +9598,7 @@ module Aws::Connect
|
|
9361
9598
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9362
9599
|
# published timestamp
|
9363
9600
|
#
|
9364
|
-
# UI name: [Flows outcome percentage][
|
9601
|
+
# UI name: [Flows outcome percentage][77].
|
9365
9602
|
#
|
9366
9603
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
9367
9604
|
#
|
@@ -9378,7 +9615,7 @@ module Aws::Connect
|
|
9378
9615
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9379
9616
|
# Connect
|
9380
9617
|
#
|
9381
|
-
# UI name: [Non-talk time percent][
|
9618
|
+
# UI name: [Non-talk time percent][78]
|
9382
9619
|
#
|
9383
9620
|
# PERCENT\_TALK\_TIME
|
9384
9621
|
#
|
@@ -9391,7 +9628,7 @@ module Aws::Connect
|
|
9391
9628
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9392
9629
|
# Connect
|
9393
9630
|
#
|
9394
|
-
# UI name: [Talk time percent][
|
9631
|
+
# UI name: [Talk time percent][79]
|
9395
9632
|
#
|
9396
9633
|
# PERCENT\_TALK\_TIME\_AGENT
|
9397
9634
|
#
|
@@ -9404,7 +9641,7 @@ module Aws::Connect
|
|
9404
9641
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9405
9642
|
# Connect
|
9406
9643
|
#
|
9407
|
-
# UI name: [Agent talk time percent][
|
9644
|
+
# UI name: [Agent talk time percent][80]
|
9408
9645
|
#
|
9409
9646
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
9410
9647
|
#
|
@@ -9417,7 +9654,7 @@ module Aws::Connect
|
|
9417
9654
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9418
9655
|
# Connect
|
9419
9656
|
#
|
9420
|
-
# UI name: [Customer talk time percent][
|
9657
|
+
# UI name: [Customer talk time percent][81]
|
9421
9658
|
#
|
9422
9659
|
# REOPENED\_CASE\_ACTIONS
|
9423
9660
|
#
|
@@ -9427,7 +9664,7 @@ module Aws::Connect
|
|
9427
9664
|
#
|
9428
9665
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9429
9666
|
#
|
9430
|
-
# UI name: [Cases reopened][
|
9667
|
+
# UI name: [Cases reopened][82]
|
9431
9668
|
#
|
9432
9669
|
# RESOLVED\_CASE\_ACTIONS
|
9433
9670
|
#
|
@@ -9437,7 +9674,7 @@ module Aws::Connect
|
|
9437
9674
|
#
|
9438
9675
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9439
9676
|
#
|
9440
|
-
# UI name: [Cases resolved][
|
9677
|
+
# UI name: [Cases resolved][83]
|
9441
9678
|
#
|
9442
9679
|
# SERVICE\_LEVEL
|
9443
9680
|
#
|
@@ -9452,7 +9689,7 @@ module Aws::Connect
|
|
9452
9689
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
9453
9690
|
# (for "Less than") or `LTE` (for "Less than equal").
|
9454
9691
|
#
|
9455
|
-
# UI name: [Service level X][
|
9692
|
+
# UI name: [Service level X][84]
|
9456
9693
|
#
|
9457
9694
|
# STEP\_CONTACTS\_QUEUED
|
9458
9695
|
#
|
@@ -9470,7 +9707,7 @@ module Aws::Connect
|
|
9470
9707
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9471
9708
|
# Agent Hierarchy, Q in Connect
|
9472
9709
|
#
|
9473
|
-
# UI name: [After contact work time][
|
9710
|
+
# UI name: [After contact work time][85]
|
9474
9711
|
#
|
9475
9712
|
# SUM\_CONNECTING\_TIME\_AGENT
|
9476
9713
|
#
|
@@ -9483,7 +9720,7 @@ module Aws::Connect
|
|
9483
9720
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9484
9721
|
# Agent Hierarchy
|
9485
9722
|
#
|
9486
|
-
# UI name: [Agent API connecting time][
|
9723
|
+
# UI name: [Agent API connecting time][86]
|
9487
9724
|
#
|
9488
9725
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for this
|
9489
9726
|
# metric.
|
@@ -9505,7 +9742,7 @@ module Aws::Connect
|
|
9505
9742
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9506
9743
|
# RoutingStepExpression, Q in Connect
|
9507
9744
|
#
|
9508
|
-
# UI name: [Contact abandoned][
|
9745
|
+
# UI name: [Contact abandoned][87]
|
9509
9746
|
#
|
9510
9747
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
9511
9748
|
#
|
@@ -9518,7 +9755,7 @@ module Aws::Connect
|
|
9518
9755
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
9519
9756
|
# (for "Less than") or `LTE` (for "Less than equal").
|
9520
9757
|
#
|
9521
|
-
# UI name: [Contacts abandoned in X seconds][
|
9758
|
+
# UI name: [Contacts abandoned in X seconds][88]
|
9522
9759
|
#
|
9523
9760
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
9524
9761
|
#
|
@@ -9531,7 +9768,7 @@ module Aws::Connect
|
|
9531
9768
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
9532
9769
|
# (for "Less than") or `LTE` (for "Less than equal").
|
9533
9770
|
#
|
9534
|
-
# UI name: [Contacts answered in X seconds][
|
9771
|
+
# UI name: [Contacts answered in X seconds][89]
|
9535
9772
|
#
|
9536
9773
|
# SUM\_CONTACT\_FLOW\_TIME
|
9537
9774
|
#
|
@@ -9540,7 +9777,7 @@ module Aws::Connect
|
|
9540
9777
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9541
9778
|
# Agent Hierarchy, Q in Connect
|
9542
9779
|
#
|
9543
|
-
# UI name: [Contact flow time][
|
9780
|
+
# UI name: [Contact flow time][90]
|
9544
9781
|
#
|
9545
9782
|
# SUM\_CONTACT\_TIME\_AGENT
|
9546
9783
|
#
|
@@ -9548,7 +9785,7 @@ module Aws::Connect
|
|
9548
9785
|
#
|
9549
9786
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
9550
9787
|
#
|
9551
|
-
# UI name: [Agent on contact time][
|
9788
|
+
# UI name: [Agent on contact time][91]
|
9552
9789
|
#
|
9553
9790
|
# SUM\_CONTACTS\_DISCONNECTED
|
9554
9791
|
#
|
@@ -9560,7 +9797,7 @@ module Aws::Connect
|
|
9560
9797
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9561
9798
|
# Connect
|
9562
9799
|
#
|
9563
|
-
# UI name: [Contact disconnected][
|
9800
|
+
# UI name: [Contact disconnected][92]
|
9564
9801
|
#
|
9565
9802
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
9566
9803
|
#
|
@@ -9568,7 +9805,7 @@ module Aws::Connect
|
|
9568
9805
|
#
|
9569
9806
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
9570
9807
|
#
|
9571
|
-
# UI name: [Error status time][
|
9808
|
+
# UI name: [Error status time][93]
|
9572
9809
|
#
|
9573
9810
|
# SUM\_HANDLE\_TIME
|
9574
9811
|
#
|
@@ -9577,7 +9814,7 @@ module Aws::Connect
|
|
9577
9814
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9578
9815
|
# Agent Hierarchy, Q in Connect
|
9579
9816
|
#
|
9580
|
-
# UI name: [Contact handle time][
|
9817
|
+
# UI name: [Contact handle time][94]
|
9581
9818
|
#
|
9582
9819
|
# SUM\_HOLD\_TIME
|
9583
9820
|
#
|
@@ -9586,7 +9823,7 @@ module Aws::Connect
|
|
9586
9823
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9587
9824
|
# Agent Hierarchy, Q in Connect
|
9588
9825
|
#
|
9589
|
-
# UI name: [Customer hold time][
|
9826
|
+
# UI name: [Customer hold time][95]
|
9590
9827
|
#
|
9591
9828
|
# SUM\_IDLE\_TIME\_AGENT
|
9592
9829
|
#
|
@@ -9594,7 +9831,7 @@ module Aws::Connect
|
|
9594
9831
|
#
|
9595
9832
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
9596
9833
|
#
|
9597
|
-
# UI name: [Agent idle time][
|
9834
|
+
# UI name: [Agent idle time][96]
|
9598
9835
|
#
|
9599
9836
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
9600
9837
|
#
|
@@ -9603,7 +9840,7 @@ module Aws::Connect
|
|
9603
9840
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9604
9841
|
# Agent Hierarchy, Q in Connect
|
9605
9842
|
#
|
9606
|
-
# UI name: [Agent interaction and hold time][
|
9843
|
+
# UI name: [Agent interaction and hold time][97]
|
9607
9844
|
#
|
9608
9845
|
# SUM\_INTERACTION\_TIME
|
9609
9846
|
#
|
@@ -9612,7 +9849,7 @@ module Aws::Connect
|
|
9612
9849
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9613
9850
|
# Agent Hierarchy
|
9614
9851
|
#
|
9615
|
-
# UI name: [Agent interaction time][
|
9852
|
+
# UI name: [Agent interaction time][98]
|
9616
9853
|
#
|
9617
9854
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
9618
9855
|
#
|
@@ -9620,7 +9857,7 @@ module Aws::Connect
|
|
9620
9857
|
#
|
9621
9858
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
9622
9859
|
#
|
9623
|
-
# UI name: [Non-Productive Time][
|
9860
|
+
# UI name: [Non-Productive Time][99]
|
9624
9861
|
#
|
9625
9862
|
# SUM\_ONLINE\_TIME\_AGENT
|
9626
9863
|
#
|
@@ -9628,7 +9865,7 @@ module Aws::Connect
|
|
9628
9865
|
#
|
9629
9866
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
9630
9867
|
#
|
9631
|
-
# UI name: [Online time][
|
9868
|
+
# UI name: [Online time][100]
|
9632
9869
|
#
|
9633
9870
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
9634
9871
|
#
|
@@ -9637,7 +9874,7 @@ module Aws::Connect
|
|
9637
9874
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9638
9875
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9639
9876
|
#
|
9640
|
-
# UI name: [Callback attempts][
|
9877
|
+
# UI name: [Callback attempts][101]
|
9641
9878
|
#
|
9642
9879
|
#
|
9643
9880
|
#
|
@@ -9664,80 +9901,84 @@ module Aws::Connect
|
|
9664
9901
|
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contact-duration-historical
|
9665
9902
|
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-conversation-duration-historical
|
9666
9903
|
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-dials-historical
|
9667
|
-
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9668
|
-
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9669
|
-
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9670
|
-
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9671
|
-
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9672
|
-
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9673
|
-
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9674
|
-
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical
|
9675
|
-
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9676
|
-
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-
|
9677
|
-
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
9678
|
-
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
9679
|
-
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9680
|
-
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9681
|
-
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-
|
9682
|
-
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-
|
9683
|
-
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9684
|
-
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9685
|
-
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9686
|
-
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9687
|
-
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9688
|
-
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-
|
9689
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-
|
9690
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9691
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9692
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9693
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9694
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9695
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9696
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9697
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9698
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9699
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9700
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9701
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9702
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9703
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9704
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9705
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9706
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9707
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9708
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9709
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9710
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9711
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9712
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9713
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9714
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9715
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9716
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9717
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9718
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9719
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9720
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9721
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9722
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9723
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9724
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9725
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9726
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9727
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9728
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9729
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9730
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9731
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9732
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9733
|
-
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-
|
9734
|
-
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9735
|
-
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9736
|
-
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9737
|
-
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9738
|
-
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9739
|
-
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9740
|
-
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9904
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-evaluation-score-historical
|
9905
|
+
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-flow-time-historical
|
9906
|
+
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-greeting-time-agent-historical
|
9907
|
+
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-handle-time-historical
|
9908
|
+
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-customer-hold-time-historical
|
9909
|
+
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#avg-customer-hold-time-all-contacts-historical
|
9910
|
+
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-holds-historical
|
9911
|
+
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-customer-hold-time-historical
|
9912
|
+
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical
|
9913
|
+
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-agent-historical
|
9914
|
+
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-time-agent-historical
|
9915
|
+
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##average-non-talk-time-historical
|
9916
|
+
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-answer-time-historical
|
9917
|
+
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-resolution-time-historical
|
9918
|
+
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-historical
|
9919
|
+
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-agent-historical
|
9920
|
+
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-customer-historical
|
9921
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-wait-time-historical
|
9922
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-weighted-agent-evaluation-score-historical
|
9923
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed-metric
|
9924
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed-metric
|
9925
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-historical
|
9926
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-rate-historical
|
9927
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-interactions-historical
|
9928
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-send-attempts-historical
|
9929
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-created-historical
|
9930
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-created-historical
|
9931
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#api-contacts-handled-historical
|
9932
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical
|
9933
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-agent-disconnect-historical
|
9934
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical
|
9935
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-external-historical
|
9936
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical
|
9937
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical
|
9938
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical
|
9939
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-removed-historical
|
9940
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical
|
9941
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical
|
9942
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical
|
9943
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#current-cases-historical
|
9944
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempts-historical
|
9945
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempt-disposition-rate-historical
|
9946
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#evaluations-performed-historical
|
9947
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical
|
9948
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-started-historical
|
9949
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#human-answered-historical
|
9950
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-flow-time-historical
|
9951
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical
|
9952
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#minimum-flow-time-historical
|
9953
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#percent-evaluation-automatic-failures-historical
|
9954
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome-metric
|
9955
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome-metric
|
9956
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-first-contact-historical
|
9957
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-percentage-historical
|
9958
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical
|
9959
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical
|
9960
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical
|
9961
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical
|
9962
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-reopened-historical
|
9963
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historical
|
9964
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical
|
9965
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical
|
9966
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time
|
9967
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical
|
9968
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical
|
9969
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical
|
9970
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical
|
9971
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical
|
9972
|
+
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical
|
9973
|
+
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical
|
9974
|
+
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical
|
9975
|
+
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical
|
9976
|
+
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-idle-time-historica
|
9977
|
+
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical
|
9978
|
+
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
|
9979
|
+
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#npt-historical
|
9980
|
+
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#online-time-historical
|
9981
|
+
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical
|
9741
9982
|
#
|
9742
9983
|
# @option params [String] :next_token
|
9743
9984
|
# The token for the next set of results. Use the value returned in the
|
@@ -10017,7 +10258,7 @@ module Aws::Connect
|
|
10017
10258
|
# service level quota of 99 phone numbers, and in any 180 day period you
|
10018
10259
|
# release 99, claim 99, and then release 99, you will have exceeded the
|
10019
10260
|
# 200% limit. At that point you are blocked from claiming any more
|
10020
|
-
# numbers until you open an Amazon Web
|
10261
|
+
# numbers until you open an Amazon Web ServicesSupport ticket.
|
10021
10262
|
#
|
10022
10263
|
#
|
10023
10264
|
#
|
@@ -10192,6 +10433,7 @@ module Aws::Connect
|
|
10192
10433
|
# resp.results[0].target_account_id #=> String
|
10193
10434
|
# resp.results[0].resource_share_id #=> String
|
10194
10435
|
# resp.results[0].resource_share_arn #=> String
|
10436
|
+
# resp.results[0].resource_share_status #=> String
|
10195
10437
|
# resp.next_token #=> String
|
10196
10438
|
#
|
10197
10439
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAnalyticsDataAssociations AWS API Documentation
|
@@ -10203,6 +10445,54 @@ module Aws::Connect
|
|
10203
10445
|
req.send_request(options)
|
10204
10446
|
end
|
10205
10447
|
|
10448
|
+
# Lists the data lake datasets available to associate with for a given
|
10449
|
+
# Amazon Connect instance.
|
10450
|
+
#
|
10451
|
+
# @option params [required, String] :instance_id
|
10452
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
10453
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
10454
|
+
#
|
10455
|
+
#
|
10456
|
+
#
|
10457
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
10458
|
+
#
|
10459
|
+
# @option params [String] :next_token
|
10460
|
+
# The token for the next set of results. Use the value returned in the
|
10461
|
+
# previous response in the next request to retrieve the next set of
|
10462
|
+
# results.
|
10463
|
+
#
|
10464
|
+
# @option params [Integer] :max_results
|
10465
|
+
# The maximum number of results to return per page.
|
10466
|
+
#
|
10467
|
+
# @return [Types::ListAnalyticsDataLakeDataSetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10468
|
+
#
|
10469
|
+
# * {Types::ListAnalyticsDataLakeDataSetsResponse#results #results} => Array<Types::AnalyticsDataSetsResult>
|
10470
|
+
# * {Types::ListAnalyticsDataLakeDataSetsResponse#next_token #next_token} => String
|
10471
|
+
#
|
10472
|
+
# @example Request syntax with placeholder values
|
10473
|
+
#
|
10474
|
+
# resp = client.list_analytics_data_lake_data_sets({
|
10475
|
+
# instance_id: "InstanceId", # required
|
10476
|
+
# next_token: "NextToken",
|
10477
|
+
# max_results: 1,
|
10478
|
+
# })
|
10479
|
+
#
|
10480
|
+
# @example Response structure
|
10481
|
+
#
|
10482
|
+
# resp.results #=> Array
|
10483
|
+
# resp.results[0].data_set_id #=> String
|
10484
|
+
# resp.results[0].data_set_name #=> String
|
10485
|
+
# resp.next_token #=> String
|
10486
|
+
#
|
10487
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAnalyticsDataLakeDataSets AWS API Documentation
|
10488
|
+
#
|
10489
|
+
# @overload list_analytics_data_lake_data_sets(params = {})
|
10490
|
+
# @param [Hash] params ({})
|
10491
|
+
def list_analytics_data_lake_data_sets(params = {}, options = {})
|
10492
|
+
req = build_request(:list_analytics_data_lake_data_sets, params)
|
10493
|
+
req.send_request(options)
|
10494
|
+
end
|
10495
|
+
|
10206
10496
|
# This API is in preview release for Amazon Connect and is subject to
|
10207
10497
|
# change.
|
10208
10498
|
#
|
@@ -10320,8 +10610,8 @@ module Aws::Connect
|
|
10320
10610
|
end
|
10321
10611
|
|
10322
10612
|
# This API is in preview release for Amazon Connect and is subject to
|
10323
|
-
# change. To request access to this API, contact Amazon Web
|
10324
|
-
#
|
10613
|
+
# change. To request access to this API, contact Amazon Web
|
10614
|
+
# ServicesSupport.
|
10325
10615
|
#
|
10326
10616
|
# Provides summary information about the authentication profiles in a
|
10327
10617
|
# specified Amazon Connect instance.
|
@@ -13194,7 +13484,7 @@ module Aws::Connect
|
|
13194
13484
|
# After releasing a phone number, the phone number enters into a
|
13195
13485
|
# cooldown period for up to 180 days. It cannot be searched for or
|
13196
13486
|
# claimed again until the period has ended. If you accidentally release
|
13197
|
-
# a phone number, contact Amazon Web
|
13487
|
+
# a phone number, contact Amazon Web ServicesSupport.
|
13198
13488
|
#
|
13199
13489
|
# If you plan to claim and release numbers frequently, contact us for a
|
13200
13490
|
# service quota exception. Otherwise, it is possible you will be blocked
|
@@ -15686,8 +15976,8 @@ module Aws::Connect
|
|
15686
15976
|
#
|
15687
15977
|
# If you use the `ChatDurationInMinutes` parameter and receive a 400
|
15688
15978
|
# error, your account may not support the ability to configure custom
|
15689
|
-
# chat durations. For more information, contact Amazon Web
|
15690
|
-
#
|
15979
|
+
# chat durations. For more information, contact Amazon Web
|
15980
|
+
# ServicesSupport.
|
15691
15981
|
#
|
15692
15982
|
# For more information about chat, see the following topics in the
|
15693
15983
|
# *Amazon Connect Administrator Guide*:
|
@@ -17678,8 +17968,8 @@ module Aws::Connect
|
|
17678
17968
|
end
|
17679
17969
|
|
17680
17970
|
# This API is in preview release for Amazon Connect and is subject to
|
17681
|
-
# change. To request access to this API, contact Amazon Web
|
17682
|
-
#
|
17971
|
+
# change. To request access to this API, contact Amazon Web
|
17972
|
+
# ServicesSupport.
|
17683
17973
|
#
|
17684
17974
|
# Updates the selected authentication profile.
|
17685
17975
|
#
|
@@ -18778,7 +19068,7 @@ module Aws::Connect
|
|
18778
19068
|
# The type of attribute.
|
18779
19069
|
#
|
18780
19070
|
# <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
|
18781
|
-
# access this feature, contact Amazon Web
|
19071
|
+
# access this feature, contact Amazon Web ServicesSupport for
|
18782
19072
|
# allowlisting.
|
18783
19073
|
#
|
18784
19074
|
# </note>
|
@@ -18786,6 +19076,19 @@ module Aws::Connect
|
|
18786
19076
|
# @option params [required, String] :value
|
18787
19077
|
# The value for the attribute. Maximum character limit is 100.
|
18788
19078
|
#
|
19079
|
+
# @option params [String] :client_token
|
19080
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
19081
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
19082
|
+
# SDK populates this field. For more information about idempotency, see
|
19083
|
+
# [Making retries safe with idempotent APIs][1].
|
19084
|
+
#
|
19085
|
+
# **A suitable default value is auto-generated.** You should normally
|
19086
|
+
# not need to pass this option.**
|
19087
|
+
#
|
19088
|
+
#
|
19089
|
+
#
|
19090
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
19091
|
+
#
|
18789
19092
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
18790
19093
|
#
|
18791
19094
|
# @example Request syntax with placeholder values
|
@@ -18794,6 +19097,7 @@ module Aws::Connect
|
|
18794
19097
|
# instance_id: "InstanceId", # required
|
18795
19098
|
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING, ENHANCED_CHAT_MONITORING, MULTI_PARTY_CHAT_CONFERENCE
|
18796
19099
|
# value: "InstanceAttributeValue", # required
|
19100
|
+
# client_token: "ClientToken",
|
18797
19101
|
# })
|
18798
19102
|
#
|
18799
19103
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateInstanceAttribute AWS API Documentation
|
@@ -18829,6 +19133,19 @@ module Aws::Connect
|
|
18829
19133
|
# @option params [required, Types::InstanceStorageConfig] :storage_config
|
18830
19134
|
# The storage configuration for the instance.
|
18831
19135
|
#
|
19136
|
+
# @option params [String] :client_token
|
19137
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
19138
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
19139
|
+
# SDK populates this field. For more information about idempotency, see
|
19140
|
+
# [Making retries safe with idempotent APIs][1].
|
19141
|
+
#
|
19142
|
+
# **A suitable default value is auto-generated.** You should normally
|
19143
|
+
# not need to pass this option.**
|
19144
|
+
#
|
19145
|
+
#
|
19146
|
+
#
|
19147
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
19148
|
+
#
|
18832
19149
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
18833
19150
|
#
|
18834
19151
|
# @example Request syntax with placeholder values
|
@@ -18863,6 +19180,7 @@ module Aws::Connect
|
|
18863
19180
|
# firehose_arn: "ARN", # required
|
18864
19181
|
# },
|
18865
19182
|
# },
|
19183
|
+
# client_token: "ClientToken",
|
18866
19184
|
# })
|
18867
19185
|
#
|
18868
19186
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateInstanceStorageConfig AWS API Documentation
|
@@ -20682,7 +21000,7 @@ module Aws::Connect
|
|
20682
21000
|
tracer: tracer
|
20683
21001
|
)
|
20684
21002
|
context[:gem_name] = 'aws-sdk-connect'
|
20685
|
-
context[:gem_version] = '1.
|
21003
|
+
context[:gem_version] = '1.198.0'
|
20686
21004
|
Seahorse::Client::Request.new(handlers, context)
|
20687
21005
|
end
|
20688
21006
|
|