aws-sdk-connect 1.183.0 → 1.185.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 +369 -212
- data/lib/aws-sdk-connect/client_api.rb +79 -0
- data/lib/aws-sdk-connect/types.rb +435 -234
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +33 -2
- data/sig/types.rbs +47 -3
- metadata +2 -2
@@ -1495,8 +1495,8 @@ module Aws::Connect
|
|
1495
1495
|
#
|
1496
1496
|
# @option params [Hash<String,String>] :tags
|
1497
1497
|
# The tags used to organize, track, or control access for this resource.
|
1498
|
-
# For example,
|
1499
|
-
#
|
1498
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
1499
|
+
# }.
|
1500
1500
|
#
|
1501
1501
|
# @option params [String] :client_token
|
1502
1502
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -1505,7 +1505,7 @@ module Aws::Connect
|
|
1505
1505
|
# [Making retries safe with idempotent APIs][1].
|
1506
1506
|
#
|
1507
1507
|
# Pattern:
|
1508
|
-
# `^[a-f0-9]
|
1508
|
+
# `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
|
1509
1509
|
#
|
1510
1510
|
# **A suitable default value is auto-generated.** You should normally
|
1511
1511
|
# not need to pass this option.**
|
@@ -1613,8 +1613,8 @@ module Aws::Connect
|
|
1613
1613
|
#
|
1614
1614
|
# @option params [Hash<String,String>] :tags
|
1615
1615
|
# The tags used to organize, track, or control access for this resource.
|
1616
|
-
# For example,
|
1617
|
-
#
|
1616
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
1617
|
+
# }.
|
1618
1618
|
#
|
1619
1619
|
# @return [Types::CreateAgentStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1620
1620
|
#
|
@@ -1692,13 +1692,14 @@ module Aws::Connect
|
|
1692
1692
|
#
|
1693
1693
|
# @option params [Hash<String,String>] :tags
|
1694
1694
|
# The tags used to organize, track, or control access for this resource.
|
1695
|
-
# For example,
|
1696
|
-
#
|
1695
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
1696
|
+
# }.
|
1697
1697
|
#
|
1698
1698
|
# @return [Types::CreateContactFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1699
1699
|
#
|
1700
1700
|
# * {Types::CreateContactFlowResponse#contact_flow_id #contact_flow_id} => String
|
1701
1701
|
# * {Types::CreateContactFlowResponse#contact_flow_arn #contact_flow_arn} => String
|
1702
|
+
# * {Types::CreateContactFlowResponse#flow_content_sha_256 #flow_content_sha_256} => String
|
1702
1703
|
#
|
1703
1704
|
# @example Request syntax with placeholder values
|
1704
1705
|
#
|
@@ -1718,6 +1719,7 @@ module Aws::Connect
|
|
1718
1719
|
#
|
1719
1720
|
# resp.contact_flow_id #=> String
|
1720
1721
|
# resp.contact_flow_arn #=> String
|
1722
|
+
# resp.flow_content_sha_256 #=> String
|
1721
1723
|
#
|
1722
1724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlow AWS API Documentation
|
1723
1725
|
#
|
@@ -1754,8 +1756,8 @@ module Aws::Connect
|
|
1754
1756
|
#
|
1755
1757
|
# @option params [Hash<String,String>] :tags
|
1756
1758
|
# The tags used to organize, track, or control access for this resource.
|
1757
|
-
# For example,
|
1758
|
-
#
|
1759
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
1760
|
+
# }.
|
1759
1761
|
#
|
1760
1762
|
# @option params [String] :client_token
|
1761
1763
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -1802,6 +1804,62 @@ module Aws::Connect
|
|
1802
1804
|
req.send_request(options)
|
1803
1805
|
end
|
1804
1806
|
|
1807
|
+
# Publishes a new version of the flow provided. Versions are immutable
|
1808
|
+
# and monotonically increasing. If a version of the same flow content
|
1809
|
+
# already exists, no new version is created and instead the existing
|
1810
|
+
# version number is returned. If the `FlowContentSha256` provided is
|
1811
|
+
# different from the `FlowContentSha256` of the `$LATEST` published flow
|
1812
|
+
# content, then an error is returned. This API only supports creating
|
1813
|
+
# versions for flows of type `Campaign`.
|
1814
|
+
#
|
1815
|
+
# @option params [required, String] :instance_id
|
1816
|
+
# The identifier of the Amazon Connect instance.
|
1817
|
+
#
|
1818
|
+
# @option params [String] :description
|
1819
|
+
# The description of the flow version.
|
1820
|
+
#
|
1821
|
+
# @option params [required, String] :contact_flow_id
|
1822
|
+
# The identifier of the flow.
|
1823
|
+
#
|
1824
|
+
# @option params [String] :flow_content_sha_256
|
1825
|
+
# Indicates the checksum value of the flow content.
|
1826
|
+
#
|
1827
|
+
# @option params [Time,DateTime,Date,Integer,String] :last_modified_time
|
1828
|
+
# The Amazon Web Services Region where this resource was last modified.
|
1829
|
+
#
|
1830
|
+
# @option params [String] :last_modified_region
|
1831
|
+
# The Amazon Web Services Region where this resource was last modified.
|
1832
|
+
#
|
1833
|
+
# @return [Types::CreateContactFlowVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1834
|
+
#
|
1835
|
+
# * {Types::CreateContactFlowVersionResponse#contact_flow_arn #contact_flow_arn} => String
|
1836
|
+
# * {Types::CreateContactFlowVersionResponse#version #version} => Integer
|
1837
|
+
#
|
1838
|
+
# @example Request syntax with placeholder values
|
1839
|
+
#
|
1840
|
+
# resp = client.create_contact_flow_version({
|
1841
|
+
# instance_id: "InstanceId", # required
|
1842
|
+
# description: "ContactFlowDescription",
|
1843
|
+
# contact_flow_id: "ARN", # required
|
1844
|
+
# flow_content_sha_256: "FlowContentSha256",
|
1845
|
+
# last_modified_time: Time.now,
|
1846
|
+
# last_modified_region: "RegionName",
|
1847
|
+
# })
|
1848
|
+
#
|
1849
|
+
# @example Response structure
|
1850
|
+
#
|
1851
|
+
# resp.contact_flow_arn #=> String
|
1852
|
+
# resp.version #=> Integer
|
1853
|
+
#
|
1854
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowVersion AWS API Documentation
|
1855
|
+
#
|
1856
|
+
# @overload create_contact_flow_version(params = {})
|
1857
|
+
# @param [Hash] params ({})
|
1858
|
+
def create_contact_flow_version(params = {}, options = {})
|
1859
|
+
req = build_request(:create_contact_flow_version, params)
|
1860
|
+
req.send_request(options)
|
1861
|
+
end
|
1862
|
+
|
1805
1863
|
# Creates an evaluation form in the specified Amazon Connect instance.
|
1806
1864
|
# The form can be used to define questions related to agent performance,
|
1807
1865
|
# and create sections to organize such questions. Question and section
|
@@ -1965,8 +2023,8 @@ module Aws::Connect
|
|
1965
2023
|
#
|
1966
2024
|
# @option params [Hash<String,String>] :tags
|
1967
2025
|
# The tags used to organize, track, or control access for this resource.
|
1968
|
-
# For example,
|
1969
|
-
#
|
2026
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
2027
|
+
# }.
|
1970
2028
|
#
|
1971
2029
|
# @return [Types::CreateHoursOfOperationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1972
2030
|
#
|
@@ -2054,7 +2112,7 @@ module Aws::Connect
|
|
2054
2112
|
#
|
2055
2113
|
# @option params [Hash<String,String>] :tags
|
2056
2114
|
# The tags used to organize, track, or control access for this resource.
|
2057
|
-
# For example,
|
2115
|
+
# For example, `{ "tags": {"key1":"value1", "key2":"value2"} }`.
|
2058
2116
|
#
|
2059
2117
|
# @return [Types::CreateInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2060
2118
|
#
|
@@ -2125,8 +2183,8 @@ module Aws::Connect
|
|
2125
2183
|
#
|
2126
2184
|
# @option params [Hash<String,String>] :tags
|
2127
2185
|
# The tags used to organize, track, or control access for this resource.
|
2128
|
-
# For example,
|
2129
|
-
#
|
2186
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
2187
|
+
# }.
|
2130
2188
|
#
|
2131
2189
|
# @return [Types::CreateIntegrationAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2132
2190
|
#
|
@@ -2137,7 +2195,7 @@ module Aws::Connect
|
|
2137
2195
|
#
|
2138
2196
|
# resp = client.create_integration_association({
|
2139
2197
|
# instance_id: "InstanceId", # required
|
2140
|
-
# integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, CASES_DOMAIN, APPLICATION, FILE_SCANNER
|
2198
|
+
# integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER
|
2141
2199
|
# integration_arn: "ARN", # required
|
2142
2200
|
# source_application_url: "URI",
|
2143
2201
|
# source_application_name: "SourceApplicationName",
|
@@ -2289,7 +2347,6 @@ module Aws::Connect
|
|
2289
2347
|
# * SourceContactId = "C2"
|
2290
2348
|
#
|
2291
2349
|
# * RehydrationType = "FROM\_SEGMENT"
|
2292
|
-
#
|
2293
2350
|
# * **Expected behavior**
|
2294
2351
|
#
|
2295
2352
|
# * This starts a persistent chat session from the specified past
|
@@ -2298,7 +2355,6 @@ module Aws::Connect
|
|
2298
2355
|
# chat segment C3 is dropped from the persistent chat session.
|
2299
2356
|
#
|
2300
2357
|
# ^
|
2301
|
-
#
|
2302
2358
|
# * **Use Case 2**: The customer wants to continue the past chat session
|
2303
2359
|
# and see the transcript of the entire past engagement, including the
|
2304
2360
|
# post chat survey. For this they will use the following
|
@@ -2309,7 +2365,6 @@ module Aws::Connect
|
|
2309
2365
|
# * SourceContactId = "C1"
|
2310
2366
|
#
|
2311
2367
|
# * RehydrationType = "ENTIRE\_PAST\_SESSION"
|
2312
|
-
#
|
2313
2368
|
# * **Expected behavior**
|
2314
2369
|
#
|
2315
2370
|
# * This starts a persistent chat session from the most recently
|
@@ -2432,8 +2487,8 @@ module Aws::Connect
|
|
2432
2487
|
#
|
2433
2488
|
# @option params [Hash<String,String>] :tags
|
2434
2489
|
# The tags used to organize, track, or control access for this resource.
|
2435
|
-
# For example,
|
2436
|
-
#
|
2490
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
2491
|
+
# }.
|
2437
2492
|
#
|
2438
2493
|
# @return [Types::CreatePromptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2439
2494
|
#
|
@@ -2527,8 +2582,8 @@ module Aws::Connect
|
|
2527
2582
|
#
|
2528
2583
|
# @option params [Hash<String,String>] :tags
|
2529
2584
|
# The tags used to organize, track, or control access for this resource.
|
2530
|
-
# For example,
|
2531
|
-
#
|
2585
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
2586
|
+
# }.
|
2532
2587
|
#
|
2533
2588
|
# @return [Types::CreateQueueResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2534
2589
|
#
|
@@ -2589,8 +2644,8 @@ module Aws::Connect
|
|
2589
2644
|
#
|
2590
2645
|
# @option params [Hash<String,String>] :tags
|
2591
2646
|
# The tags used to organize, track, or control access for this resource.
|
2592
|
-
# For example,
|
2593
|
-
#
|
2647
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
2648
|
+
# }.
|
2594
2649
|
#
|
2595
2650
|
# @return [Types::CreateQuickConnectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2596
2651
|
#
|
@@ -2676,8 +2731,8 @@ module Aws::Connect
|
|
2676
2731
|
#
|
2677
2732
|
# @option params [Hash<String,String>] :tags
|
2678
2733
|
# The tags used to organize, track, or control access for this resource.
|
2679
|
-
# For example,
|
2680
|
-
#
|
2734
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
2735
|
+
# }.
|
2681
2736
|
#
|
2682
2737
|
# @option params [String] :agent_availability_timer
|
2683
2738
|
# Whether agents with this routing profile will have their routing order
|
@@ -2915,8 +2970,8 @@ module Aws::Connect
|
|
2915
2970
|
#
|
2916
2971
|
# @option params [Hash<String,String>] :tags
|
2917
2972
|
# The tags used to organize, track, or control access for this resource.
|
2918
|
-
# For example,
|
2919
|
-
#
|
2973
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
2974
|
+
# }.
|
2920
2975
|
#
|
2921
2976
|
# @option params [Hash<String,String>] :allowed_access_control_tags
|
2922
2977
|
# The list of tags that a security profile uses to restrict access to
|
@@ -3151,8 +3206,8 @@ module Aws::Connect
|
|
3151
3206
|
#
|
3152
3207
|
# @option params [Hash<String,String>] :tags
|
3153
3208
|
# The tags used to organize, track, or control access for this resource.
|
3154
|
-
# For example,
|
3155
|
-
#
|
3209
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
3210
|
+
# }.
|
3156
3211
|
#
|
3157
3212
|
# @return [Types::CreateTrafficDistributionGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3158
3213
|
#
|
@@ -3204,8 +3259,8 @@ module Aws::Connect
|
|
3204
3259
|
#
|
3205
3260
|
# @option params [Hash<String,String>] :tags
|
3206
3261
|
# The tags used to organize, track, or control access for this resource.
|
3207
|
-
# For example,
|
3208
|
-
#
|
3262
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
3263
|
+
# }.
|
3209
3264
|
#
|
3210
3265
|
# @return [Types::CreateUseCaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3211
3266
|
#
|
@@ -3310,8 +3365,8 @@ module Aws::Connect
|
|
3310
3365
|
#
|
3311
3366
|
# @option params [Hash<String,String>] :tags
|
3312
3367
|
# The tags used to organize, track, or control access for this resource.
|
3313
|
-
# For example,
|
3314
|
-
#
|
3368
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
3369
|
+
# }.
|
3315
3370
|
#
|
3316
3371
|
# @return [Types::CreateUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3317
3372
|
#
|
@@ -3380,8 +3435,8 @@ module Aws::Connect
|
|
3380
3435
|
#
|
3381
3436
|
# @option params [Hash<String,String>] :tags
|
3382
3437
|
# The tags used to organize, track, or control access for this resource.
|
3383
|
-
# For example,
|
3384
|
-
#
|
3438
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
3439
|
+
# }.
|
3385
3440
|
#
|
3386
3441
|
# @return [Types::CreateUserHierarchyGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3387
3442
|
#
|
@@ -3451,8 +3506,8 @@ module Aws::Connect
|
|
3451
3506
|
# @option params [Hash<String,String>] :tags
|
3452
3507
|
# The tags associated with the view resource (not specific to view
|
3453
3508
|
# version).These tags can be used to organize, track, or control access
|
3454
|
-
# for this resource. For example,
|
3455
|
-
#
|
3509
|
+
# for this resource. For example, \{ "tags": \{"key1":"value1",
|
3510
|
+
# "key2":"value2"} }.
|
3456
3511
|
#
|
3457
3512
|
# @return [Types::CreateViewResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3458
3513
|
#
|
@@ -3622,8 +3677,8 @@ module Aws::Connect
|
|
3622
3677
|
#
|
3623
3678
|
# @option params [Hash<String,String>] :tags
|
3624
3679
|
# The tags used to organize, track, or control access for this resource.
|
3625
|
-
# For example,
|
3626
|
-
#
|
3680
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
3681
|
+
# }.
|
3627
3682
|
#
|
3628
3683
|
# @return [Types::CreateVocabularyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3629
3684
|
#
|
@@ -4837,9 +4892,9 @@ module Aws::Connect
|
|
4837
4892
|
# language][1].
|
4838
4893
|
#
|
4839
4894
|
# Use the `$SAVED` alias in the request to describe the `SAVED` content
|
4840
|
-
# of a Flow. For example, `arn:aws:.../contact-flow
|
4841
|
-
#
|
4842
|
-
#
|
4895
|
+
# of a Flow. For example, `arn:aws:.../contact-flow/{id}:$SAVED`. Once a
|
4896
|
+
# contact flow is published, `$SAVED` needs to be supplied to view saved
|
4897
|
+
# content that has not been published.
|
4843
4898
|
#
|
4844
4899
|
# In the response, **Status** indicates the flow status as either
|
4845
4900
|
# `SAVED` or `PUBLISHED`. The `PUBLISHED` status will initiate
|
@@ -4879,6 +4934,12 @@ module Aws::Connect
|
|
4879
4934
|
# resp.contact_flow.content #=> String
|
4880
4935
|
# resp.contact_flow.tags #=> Hash
|
4881
4936
|
# resp.contact_flow.tags["TagKey"] #=> String
|
4937
|
+
# resp.contact_flow.is_default #=> Boolean
|
4938
|
+
# resp.contact_flow.flow_content_sha_256 #=> String
|
4939
|
+
# resp.contact_flow.version #=> Integer
|
4940
|
+
# resp.contact_flow.version_description #=> String
|
4941
|
+
# resp.contact_flow.last_modified_time #=> Time
|
4942
|
+
# resp.contact_flow.last_modified_region #=> String
|
4882
4943
|
#
|
4883
4944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlow AWS API Documentation
|
4884
4945
|
#
|
@@ -4892,9 +4953,9 @@ module Aws::Connect
|
|
4892
4953
|
# Describes the specified flow module.
|
4893
4954
|
#
|
4894
4955
|
# Use the `$SAVED` alias in the request to describe the `SAVED` content
|
4895
|
-
# of a Flow. For example, `arn:aws:.../contact-flow
|
4896
|
-
#
|
4897
|
-
#
|
4956
|
+
# of a Flow. For example, `arn:aws:.../contact-flow/{id}:$SAVED`. Once a
|
4957
|
+
# contact flow is published, `$SAVED` needs to be supplied to view saved
|
4958
|
+
# content that has not been published.
|
4898
4959
|
#
|
4899
4960
|
# @option params [required, String] :instance_id
|
4900
4961
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -6801,8 +6862,8 @@ module Aws::Connect
|
|
6801
6862
|
# returned in MILLISECONDS. For example, if you get a response like
|
6802
6863
|
# this:
|
6803
6864
|
#
|
6804
|
-
#
|
6805
|
-
# "Value": 24113.0
|
6865
|
+
# `{ "Metric": { "Name": "OLDEST_CONTACT_AGE", "Unit": "SECONDS" },
|
6866
|
+
# "Value": 24113.0 `}
|
6806
6867
|
#
|
6807
6868
|
# The actual OLDEST\_CONTACT\_AGE is 24 seconds.
|
6808
6869
|
#
|
@@ -7532,7 +7593,6 @@ module Aws::Connect
|
|
7532
7593
|
#
|
7533
7594
|
# * `TOTAL`: The difference between `StartTime` and `EndTime` must be
|
7534
7595
|
# less than 35 days.
|
7535
|
-
#
|
7536
7596
|
# * `TimeZone`: The timezone applied to requested metrics.
|
7537
7597
|
#
|
7538
7598
|
# @option params [required, Array<Types::FilterV2>] :filters
|
@@ -7571,12 +7631,13 @@ module Aws::Connect
|
|
7571
7631
|
# `AGENT_HIERARCHY_LEVEL_ONE` \| `AGENT_HIERARCHY_LEVEL_TWO` \|
|
7572
7632
|
# `AGENT_HIERARCHY_LEVEL_THREE` \| `AGENT_HIERARCHY_LEVEL_FOUR` \|
|
7573
7633
|
# `AGENT_HIERARCHY_LEVEL_FIVE` \| `ANSWERING_MACHINE_DETECTION_STATUS`
|
7574
|
-
# \| `CAMPAIGN` \| `
|
7575
|
-
# \| `
|
7576
|
-
# `
|
7577
|
-
# `
|
7578
|
-
# `
|
7579
|
-
#
|
7634
|
+
# \| `CAMPAIGN` \| `CAMPAIGN_DELIVERY_EVENT_TYPE`
|
7635
|
+
# \|`CASE_TEMPLATE_ARN` \| `CASE_STATUS` \| `CHANNEL` \|
|
7636
|
+
# `contact/segmentAttributes/connect:Subtype` \| `DISCONNECT_REASON`
|
7637
|
+
# \| `FEATURE` \| `FLOW_TYPE` \| `FLOWS_NEXT_RESOURCE_ID` \|
|
7638
|
+
# `FLOWS_NEXT_RESOURCE_QUEUE_ID` \| `FLOWS_OUTCOME_TYPE` \|
|
7639
|
+
# `FLOWS_RESOURCE_ID` \| `INITIATION_METHOD` \|
|
7640
|
+
# `RESOURCE_PUBLISHED_TIMESTAMP` \| `ROUTING_PROFILE` \|
|
7580
7641
|
# `ROUTING_STEP_EXPRESSION` \| `QUEUE` \| `Q_CONNECT_ENABLED` \|
|
7581
7642
|
#
|
7582
7643
|
# * **Filter values**: A maximum of 100 filter values are supported in a
|
@@ -7607,7 +7668,6 @@ module Aws::Connect
|
|
7607
7668
|
#
|
7608
7669
|
# * FALSE includes all contacts that did not have Amazon Q in Connect
|
7609
7670
|
# enabled as part of the flow
|
7610
|
-
#
|
7611
7671
|
# This filter is available only for contact record-driven metrics.
|
7612
7672
|
#
|
7613
7673
|
# [Campaign][2] ARNs are valid `filterValues` for the `CAMPAIGN`
|
@@ -7630,11 +7690,12 @@ module Aws::Connect
|
|
7630
7690
|
# `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
|
7631
7691
|
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
7632
7692
|
# `ANSWERING_MACHINE_DETECTION_STATUS` \| `CAMPAIGN` \|
|
7633
|
-
# `
|
7634
|
-
# `contact/segmentAttributes/connect:Subtype` \|
|
7635
|
-
# `
|
7636
|
-
# `
|
7637
|
-
# `
|
7693
|
+
# `CAMPAIGN_DELIVERY_EVENT_TYPE` \| `CASE_TEMPLATE_ARN` \| `CASE_STATUS`
|
7694
|
+
# \| `CHANNEL` \| `contact/segmentAttributes/connect:Subtype` \|
|
7695
|
+
# `DISCONNECT_REASON` \| `FLOWS_RESOURCE_ID` \|
|
7696
|
+
# `FLOWS_MODULE_RESOURCE_ID` \| `FLOW_TYPE` \| `FLOWS_OUTCOME_TYPE` \|
|
7697
|
+
# `INITIATION_METHOD` \| `Q_CONNECT_ENABLED` \| `QUEUE` \|
|
7698
|
+
# `RESOURCE_PUBLISHED_TIMESTAMP` \| `ROUTING_PROFILE` \|
|
7638
7699
|
# `ROUTING_STEP_EXPRESSION`
|
7639
7700
|
#
|
7640
7701
|
# @option params [required, Array<Types::MetricV2>] :metrics
|
@@ -7844,12 +7905,12 @@ module Aws::Connect
|
|
7844
7905
|
#
|
7845
7906
|
# AVG\_DIALS\_PER\_MINUTE
|
7846
7907
|
#
|
7847
|
-
# : This metric is available only for
|
7848
|
-
#
|
7908
|
+
# : This metric is available only for outbound campaigns that use the
|
7909
|
+
# agent assisted voice and automated voice delivery modes.
|
7849
7910
|
#
|
7850
7911
|
# Unit: Count
|
7851
7912
|
#
|
7852
|
-
# Valid groupings and filters:
|
7913
|
+
# Valid groupings and filters: Agent, Campaign, Queue, Routing Profile
|
7853
7914
|
#
|
7854
7915
|
# UI name: [Average dials per minute][21]
|
7855
7916
|
#
|
@@ -8057,8 +8118,8 @@ module Aws::Connect
|
|
8057
8118
|
#
|
8058
8119
|
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
|
8059
8120
|
#
|
8060
|
-
# : This metric is available only for
|
8061
|
-
#
|
8121
|
+
# : This metric is available only for outbound campaigns that use the
|
8122
|
+
# agent assisted voice and automated voice delivery modes.
|
8062
8123
|
#
|
8063
8124
|
# Unit: Seconds
|
8064
8125
|
#
|
@@ -8068,12 +8129,12 @@ module Aws::Connect
|
|
8068
8129
|
#
|
8069
8130
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
|
8070
8131
|
#
|
8071
|
-
# : This metric is available only for
|
8072
|
-
#
|
8132
|
+
# : This metric is available only for outbound campaigns using the agent
|
8133
|
+
# assisted voice and automated voice delivery modes.
|
8073
8134
|
#
|
8074
8135
|
# Unit: Count
|
8075
8136
|
#
|
8076
|
-
# Valid groupings and filters:
|
8137
|
+
# Valid groupings and filters: Agent, Campaign
|
8077
8138
|
#
|
8078
8139
|
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
8079
8140
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
@@ -8083,12 +8144,12 @@ module Aws::Connect
|
|
8083
8144
|
#
|
8084
8145
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
|
8085
8146
|
#
|
8086
|
-
# : This metric is available only for
|
8087
|
-
#
|
8147
|
+
# : This metric is available only for outbound campaigns using the agent
|
8148
|
+
# assisted voice and automated voice delivery modes.
|
8088
8149
|
#
|
8089
8150
|
# Unit: Percent
|
8090
8151
|
#
|
8091
|
-
# Valid groupings and filters:
|
8152
|
+
# Valid groupings and filters: Agent, Campaign
|
8092
8153
|
#
|
8093
8154
|
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
8094
8155
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
@@ -8096,6 +8157,30 @@ module Aws::Connect
|
|
8096
8157
|
#
|
8097
8158
|
# UI name: [Campaign contacts abandoned after X rate][40]
|
8098
8159
|
#
|
8160
|
+
# CAMPAIGN\_INTERACTIONS
|
8161
|
+
#
|
8162
|
+
# : This metric is available only for outbound campaigns using the email
|
8163
|
+
# delivery mode.
|
8164
|
+
#
|
8165
|
+
# Unit: Count
|
8166
|
+
#
|
8167
|
+
# Valid metric filter key: CAMPAIGN\_INTERACTION\_EVENT\_TYPE
|
8168
|
+
#
|
8169
|
+
# Valid groupings and filters: Campaign
|
8170
|
+
#
|
8171
|
+
# UI name: [Campaign interactions][41]
|
8172
|
+
#
|
8173
|
+
# CAMPAIGN\_SEND\_ATTEMPTS
|
8174
|
+
#
|
8175
|
+
# : This metric is available only for outbound campaigns.
|
8176
|
+
#
|
8177
|
+
# Unit: Count
|
8178
|
+
#
|
8179
|
+
# Valid groupings and filters: Campaign, Channel,
|
8180
|
+
# contact/segmentAttributes/connect:Subtype
|
8181
|
+
#
|
8182
|
+
# UI name: [Campaign send attempts][42]
|
8183
|
+
#
|
8099
8184
|
# CASES\_CREATED
|
8100
8185
|
#
|
8101
8186
|
# : Unit: Count
|
@@ -8104,7 +8189,7 @@ module Aws::Connect
|
|
8104
8189
|
#
|
8105
8190
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8106
8191
|
#
|
8107
|
-
# UI name: [Cases created][
|
8192
|
+
# UI name: [Cases created][43]
|
8108
8193
|
#
|
8109
8194
|
# CONTACTS\_CREATED
|
8110
8195
|
#
|
@@ -8115,7 +8200,7 @@ module Aws::Connect
|
|
8115
8200
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8116
8201
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8117
8202
|
#
|
8118
|
-
# UI name: [Contacts created][
|
8203
|
+
# UI name: [Contacts created][44]
|
8119
8204
|
#
|
8120
8205
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8121
8206
|
#
|
@@ -8131,7 +8216,7 @@ module Aws::Connect
|
|
8131
8216
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8132
8217
|
# RoutingStepExpression, Q in Connect
|
8133
8218
|
#
|
8134
|
-
# UI name: [API contacts handled][
|
8219
|
+
# UI name: [API contacts handled][45]
|
8135
8220
|
#
|
8136
8221
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8137
8222
|
#
|
@@ -8146,7 +8231,7 @@ module Aws::Connect
|
|
8146
8231
|
# Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
8147
8232
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
8148
8233
|
#
|
8149
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
8234
|
+
# UI name: [Contacts handled (connected to agent timestamp)][46]
|
8150
8235
|
#
|
8151
8236
|
# CONTACTS\_HOLD\_ABANDONS
|
8152
8237
|
#
|
@@ -8156,7 +8241,7 @@ module Aws::Connect
|
|
8156
8241
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8157
8242
|
# Connect
|
8158
8243
|
#
|
8159
|
-
# UI name: [Contacts hold disconnect][
|
8244
|
+
# UI name: [Contacts hold disconnect][46]
|
8160
8245
|
#
|
8161
8246
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
8162
8247
|
#
|
@@ -8165,7 +8250,7 @@ module Aws::Connect
|
|
8165
8250
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8166
8251
|
# Agent Hierarchy, Q in Connect
|
8167
8252
|
#
|
8168
|
-
# UI name: [Contacts hold agent disconnect][
|
8253
|
+
# UI name: [Contacts hold agent disconnect][47]
|
8169
8254
|
#
|
8170
8255
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
8171
8256
|
#
|
@@ -8174,7 +8259,7 @@ module Aws::Connect
|
|
8174
8259
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8175
8260
|
# Agent Hierarchy, Q in Connect
|
8176
8261
|
#
|
8177
|
-
# UI name: [Contacts hold customer disconnect][
|
8262
|
+
# UI name: [Contacts hold customer disconnect][48]
|
8178
8263
|
#
|
8179
8264
|
# CONTACTS\_PUT\_ON\_HOLD
|
8180
8265
|
#
|
@@ -8183,7 +8268,7 @@ module Aws::Connect
|
|
8183
8268
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8184
8269
|
# Agent Hierarchy, Q in Connect
|
8185
8270
|
#
|
8186
|
-
# UI name: [Contacts put on hold][
|
8271
|
+
# UI name: [Contacts put on hold][48]
|
8187
8272
|
#
|
8188
8273
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
8189
8274
|
#
|
@@ -8192,7 +8277,7 @@ module Aws::Connect
|
|
8192
8277
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8193
8278
|
# Agent Hierarchy, Q in Connect
|
8194
8279
|
#
|
8195
|
-
# UI name: [Contacts transferred out external][
|
8280
|
+
# UI name: [Contacts transferred out external][49]
|
8196
8281
|
#
|
8197
8282
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
8198
8283
|
#
|
@@ -8201,7 +8286,7 @@ module Aws::Connect
|
|
8201
8286
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8202
8287
|
# Agent Hierarchy, Q in Connect
|
8203
8288
|
#
|
8204
|
-
# UI name: [Contacts transferred out internal][
|
8289
|
+
# UI name: [Contacts transferred out internal][50]
|
8205
8290
|
#
|
8206
8291
|
# CONTACTS\_QUEUED
|
8207
8292
|
#
|
@@ -8211,7 +8296,7 @@ module Aws::Connect
|
|
8211
8296
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8212
8297
|
# Connect
|
8213
8298
|
#
|
8214
|
-
# UI name: [Contacts queued][
|
8299
|
+
# UI name: [Contacts queued][51]
|
8215
8300
|
#
|
8216
8301
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
8217
8302
|
#
|
@@ -8220,7 +8305,7 @@ module Aws::Connect
|
|
8220
8305
|
# Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
8221
8306
|
# contact/segmentAttributes/connect:Subtype
|
8222
8307
|
#
|
8223
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
8308
|
+
# UI name: [Contacts queued (enqueue timestamp)][52]
|
8224
8309
|
#
|
8225
8310
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
8226
8311
|
#
|
@@ -8233,7 +8318,7 @@ module Aws::Connect
|
|
8233
8318
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8234
8319
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8235
8320
|
#
|
8236
|
-
# UI name: [Contacts removed from queue in X seconds][
|
8321
|
+
# UI name: [Contacts removed from queue in X seconds][53]
|
8237
8322
|
#
|
8238
8323
|
# CONTACTS\_RESOLVED\_IN\_X
|
8239
8324
|
#
|
@@ -8246,7 +8331,7 @@ module Aws::Connect
|
|
8246
8331
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8247
8332
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8248
8333
|
#
|
8249
|
-
# UI name: [Contacts resolved in X][
|
8334
|
+
# UI name: [Contacts resolved in X][54]
|
8250
8335
|
#
|
8251
8336
|
# CONTACTS\_TRANSFERRED\_OUT
|
8252
8337
|
#
|
@@ -8256,7 +8341,7 @@ module Aws::Connect
|
|
8256
8341
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8257
8342
|
# Q in Connect
|
8258
8343
|
#
|
8259
|
-
# UI name: [Contacts transferred out][
|
8344
|
+
# UI name: [Contacts transferred out][55]
|
8260
8345
|
#
|
8261
8346
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8262
8347
|
#
|
@@ -8270,7 +8355,7 @@ module Aws::Connect
|
|
8270
8355
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8271
8356
|
# Connect
|
8272
8357
|
#
|
8273
|
-
# UI name: [Contacts transferred out by agent][
|
8358
|
+
# UI name: [Contacts transferred out by agent][56]
|
8274
8359
|
#
|
8275
8360
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
8276
8361
|
#
|
@@ -8280,7 +8365,7 @@ module Aws::Connect
|
|
8280
8365
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8281
8366
|
# Connect
|
8282
8367
|
#
|
8283
|
-
# UI name: [Contacts transferred out queue][
|
8368
|
+
# UI name: [Contacts transferred out queue][56]
|
8284
8369
|
#
|
8285
8370
|
# CURRENT\_CASES
|
8286
8371
|
#
|
@@ -8290,43 +8375,57 @@ module Aws::Connect
|
|
8290
8375
|
#
|
8291
8376
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8292
8377
|
#
|
8293
|
-
# UI name: [Current cases][
|
8378
|
+
# UI name: [Current cases][57]
|
8294
8379
|
#
|
8295
8380
|
# DELIVERY\_ATTEMPTS
|
8296
8381
|
#
|
8297
|
-
# : This metric is available only for
|
8298
|
-
# campaigns analytics.
|
8382
|
+
# : This metric is available only for outbound campaigns.
|
8299
8383
|
#
|
8300
8384
|
# Unit: Count
|
8301
8385
|
#
|
8302
8386
|
# Valid metric filter key: `ANSWERING_MACHINE_DETECTION_STATUS`,
|
8303
|
-
# `DISCONNECT_REASON`
|
8387
|
+
# `CAMPAIGN_DELIVERY_EVENT_TYPE`, `DISCONNECT_REASON`
|
8304
8388
|
#
|
8305
|
-
# Valid groupings and filters:
|
8306
|
-
#
|
8389
|
+
# Valid groupings and filters: Agent, Answering Machine Detection
|
8390
|
+
# Status, Campaign, Campaign Delivery EventType, Channel,
|
8391
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
|
8392
|
+
# Routing Profile
|
8307
8393
|
#
|
8308
|
-
# UI name: [Delivery attempts][
|
8394
|
+
# UI name: [Delivery attempts][58]
|
8395
|
+
#
|
8396
|
+
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
8397
|
+
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
8398
|
+
# Profile, Answering Machine Detection Status and Disconnect Reason
|
8399
|
+
# are only available for agent assisted voice and automated voice
|
8400
|
+
# delivery modes.
|
8401
|
+
#
|
8402
|
+
# </note>
|
8309
8403
|
#
|
8310
8404
|
# DELIVERY\_ATTEMPT\_DISPOSITION\_RATE
|
8311
8405
|
#
|
8312
|
-
# : This metric is available only for
|
8313
|
-
#
|
8314
|
-
# enabled.
|
8406
|
+
# : This metric is available only for outbound campaigns. Dispositions
|
8407
|
+
# for the agent assisted voice and automated voice delivery modes are
|
8408
|
+
# only available with answering machine detection enabled.
|
8315
8409
|
#
|
8316
8410
|
# Unit: Percent
|
8317
8411
|
#
|
8318
8412
|
# Valid metric filter key: `ANSWERING_MACHINE_DETECTION_STATUS`,
|
8319
|
-
# `DISCONNECT_REASON`
|
8413
|
+
# `CAMPAIGN_DELIVERY_EVENT_TYPE`, `DISCONNECT_REASON`
|
8320
8414
|
#
|
8321
|
-
# Valid groupings and filters:
|
8322
|
-
#
|
8415
|
+
# Valid groupings and filters: Agent, Answering Machine Detection
|
8416
|
+
# Status, Campaign, Channel,
|
8417
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
|
8418
|
+
# Routing Profile
|
8323
8419
|
#
|
8324
|
-
#
|
8325
|
-
# filters but not valid groupings.
|
8420
|
+
# UI name: [Delivery attempt disposition rate][59]
|
8326
8421
|
#
|
8327
|
-
#
|
8422
|
+
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only available
|
8423
|
+
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
8424
|
+
# Profile, Answering Machine Detection Status and Disconnect Reason
|
8425
|
+
# are only available for agent assisted voice and automated voice
|
8426
|
+
# delivery modes.
|
8328
8427
|
#
|
8329
|
-
#
|
8428
|
+
# </note>
|
8330
8429
|
#
|
8331
8430
|
# FLOWS\_OUTCOME
|
8332
8431
|
#
|
@@ -8338,7 +8437,7 @@ module Aws::Connect
|
|
8338
8437
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8339
8438
|
# published timestamp
|
8340
8439
|
#
|
8341
|
-
# UI name: [Flows outcome][
|
8440
|
+
# UI name: [Flows outcome][60]
|
8342
8441
|
#
|
8343
8442
|
# FLOWS\_STARTED
|
8344
8443
|
#
|
@@ -8349,19 +8448,19 @@ module Aws::Connect
|
|
8349
8448
|
# resource ID, Flows resource ID, Initiation method, Resource
|
8350
8449
|
# published timestamp
|
8351
8450
|
#
|
8352
|
-
# UI name: [Flows started][
|
8451
|
+
# UI name: [Flows started][61]
|
8353
8452
|
#
|
8354
8453
|
# HUMAN\_ANSWERED\_CALLS
|
8355
8454
|
#
|
8356
|
-
# : This metric is available only for
|
8357
|
-
#
|
8358
|
-
# enabled.
|
8455
|
+
# : This metric is available only for outbound campaigns. Dispositions
|
8456
|
+
# for the agent assisted voice and automated voice delivery modes are
|
8457
|
+
# only available with answering machine detection enabled.
|
8359
8458
|
#
|
8360
8459
|
# Unit: Count
|
8361
8460
|
#
|
8362
|
-
# Valid groupings and filters:
|
8461
|
+
# Valid groupings and filters: Agent, Campaign
|
8363
8462
|
#
|
8364
|
-
# UI name: [Human answered][
|
8463
|
+
# UI name: [Human answered][62]
|
8365
8464
|
#
|
8366
8465
|
# MAX\_FLOW\_TIME
|
8367
8466
|
#
|
@@ -8373,7 +8472,7 @@ module Aws::Connect
|
|
8373
8472
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8374
8473
|
# published timestamp
|
8375
8474
|
#
|
8376
|
-
# UI name: [Maximum flow time][
|
8475
|
+
# UI name: [Maximum flow time][63]
|
8377
8476
|
#
|
8378
8477
|
# MAX\_QUEUED\_TIME
|
8379
8478
|
#
|
@@ -8383,7 +8482,7 @@ module Aws::Connect
|
|
8383
8482
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8384
8483
|
# Connect
|
8385
8484
|
#
|
8386
|
-
# UI name: [Maximum queued time][
|
8485
|
+
# UI name: [Maximum queued time][64]
|
8387
8486
|
#
|
8388
8487
|
# MIN\_FLOW\_TIME
|
8389
8488
|
#
|
@@ -8395,7 +8494,7 @@ module Aws::Connect
|
|
8395
8494
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8396
8495
|
# published timestamp
|
8397
8496
|
#
|
8398
|
-
# UI name: [Minimum flow time][
|
8497
|
+
# UI name: [Minimum flow time][65]
|
8399
8498
|
#
|
8400
8499
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
8401
8500
|
#
|
@@ -8405,7 +8504,7 @@ module Aws::Connect
|
|
8405
8504
|
#
|
8406
8505
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8407
8506
|
#
|
8408
|
-
# UI name: [Cases resolved on first contact][
|
8507
|
+
# UI name: [Cases resolved on first contact][66]
|
8409
8508
|
#
|
8410
8509
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
8411
8510
|
#
|
@@ -8437,7 +8536,7 @@ module Aws::Connect
|
|
8437
8536
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8438
8537
|
# published timestamp
|
8439
8538
|
#
|
8440
|
-
# UI name: [Flows outcome percentage][
|
8539
|
+
# UI name: [Flows outcome percentage][67].
|
8441
8540
|
#
|
8442
8541
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
8443
8542
|
#
|
@@ -8454,7 +8553,7 @@ module Aws::Connect
|
|
8454
8553
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8455
8554
|
# Connect
|
8456
8555
|
#
|
8457
|
-
# UI name: [Non-talk time percent][
|
8556
|
+
# UI name: [Non-talk time percent][68]
|
8458
8557
|
#
|
8459
8558
|
# PERCENT\_TALK\_TIME
|
8460
8559
|
#
|
@@ -8467,7 +8566,7 @@ module Aws::Connect
|
|
8467
8566
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8468
8567
|
# Connect
|
8469
8568
|
#
|
8470
|
-
# UI name: [Talk time percent][
|
8569
|
+
# UI name: [Talk time percent][69]
|
8471
8570
|
#
|
8472
8571
|
# PERCENT\_TALK\_TIME\_AGENT
|
8473
8572
|
#
|
@@ -8480,7 +8579,7 @@ module Aws::Connect
|
|
8480
8579
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8481
8580
|
# Connect
|
8482
8581
|
#
|
8483
|
-
# UI name: [Agent talk time percent][
|
8582
|
+
# UI name: [Agent talk time percent][70]
|
8484
8583
|
#
|
8485
8584
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
8486
8585
|
#
|
@@ -8493,7 +8592,7 @@ module Aws::Connect
|
|
8493
8592
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8494
8593
|
# Connect
|
8495
8594
|
#
|
8496
|
-
# UI name: [Customer talk time percent][
|
8595
|
+
# UI name: [Customer talk time percent][71]
|
8497
8596
|
#
|
8498
8597
|
# REOPENED\_CASE\_ACTIONS
|
8499
8598
|
#
|
@@ -8503,7 +8602,7 @@ module Aws::Connect
|
|
8503
8602
|
#
|
8504
8603
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8505
8604
|
#
|
8506
|
-
# UI name: [Cases reopened][
|
8605
|
+
# UI name: [Cases reopened][72]
|
8507
8606
|
#
|
8508
8607
|
# RESOLVED\_CASE\_ACTIONS
|
8509
8608
|
#
|
@@ -8513,7 +8612,7 @@ module Aws::Connect
|
|
8513
8612
|
#
|
8514
8613
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8515
8614
|
#
|
8516
|
-
# UI name: [Cases resolved][
|
8615
|
+
# UI name: [Cases resolved][73]
|
8517
8616
|
#
|
8518
8617
|
# SERVICE\_LEVEL
|
8519
8618
|
#
|
@@ -8528,7 +8627,7 @@ module Aws::Connect
|
|
8528
8627
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8529
8628
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8530
8629
|
#
|
8531
|
-
# UI name: [Service level X][
|
8630
|
+
# UI name: [Service level X][74]
|
8532
8631
|
#
|
8533
8632
|
# STEP\_CONTACTS\_QUEUED
|
8534
8633
|
#
|
@@ -8546,7 +8645,7 @@ module Aws::Connect
|
|
8546
8645
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8547
8646
|
# Agent Hierarchy, Q in Connect
|
8548
8647
|
#
|
8549
|
-
# UI name: [After contact work time][
|
8648
|
+
# UI name: [After contact work time][75]
|
8550
8649
|
#
|
8551
8650
|
# SUM\_CONNECTING\_TIME\_AGENT
|
8552
8651
|
#
|
@@ -8559,7 +8658,7 @@ module Aws::Connect
|
|
8559
8658
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8560
8659
|
# Agent Hierarchy
|
8561
8660
|
#
|
8562
|
-
# UI name: [Agent API connecting time][
|
8661
|
+
# UI name: [Agent API connecting time][76]
|
8563
8662
|
#
|
8564
8663
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for this
|
8565
8664
|
# metric.
|
@@ -8581,7 +8680,7 @@ module Aws::Connect
|
|
8581
8680
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8582
8681
|
# RoutingStepExpression, Q in Connect
|
8583
8682
|
#
|
8584
|
-
# UI name: [Contact abandoned][
|
8683
|
+
# UI name: [Contact abandoned][77]
|
8585
8684
|
#
|
8586
8685
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
8587
8686
|
#
|
@@ -8594,7 +8693,7 @@ module Aws::Connect
|
|
8594
8693
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8595
8694
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8596
8695
|
#
|
8597
|
-
# UI name: [Contacts abandoned in X seconds][
|
8696
|
+
# UI name: [Contacts abandoned in X seconds][78]
|
8598
8697
|
#
|
8599
8698
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
8600
8699
|
#
|
@@ -8607,7 +8706,7 @@ module Aws::Connect
|
|
8607
8706
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8608
8707
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8609
8708
|
#
|
8610
|
-
# UI name: [Contacts answered in X seconds][
|
8709
|
+
# UI name: [Contacts answered in X seconds][79]
|
8611
8710
|
#
|
8612
8711
|
# SUM\_CONTACT\_FLOW\_TIME
|
8613
8712
|
#
|
@@ -8616,7 +8715,7 @@ module Aws::Connect
|
|
8616
8715
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8617
8716
|
# Agent Hierarchy, Q in Connect
|
8618
8717
|
#
|
8619
|
-
# UI name: [Contact flow time][
|
8718
|
+
# UI name: [Contact flow time][80]
|
8620
8719
|
#
|
8621
8720
|
# SUM\_CONTACT\_TIME\_AGENT
|
8622
8721
|
#
|
@@ -8624,7 +8723,7 @@ module Aws::Connect
|
|
8624
8723
|
#
|
8625
8724
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
8626
8725
|
#
|
8627
|
-
# UI name: [Agent on contact time][
|
8726
|
+
# UI name: [Agent on contact time][81]
|
8628
8727
|
#
|
8629
8728
|
# SUM\_CONTACTS\_DISCONNECTED
|
8630
8729
|
#
|
@@ -8636,7 +8735,7 @@ module Aws::Connect
|
|
8636
8735
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8637
8736
|
# Connect
|
8638
8737
|
#
|
8639
|
-
# UI name: [Contact disconnected][
|
8738
|
+
# UI name: [Contact disconnected][82]
|
8640
8739
|
#
|
8641
8740
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
8642
8741
|
#
|
@@ -8644,7 +8743,7 @@ module Aws::Connect
|
|
8644
8743
|
#
|
8645
8744
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
8646
8745
|
#
|
8647
|
-
# UI name: [Error status time][
|
8746
|
+
# UI name: [Error status time][83]
|
8648
8747
|
#
|
8649
8748
|
# SUM\_HANDLE\_TIME
|
8650
8749
|
#
|
@@ -8653,7 +8752,7 @@ module Aws::Connect
|
|
8653
8752
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8654
8753
|
# Agent Hierarchy, Q in Connect
|
8655
8754
|
#
|
8656
|
-
# UI name: [Contact handle time][
|
8755
|
+
# UI name: [Contact handle time][84]
|
8657
8756
|
#
|
8658
8757
|
# SUM\_HOLD\_TIME
|
8659
8758
|
#
|
@@ -8662,7 +8761,7 @@ module Aws::Connect
|
|
8662
8761
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8663
8762
|
# Agent Hierarchy, Q in Connect
|
8664
8763
|
#
|
8665
|
-
# UI name: [Customer hold time][
|
8764
|
+
# UI name: [Customer hold time][85]
|
8666
8765
|
#
|
8667
8766
|
# SUM\_IDLE\_TIME\_AGENT
|
8668
8767
|
#
|
@@ -8670,7 +8769,7 @@ module Aws::Connect
|
|
8670
8769
|
#
|
8671
8770
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
8672
8771
|
#
|
8673
|
-
# UI name: [Agent idle time][
|
8772
|
+
# UI name: [Agent idle time][86]
|
8674
8773
|
#
|
8675
8774
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
8676
8775
|
#
|
@@ -8679,7 +8778,7 @@ module Aws::Connect
|
|
8679
8778
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8680
8779
|
# Agent Hierarchy, Q in Connect
|
8681
8780
|
#
|
8682
|
-
# UI name: [Agent interaction and hold time][
|
8781
|
+
# UI name: [Agent interaction and hold time][87]
|
8683
8782
|
#
|
8684
8783
|
# SUM\_INTERACTION\_TIME
|
8685
8784
|
#
|
@@ -8688,7 +8787,7 @@ module Aws::Connect
|
|
8688
8787
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8689
8788
|
# Agent Hierarchy
|
8690
8789
|
#
|
8691
|
-
# UI name: [Agent interaction time][
|
8790
|
+
# UI name: [Agent interaction time][88]
|
8692
8791
|
#
|
8693
8792
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
8694
8793
|
#
|
@@ -8696,7 +8795,7 @@ module Aws::Connect
|
|
8696
8795
|
#
|
8697
8796
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
8698
8797
|
#
|
8699
|
-
# UI name: [Non-Productive Time][
|
8798
|
+
# UI name: [Non-Productive Time][89]
|
8700
8799
|
#
|
8701
8800
|
# SUM\_ONLINE\_TIME\_AGENT
|
8702
8801
|
#
|
@@ -8704,7 +8803,7 @@ module Aws::Connect
|
|
8704
8803
|
#
|
8705
8804
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
8706
8805
|
#
|
8707
|
-
# UI name: [Online time][
|
8806
|
+
# UI name: [Online time][90]
|
8708
8807
|
#
|
8709
8808
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
8710
8809
|
#
|
@@ -8713,7 +8812,7 @@ module Aws::Connect
|
|
8713
8812
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8714
8813
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
8715
8814
|
#
|
8716
|
-
# UI name: [Callback attempts][
|
8815
|
+
# UI name: [Callback attempts][91]
|
8717
8816
|
#
|
8718
8817
|
#
|
8719
8818
|
#
|
@@ -8757,55 +8856,57 @@ module Aws::Connect
|
|
8757
8856
|
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-wait-time-historical
|
8758
8857
|
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-historical
|
8759
8858
|
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-rate-historical
|
8760
|
-
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8761
|
-
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8762
|
-
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8763
|
-
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
8764
|
-
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
8765
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
8766
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
8767
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
8768
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
8769
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
8770
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
8771
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
8772
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
8773
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
8774
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8775
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8776
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8777
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8778
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8779
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8780
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8781
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8782
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8783
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8784
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8785
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8786
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8787
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8788
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8789
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8790
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8791
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8792
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8793
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8794
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8795
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8796
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
8797
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8798
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8799
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-
|
8800
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8801
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-
|
8802
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8803
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8804
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8805
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-
|
8806
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8807
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8808
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
8859
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-interactions-historical
|
8860
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-send-attempts-historical
|
8861
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-created-historical
|
8862
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-created-historical
|
8863
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#api-contacts-handled-historical
|
8864
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical
|
8865
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-agent-disconnect-historical
|
8866
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical
|
8867
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-external-historical
|
8868
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical
|
8869
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical
|
8870
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical
|
8871
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-removed-historical
|
8872
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical
|
8873
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical
|
8874
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical
|
8875
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#current-cases-historical
|
8876
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempts-historical
|
8877
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempt-disposition-rate-historical
|
8878
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical
|
8879
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-started-historical
|
8880
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#human-answered-historical
|
8881
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-flow-time-historical
|
8882
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical
|
8883
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#minimum-flow-time-historical
|
8884
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-first-contact-historical
|
8885
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-percentage-historical
|
8886
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical
|
8887
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical
|
8888
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical
|
8889
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical
|
8890
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-reopened-historical
|
8891
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historical
|
8892
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical
|
8893
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical
|
8894
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time
|
8895
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical
|
8896
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical
|
8897
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical
|
8898
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical
|
8899
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical
|
8900
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical
|
8901
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical
|
8902
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical
|
8903
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical
|
8904
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-idle-time-historica
|
8905
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical
|
8906
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
|
8907
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#npt-historical
|
8908
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#online-time-historical
|
8909
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical
|
8809
8910
|
#
|
8810
8911
|
# @option params [String] :next_token
|
8811
8912
|
# The token for the next set of results. Use the value returned in the
|
@@ -9107,8 +9208,8 @@ module Aws::Connect
|
|
9107
9208
|
#
|
9108
9209
|
# @option params [Hash<String,String>] :tags
|
9109
9210
|
# The tags used to organize, track, or control access for this resource.
|
9110
|
-
# For example,
|
9111
|
-
#
|
9211
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
9212
|
+
# }.
|
9112
9213
|
#
|
9113
9214
|
# @option params [String] :client_token
|
9114
9215
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -9554,6 +9655,57 @@ module Aws::Connect
|
|
9554
9655
|
req.send_request(options)
|
9555
9656
|
end
|
9556
9657
|
|
9658
|
+
# Returns all the available versions for the specified Amazon Connect
|
9659
|
+
# instance and flow identifier.
|
9660
|
+
#
|
9661
|
+
# @option params [required, String] :instance_id
|
9662
|
+
# The identifier of the Amazon Connect instance.
|
9663
|
+
#
|
9664
|
+
# @option params [required, String] :contact_flow_id
|
9665
|
+
# The identifier of the flow.
|
9666
|
+
#
|
9667
|
+
# @option params [String] :next_token
|
9668
|
+
# The token for the next set of results. Use the value returned in the
|
9669
|
+
# previous response in the next request to retrieve the next set of
|
9670
|
+
# results.
|
9671
|
+
#
|
9672
|
+
# @option params [Integer] :max_results
|
9673
|
+
# The maximum number of results to return per page. The default
|
9674
|
+
# MaxResult size is 100.
|
9675
|
+
#
|
9676
|
+
# @return [Types::ListContactFlowVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9677
|
+
#
|
9678
|
+
# * {Types::ListContactFlowVersionsResponse#contact_flow_version_summary_list #contact_flow_version_summary_list} => Array<Types::ContactFlowVersionSummary>
|
9679
|
+
# * {Types::ListContactFlowVersionsResponse#next_token #next_token} => String
|
9680
|
+
#
|
9681
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9682
|
+
#
|
9683
|
+
# @example Request syntax with placeholder values
|
9684
|
+
#
|
9685
|
+
# resp = client.list_contact_flow_versions({
|
9686
|
+
# instance_id: "InstanceId", # required
|
9687
|
+
# contact_flow_id: "ARN", # required
|
9688
|
+
# next_token: "NextToken",
|
9689
|
+
# max_results: 1,
|
9690
|
+
# })
|
9691
|
+
#
|
9692
|
+
# @example Response structure
|
9693
|
+
#
|
9694
|
+
# resp.contact_flow_version_summary_list #=> Array
|
9695
|
+
# resp.contact_flow_version_summary_list[0].arn #=> String
|
9696
|
+
# resp.contact_flow_version_summary_list[0].version_description #=> String
|
9697
|
+
# resp.contact_flow_version_summary_list[0].version #=> Integer
|
9698
|
+
# resp.next_token #=> String
|
9699
|
+
#
|
9700
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowVersions AWS API Documentation
|
9701
|
+
#
|
9702
|
+
# @overload list_contact_flow_versions(params = {})
|
9703
|
+
# @param [Hash] params ({})
|
9704
|
+
def list_contact_flow_versions(params = {}, options = {})
|
9705
|
+
req = build_request(:list_contact_flow_versions, params)
|
9706
|
+
req.send_request(options)
|
9707
|
+
end
|
9708
|
+
|
9557
9709
|
# Provides information about the flows for the specified Amazon Connect
|
9558
9710
|
# instance.
|
9559
9711
|
#
|
@@ -10202,7 +10354,7 @@ module Aws::Connect
|
|
10202
10354
|
#
|
10203
10355
|
# resp = client.list_integration_associations({
|
10204
10356
|
# instance_id: "InstanceId", # required
|
10205
|
-
# integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, CASES_DOMAIN, APPLICATION, FILE_SCANNER
|
10357
|
+
# integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER
|
10206
10358
|
# next_token: "NextToken",
|
10207
10359
|
# max_results: 1,
|
10208
10360
|
# integration_arn: "ARN",
|
@@ -10214,7 +10366,7 @@ module Aws::Connect
|
|
10214
10366
|
# resp.integration_association_summary_list[0].integration_association_id #=> String
|
10215
10367
|
# resp.integration_association_summary_list[0].integration_association_arn #=> String
|
10216
10368
|
# resp.integration_association_summary_list[0].instance_id #=> String
|
10217
|
-
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "WISDOM_QUICK_RESPONSES", "CASES_DOMAIN", "APPLICATION", "FILE_SCANNER"
|
10369
|
+
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "WISDOM_QUICK_RESPONSES", "Q_MESSAGE_TEMPLATES", "CASES_DOMAIN", "APPLICATION", "FILE_SCANNER"
|
10218
10370
|
# resp.integration_association_summary_list[0].integration_arn #=> String
|
10219
10371
|
# resp.integration_association_summary_list[0].source_application_url #=> String
|
10220
10372
|
# resp.integration_association_summary_list[0].source_application_name #=> String
|
@@ -12660,6 +12812,12 @@ module Aws::Connect
|
|
12660
12812
|
# resp.contact_flows[0].content #=> String
|
12661
12813
|
# resp.contact_flows[0].tags #=> Hash
|
12662
12814
|
# resp.contact_flows[0].tags["TagKey"] #=> String
|
12815
|
+
# resp.contact_flows[0].is_default #=> Boolean
|
12816
|
+
# resp.contact_flows[0].flow_content_sha_256 #=> String
|
12817
|
+
# resp.contact_flows[0].version #=> Integer
|
12818
|
+
# resp.contact_flows[0].version_description #=> String
|
12819
|
+
# resp.contact_flows[0].last_modified_time #=> Time
|
12820
|
+
# resp.contact_flows[0].last_modified_region #=> String
|
12663
12821
|
# resp.next_token #=> String
|
12664
12822
|
# resp.approximate_total_count #=> Integer
|
12665
12823
|
#
|
@@ -14153,7 +14311,7 @@ module Aws::Connect
|
|
14153
14311
|
#
|
14154
14312
|
# @option params [Hash<String,String>] :tags
|
14155
14313
|
# The tags used to organize, track, or control access for this resource.
|
14156
|
-
# For example,
|
14314
|
+
# For example, `{ "Tags": {"key1":"value1", "key2":"value2"} }`.
|
14157
14315
|
#
|
14158
14316
|
# @return [Types::StartAttachedFileUploadResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14159
14317
|
#
|
@@ -14350,8 +14508,8 @@ module Aws::Connect
|
|
14350
14508
|
# <note markdown="1"> The types `application/vnd.amazonaws.connect.message.interactive` and
|
14351
14509
|
# `application/vnd.amazonaws.connect.message.interactive.response` must
|
14352
14510
|
# be present in the SupportedMessagingContentTypes field of this API in
|
14353
|
-
# order to set `SegmentAttributes` as
|
14354
|
-
#
|
14511
|
+
# order to set `SegmentAttributes` as \{` "connect:Subtype":
|
14512
|
+
# {"valueString" : "connect:Guide" }}`.
|
14355
14513
|
#
|
14356
14514
|
# </note>
|
14357
14515
|
#
|
@@ -15018,7 +15176,6 @@ module Aws::Connect
|
|
15018
15176
|
# * There can be a maximum of 12 linked task contacts in a chain. That
|
15019
15177
|
# is, 12 task contacts can be created that share the same
|
15020
15178
|
# `PreviousContactId`.
|
15021
|
-
#
|
15022
15179
|
# * `RelatedContactId`
|
15023
15180
|
#
|
15024
15181
|
# * Copies contact attributes from the related task contact to the new
|
@@ -15461,7 +15618,7 @@ module Aws::Connect
|
|
15461
15618
|
# Answers included in the request are merged with existing answers for
|
15462
15619
|
# the given evaluation. If no answers or notes are passed, the
|
15463
15620
|
# evaluation is submitted with the existing answers and notes. You can
|
15464
|
-
# delete an answer or note by passing an empty object (
|
15621
|
+
# delete an answer or note by passing an empty object (`{}`) to the
|
15465
15622
|
# question identifier.
|
15466
15623
|
#
|
15467
15624
|
# If a contact evaluation is already in submitted state, this operation
|
@@ -15590,8 +15747,8 @@ module Aws::Connect
|
|
15590
15747
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
15591
15748
|
#
|
15592
15749
|
# @option params [required, Hash<String,String>] :tags
|
15593
|
-
# The tags to be assigned to the contact resource. For example,
|
15594
|
-
# "Tags":
|
15750
|
+
# The tags to be assigned to the contact resource. For example, \{
|
15751
|
+
# "Tags": \{"key1":"value1", "key2":"value2"} }.
|
15595
15752
|
#
|
15596
15753
|
# <note markdown="1"> Authorization is not supported by this tag.
|
15597
15754
|
#
|
@@ -15638,8 +15795,8 @@ module Aws::Connect
|
|
15638
15795
|
#
|
15639
15796
|
# @option params [required, Hash<String,String>] :tags
|
15640
15797
|
# The tags used to organize, track, or control access for this resource.
|
15641
|
-
# For example,
|
15642
|
-
#
|
15798
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
15799
|
+
# }.
|
15643
15800
|
#
|
15644
15801
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
15645
15802
|
#
|
@@ -16088,7 +16245,7 @@ module Aws::Connect
|
|
16088
16245
|
# Connect instance. A contact evaluation must be in draft state. Answers
|
16089
16246
|
# included in the request are merged with existing answers for the given
|
16090
16247
|
# evaluation. An answer or note can be deleted by passing an empty
|
16091
|
-
# object (
|
16248
|
+
# object (`{}`) to the question identifier.
|
16092
16249
|
#
|
16093
16250
|
# @option params [required, String] :instance_id
|
16094
16251
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -16153,9 +16310,9 @@ module Aws::Connect
|
|
16153
16310
|
# language][1].
|
16154
16311
|
#
|
16155
16312
|
# Use the `$SAVED` alias in the request to describe the `SAVED` content
|
16156
|
-
# of a Flow. For example, `arn:aws:.../contact-flow
|
16157
|
-
#
|
16158
|
-
#
|
16313
|
+
# of a Flow. For example, `arn:aws:.../contact-flow/{id}:$SAVED`. Once a
|
16314
|
+
# contact flow is published, `$SAVED` needs to be supplied to view saved
|
16315
|
+
# content that has not been published.
|
16159
16316
|
#
|
16160
16317
|
#
|
16161
16318
|
#
|
@@ -16243,9 +16400,9 @@ module Aws::Connect
|
|
16243
16400
|
# instance.
|
16244
16401
|
#
|
16245
16402
|
# Use the `$SAVED` alias in the request to describe the `SAVED` content
|
16246
|
-
# of a Flow. For example, `arn:aws:.../contact-flow
|
16247
|
-
#
|
16248
|
-
#
|
16403
|
+
# of a Flow. For example, `arn:aws:.../contact-flow/{id}:$SAVED`. Once a
|
16404
|
+
# contact flow is published, `$SAVED` needs to be supplied to view saved
|
16405
|
+
# content that has not been published.
|
16249
16406
|
#
|
16250
16407
|
# @option params [required, String] :instance_id
|
16251
16408
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -18525,7 +18682,7 @@ module Aws::Connect
|
|
18525
18682
|
tracer: tracer
|
18526
18683
|
)
|
18527
18684
|
context[:gem_name] = 'aws-sdk-connect'
|
18528
|
-
context[:gem_version] = '1.
|
18685
|
+
context[:gem_version] = '1.185.0'
|
18529
18686
|
Seahorse::Client::Request.new(handlers, context)
|
18530
18687
|
end
|
18531
18688
|
|