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
@@ -309,8 +309,8 @@ module Aws::Connect
|
|
309
309
|
#
|
310
310
|
# @!attribute [rw] tags
|
311
311
|
# The tags used to organize, track, or control access for this
|
312
|
-
# resource. For example,
|
313
|
-
# "key2":"value2"
|
312
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
313
|
+
# "key2":"value2"} }.
|
314
314
|
# @return [Hash<String,String>]
|
315
315
|
#
|
316
316
|
# @!attribute [rw] last_modified_time
|
@@ -1098,8 +1098,8 @@ module Aws::Connect
|
|
1098
1098
|
#
|
1099
1099
|
# @!attribute [rw] tags
|
1100
1100
|
# The tags used to organize, track, or control access for this
|
1101
|
-
# resource. For example,
|
1102
|
-
#
|
1101
|
+
# resource. For example, `{ "Tags": {"key1":"value1", "key2":"value2"}
|
1102
|
+
# }`.
|
1103
1103
|
# @return [Hash<String,String>]
|
1104
1104
|
#
|
1105
1105
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AttachedFile AWS API Documentation
|
@@ -1893,8 +1893,8 @@ module Aws::Connect
|
|
1893
1893
|
#
|
1894
1894
|
# @!attribute [rw] tags
|
1895
1895
|
# The tags used to organize, track, or control access for this
|
1896
|
-
# resource. For example,
|
1897
|
-
# "key2":"value2"
|
1896
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
1897
|
+
# "key2":"value2"} }.
|
1898
1898
|
# @return [Hash<String,String>]
|
1899
1899
|
#
|
1900
1900
|
# @!attribute [rw] client_token
|
@@ -1904,7 +1904,7 @@ module Aws::Connect
|
|
1904
1904
|
# see [Making retries safe with idempotent APIs][1].
|
1905
1905
|
#
|
1906
1906
|
# Pattern:
|
1907
|
-
# `^[a-f0-9]
|
1907
|
+
# `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
|
1908
1908
|
#
|
1909
1909
|
# **A suitable default value is auto-generated.** You should normally
|
1910
1910
|
# not need to pass this option.
|
@@ -1990,8 +1990,8 @@ module Aws::Connect
|
|
1990
1990
|
#
|
1991
1991
|
# @!attribute [rw] tags
|
1992
1992
|
# The tags used to organize, track, or control access for this
|
1993
|
-
# resource. For example,
|
1994
|
-
# "key2":"value2"
|
1993
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
1994
|
+
# "key2":"value2"} }.
|
1995
1995
|
# @return [Hash<String,String>]
|
1996
1996
|
#
|
1997
1997
|
# @!attribute [rw] phone_number_status
|
@@ -2500,10 +2500,35 @@ module Aws::Connect
|
|
2500
2500
|
#
|
2501
2501
|
# @!attribute [rw] tags
|
2502
2502
|
# The tags used to organize, track, or control access for this
|
2503
|
-
# resource. For example,
|
2504
|
-
# "key2":"value2"
|
2503
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
2504
|
+
# "key2":"value2"} }.
|
2505
2505
|
# @return [Hash<String,String>]
|
2506
2506
|
#
|
2507
|
+
# @!attribute [rw] is_default
|
2508
|
+
# Amazon Connect includes a set of default flows that have already
|
2509
|
+
# been published. It uses them to power your contact center.
|
2510
|
+
# @return [Boolean]
|
2511
|
+
#
|
2512
|
+
# @!attribute [rw] flow_content_sha_256
|
2513
|
+
# Indicates the checksum value of the flow content.
|
2514
|
+
# @return [String]
|
2515
|
+
#
|
2516
|
+
# @!attribute [rw] version
|
2517
|
+
# The identifier of the flow version.
|
2518
|
+
# @return [Integer]
|
2519
|
+
#
|
2520
|
+
# @!attribute [rw] version_description
|
2521
|
+
# The description of the flow version.
|
2522
|
+
# @return [String]
|
2523
|
+
#
|
2524
|
+
# @!attribute [rw] last_modified_time
|
2525
|
+
# The time at which the contact flow was last modified.
|
2526
|
+
# @return [Time]
|
2527
|
+
#
|
2528
|
+
# @!attribute [rw] last_modified_region
|
2529
|
+
# The region in which the contact flow was last modified
|
2530
|
+
# @return [String]
|
2531
|
+
#
|
2507
2532
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlow AWS API Documentation
|
2508
2533
|
#
|
2509
2534
|
class ContactFlow < Struct.new(
|
@@ -2515,7 +2540,13 @@ module Aws::Connect
|
|
2515
2540
|
:status,
|
2516
2541
|
:description,
|
2517
2542
|
:content,
|
2518
|
-
:tags
|
2543
|
+
:tags,
|
2544
|
+
:is_default,
|
2545
|
+
:flow_content_sha_256,
|
2546
|
+
:version,
|
2547
|
+
:version_description,
|
2548
|
+
:last_modified_time,
|
2549
|
+
:last_modified_region)
|
2519
2550
|
SENSITIVE = []
|
2520
2551
|
include Aws::Structure
|
2521
2552
|
end
|
@@ -2557,8 +2588,8 @@ module Aws::Connect
|
|
2557
2588
|
#
|
2558
2589
|
# @!attribute [rw] tags
|
2559
2590
|
# The tags used to organize, track, or control access for this
|
2560
|
-
# resource. For example,
|
2561
|
-
# "key2":"value2"
|
2591
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
2592
|
+
# "key2":"value2"} }.
|
2562
2593
|
# @return [Hash<String,String>]
|
2563
2594
|
#
|
2564
2595
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowModule AWS API Documentation
|
@@ -2777,6 +2808,30 @@ module Aws::Connect
|
|
2777
2808
|
include Aws::Structure
|
2778
2809
|
end
|
2779
2810
|
|
2811
|
+
# A summary of a contact flow version's metadata.
|
2812
|
+
#
|
2813
|
+
# @!attribute [rw] arn
|
2814
|
+
# The Amazon Resource Name (ARN) of the view version.
|
2815
|
+
# @return [String]
|
2816
|
+
#
|
2817
|
+
# @!attribute [rw] version_description
|
2818
|
+
# The description of the flow version.
|
2819
|
+
# @return [String]
|
2820
|
+
#
|
2821
|
+
# @!attribute [rw] version
|
2822
|
+
# The identifier of the flow version.
|
2823
|
+
# @return [Integer]
|
2824
|
+
#
|
2825
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowVersionSummary AWS API Documentation
|
2826
|
+
#
|
2827
|
+
class ContactFlowVersionSummary < Struct.new(
|
2828
|
+
:arn,
|
2829
|
+
:version_description,
|
2830
|
+
:version)
|
2831
|
+
SENSITIVE = []
|
2832
|
+
include Aws::Structure
|
2833
|
+
end
|
2834
|
+
|
2780
2835
|
# The contact with the specified ID is not active or does not exist.
|
2781
2836
|
# Applies to Voice calls only, not to Chat or Task contacts.
|
2782
2837
|
#
|
@@ -3050,8 +3105,8 @@ module Aws::Connect
|
|
3050
3105
|
#
|
3051
3106
|
# @!attribute [rw] tags
|
3052
3107
|
# The tags used to organize, track, or control access for this
|
3053
|
-
# resource. For example,
|
3054
|
-
# "key2":"value2"
|
3108
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
3109
|
+
# "key2":"value2"} }.
|
3055
3110
|
# @return [Hash<String,String>]
|
3056
3111
|
#
|
3057
3112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAgentStatusRequest AWS API Documentation
|
@@ -3131,8 +3186,8 @@ module Aws::Connect
|
|
3131
3186
|
#
|
3132
3187
|
# @!attribute [rw] tags
|
3133
3188
|
# The tags used to organize, track, or control access for this
|
3134
|
-
# resource. For example,
|
3135
|
-
# "key2":"value2"
|
3189
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
3190
|
+
# "key2":"value2"} }.
|
3136
3191
|
# @return [Hash<String,String>]
|
3137
3192
|
#
|
3138
3193
|
# @!attribute [rw] client_token
|
@@ -3220,8 +3275,8 @@ module Aws::Connect
|
|
3220
3275
|
#
|
3221
3276
|
# @!attribute [rw] tags
|
3222
3277
|
# The tags used to organize, track, or control access for this
|
3223
|
-
# resource. For example,
|
3224
|
-
# "key2":"value2"
|
3278
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
3279
|
+
# "key2":"value2"} }.
|
3225
3280
|
# @return [Hash<String,String>]
|
3226
3281
|
#
|
3227
3282
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowRequest AWS API Documentation
|
@@ -3246,11 +3301,72 @@ module Aws::Connect
|
|
3246
3301
|
# The Amazon Resource Name (ARN) of the flow.
|
3247
3302
|
# @return [String]
|
3248
3303
|
#
|
3304
|
+
# @!attribute [rw] flow_content_sha_256
|
3305
|
+
# Indicates the checksum value of the flow content.
|
3306
|
+
# @return [String]
|
3307
|
+
#
|
3249
3308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowResponse AWS API Documentation
|
3250
3309
|
#
|
3251
3310
|
class CreateContactFlowResponse < Struct.new(
|
3252
3311
|
:contact_flow_id,
|
3253
|
-
:contact_flow_arn
|
3312
|
+
:contact_flow_arn,
|
3313
|
+
:flow_content_sha_256)
|
3314
|
+
SENSITIVE = []
|
3315
|
+
include Aws::Structure
|
3316
|
+
end
|
3317
|
+
|
3318
|
+
# @!attribute [rw] instance_id
|
3319
|
+
# The identifier of the Amazon Connect instance.
|
3320
|
+
# @return [String]
|
3321
|
+
#
|
3322
|
+
# @!attribute [rw] description
|
3323
|
+
# The description of the flow version.
|
3324
|
+
# @return [String]
|
3325
|
+
#
|
3326
|
+
# @!attribute [rw] contact_flow_id
|
3327
|
+
# The identifier of the flow.
|
3328
|
+
# @return [String]
|
3329
|
+
#
|
3330
|
+
# @!attribute [rw] flow_content_sha_256
|
3331
|
+
# Indicates the checksum value of the flow content.
|
3332
|
+
# @return [String]
|
3333
|
+
#
|
3334
|
+
# @!attribute [rw] last_modified_time
|
3335
|
+
# The Amazon Web Services Region where this resource was last
|
3336
|
+
# modified.
|
3337
|
+
# @return [Time]
|
3338
|
+
#
|
3339
|
+
# @!attribute [rw] last_modified_region
|
3340
|
+
# The Amazon Web Services Region where this resource was last
|
3341
|
+
# modified.
|
3342
|
+
# @return [String]
|
3343
|
+
#
|
3344
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowVersionRequest AWS API Documentation
|
3345
|
+
#
|
3346
|
+
class CreateContactFlowVersionRequest < Struct.new(
|
3347
|
+
:instance_id,
|
3348
|
+
:description,
|
3349
|
+
:contact_flow_id,
|
3350
|
+
:flow_content_sha_256,
|
3351
|
+
:last_modified_time,
|
3352
|
+
:last_modified_region)
|
3353
|
+
SENSITIVE = []
|
3354
|
+
include Aws::Structure
|
3355
|
+
end
|
3356
|
+
|
3357
|
+
# @!attribute [rw] contact_flow_arn
|
3358
|
+
# The Amazon Resource Name (ARN) of the flow.
|
3359
|
+
# @return [String]
|
3360
|
+
#
|
3361
|
+
# @!attribute [rw] version
|
3362
|
+
# The identifier of the flow version.
|
3363
|
+
# @return [Integer]
|
3364
|
+
#
|
3365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowVersionResponse AWS API Documentation
|
3366
|
+
#
|
3367
|
+
class CreateContactFlowVersionResponse < Struct.new(
|
3368
|
+
:contact_flow_arn,
|
3369
|
+
:version)
|
3254
3370
|
SENSITIVE = []
|
3255
3371
|
include Aws::Structure
|
3256
3372
|
end
|
@@ -3354,8 +3470,8 @@ module Aws::Connect
|
|
3354
3470
|
#
|
3355
3471
|
# @!attribute [rw] tags
|
3356
3472
|
# The tags used to organize, track, or control access for this
|
3357
|
-
# resource. For example,
|
3358
|
-
# "key2":"value2"
|
3473
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
3474
|
+
# "key2":"value2"} }.
|
3359
3475
|
# @return [Hash<String,String>]
|
3360
3476
|
#
|
3361
3477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationRequest AWS API Documentation
|
@@ -3414,8 +3530,8 @@ module Aws::Connect
|
|
3414
3530
|
#
|
3415
3531
|
# @!attribute [rw] tags
|
3416
3532
|
# The tags used to organize, track, or control access for this
|
3417
|
-
# resource. For example,
|
3418
|
-
#
|
3533
|
+
# resource. For example, `{ "tags": {"key1":"value1", "key2":"value2"}
|
3534
|
+
# }`.
|
3419
3535
|
# @return [Hash<String,String>]
|
3420
3536
|
#
|
3421
3537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateInstanceRequest AWS API Documentation
|
@@ -3488,8 +3604,8 @@ module Aws::Connect
|
|
3488
3604
|
#
|
3489
3605
|
# @!attribute [rw] tags
|
3490
3606
|
# The tags used to organize, track, or control access for this
|
3491
|
-
# resource. For example,
|
3492
|
-
# "key2":"value2"
|
3607
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
3608
|
+
# "key2":"value2"} }.
|
3493
3609
|
# @return [Hash<String,String>]
|
3494
3610
|
#
|
3495
3611
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateIntegrationAssociationRequest AWS API Documentation
|
@@ -3641,7 +3757,6 @@ module Aws::Connect
|
|
3641
3757
|
# * SourceContactId = "C2"
|
3642
3758
|
#
|
3643
3759
|
# * RehydrationType = "FROM\_SEGMENT"
|
3644
|
-
#
|
3645
3760
|
# * **Expected behavior**
|
3646
3761
|
#
|
3647
3762
|
# * This starts a persistent chat session from the specified past
|
@@ -3651,7 +3766,6 @@ module Aws::Connect
|
|
3651
3766
|
# session.
|
3652
3767
|
#
|
3653
3768
|
# ^
|
3654
|
-
#
|
3655
3769
|
# * **Use Case 2**: The customer wants to continue the past chat
|
3656
3770
|
# session and see the transcript of the entire past engagement,
|
3657
3771
|
# including the post chat survey. For this they will use the
|
@@ -3662,7 +3776,6 @@ module Aws::Connect
|
|
3662
3776
|
# * SourceContactId = "C1"
|
3663
3777
|
#
|
3664
3778
|
# * RehydrationType = "ENTIRE\_PAST\_SESSION"
|
3665
|
-
#
|
3666
3779
|
# * **Expected behavior**
|
3667
3780
|
#
|
3668
3781
|
# * This starts a persistent chat session from the most recently
|
@@ -3765,8 +3878,8 @@ module Aws::Connect
|
|
3765
3878
|
#
|
3766
3879
|
# @!attribute [rw] tags
|
3767
3880
|
# The tags used to organize, track, or control access for this
|
3768
|
-
# resource. For example,
|
3769
|
-
# "key2":"value2"
|
3881
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
3882
|
+
# "key2":"value2"} }.
|
3770
3883
|
# @return [Hash<String,String>]
|
3771
3884
|
#
|
3772
3885
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreatePromptRequest AWS API Documentation
|
@@ -3834,8 +3947,8 @@ module Aws::Connect
|
|
3834
3947
|
#
|
3835
3948
|
# @!attribute [rw] tags
|
3836
3949
|
# The tags used to organize, track, or control access for this
|
3837
|
-
# resource. For example,
|
3838
|
-
# "key2":"value2"
|
3950
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
3951
|
+
# "key2":"value2"} }.
|
3839
3952
|
# @return [Hash<String,String>]
|
3840
3953
|
#
|
3841
3954
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQueueRequest AWS API Documentation
|
@@ -3893,8 +4006,8 @@ module Aws::Connect
|
|
3893
4006
|
#
|
3894
4007
|
# @!attribute [rw] tags
|
3895
4008
|
# The tags used to organize, track, or control access for this
|
3896
|
-
# resource. For example,
|
3897
|
-
# "key2":"value2"
|
4009
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
4010
|
+
# "key2":"value2"} }.
|
3898
4011
|
# @return [Hash<String,String>]
|
3899
4012
|
#
|
3900
4013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQuickConnectRequest AWS API Documentation
|
@@ -3971,8 +4084,8 @@ module Aws::Connect
|
|
3971
4084
|
#
|
3972
4085
|
# @!attribute [rw] tags
|
3973
4086
|
# The tags used to organize, track, or control access for this
|
3974
|
-
# resource. For example,
|
3975
|
-
# "key2":"value2"
|
4087
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
4088
|
+
# "key2":"value2"} }.
|
3976
4089
|
# @return [Hash<String,String>]
|
3977
4090
|
#
|
3978
4091
|
# @!attribute [rw] agent_availability_timer
|
@@ -4115,8 +4228,8 @@ module Aws::Connect
|
|
4115
4228
|
#
|
4116
4229
|
# @!attribute [rw] tags
|
4117
4230
|
# The tags used to organize, track, or control access for this
|
4118
|
-
# resource. For example,
|
4119
|
-
# "key2":"value2"
|
4231
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
4232
|
+
# "key2":"value2"} }.
|
4120
4233
|
# @return [Hash<String,String>]
|
4121
4234
|
#
|
4122
4235
|
# @!attribute [rw] allowed_access_control_tags
|
@@ -4300,8 +4413,8 @@ module Aws::Connect
|
|
4300
4413
|
#
|
4301
4414
|
# @!attribute [rw] tags
|
4302
4415
|
# The tags used to organize, track, or control access for this
|
4303
|
-
# resource. For example,
|
4304
|
-
# "key2":"value2"
|
4416
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
4417
|
+
# "key2":"value2"} }.
|
4305
4418
|
# @return [Hash<String,String>]
|
4306
4419
|
#
|
4307
4420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateTrafficDistributionGroupRequest AWS API Documentation
|
@@ -4355,8 +4468,8 @@ module Aws::Connect
|
|
4355
4468
|
#
|
4356
4469
|
# @!attribute [rw] tags
|
4357
4470
|
# The tags used to organize, track, or control access for this
|
4358
|
-
# resource. For example,
|
4359
|
-
# "key2":"value2"
|
4471
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
4472
|
+
# "key2":"value2"} }.
|
4360
4473
|
# @return [Hash<String,String>]
|
4361
4474
|
#
|
4362
4475
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUseCaseRequest AWS API Documentation
|
@@ -4408,8 +4521,8 @@ module Aws::Connect
|
|
4408
4521
|
#
|
4409
4522
|
# @!attribute [rw] tags
|
4410
4523
|
# The tags used to organize, track, or control access for this
|
4411
|
-
# resource. For example,
|
4412
|
-
# "key2":"value2"
|
4524
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
4525
|
+
# "key2":"value2"} }.
|
4413
4526
|
# @return [Hash<String,String>]
|
4414
4527
|
#
|
4415
4528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUserHierarchyGroupRequest AWS API Documentation
|
@@ -4507,8 +4620,8 @@ module Aws::Connect
|
|
4507
4620
|
#
|
4508
4621
|
# @!attribute [rw] tags
|
4509
4622
|
# The tags used to organize, track, or control access for this
|
4510
|
-
# resource. For example,
|
4511
|
-
# "key2":"value2"
|
4623
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
4624
|
+
# "key2":"value2"} }.
|
4512
4625
|
# @return [Hash<String,String>]
|
4513
4626
|
#
|
4514
4627
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUserRequest AWS API Documentation
|
@@ -4579,8 +4692,8 @@ module Aws::Connect
|
|
4579
4692
|
# @!attribute [rw] tags
|
4580
4693
|
# The tags associated with the view resource (not specific to view
|
4581
4694
|
# version).These tags can be used to organize, track, or control
|
4582
|
-
# access for this resource. For example,
|
4583
|
-
#
|
4695
|
+
# access for this resource. For example, \{ "tags":
|
4696
|
+
# \{"key1":"value1", "key2":"value2"} }.
|
4584
4697
|
# @return [Hash<String,String>]
|
4585
4698
|
#
|
4586
4699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateViewRequest AWS API Documentation
|
@@ -4705,8 +4818,8 @@ module Aws::Connect
|
|
4705
4818
|
#
|
4706
4819
|
# @!attribute [rw] tags
|
4707
4820
|
# The tags used to organize, track, or control access for this
|
4708
|
-
# resource. For example,
|
4709
|
-
# "key2":"value2"
|
4821
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
4822
|
+
# "key2":"value2"} }.
|
4710
4823
|
# @return [Hash<String,String>]
|
4711
4824
|
#
|
4712
4825
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateVocabularyRequest AWS API Documentation
|
@@ -7159,8 +7272,8 @@ module Aws::Connect
|
|
7159
7272
|
#
|
7160
7273
|
# @!attribute [rw] tags
|
7161
7274
|
# The tags used to organize, track, or control access for this
|
7162
|
-
# resource. For example,
|
7163
|
-
# "key2":"value2"
|
7275
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
7276
|
+
# "key2":"value2"} }.
|
7164
7277
|
# @return [Hash<String,String>]
|
7165
7278
|
#
|
7166
7279
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Evaluation AWS API Documentation
|
@@ -7310,8 +7423,8 @@ module Aws::Connect
|
|
7310
7423
|
#
|
7311
7424
|
# @!attribute [rw] tags
|
7312
7425
|
# The tags used to organize, track, or control access for this
|
7313
|
-
# resource. For example,
|
7314
|
-
# "key2":"value2"
|
7426
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
7427
|
+
# "key2":"value2"} }.
|
7315
7428
|
# @return [Hash<String,String>]
|
7316
7429
|
#
|
7317
7430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationForm AWS API Documentation
|
@@ -8295,8 +8408,8 @@ module Aws::Connect
|
|
8295
8408
|
#
|
8296
8409
|
# @!attribute [rw] tags
|
8297
8410
|
# The tags used to organize, track, or control access for this
|
8298
|
-
# resource. For example,
|
8299
|
-
#
|
8411
|
+
# resource. For example, `{ "Tags": {"key1":"value1", "key2":"value2"}
|
8412
|
+
# }`.
|
8300
8413
|
# @return [Hash<String,String>]
|
8301
8414
|
#
|
8302
8415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetAttachedFileResponse AWS API Documentation
|
@@ -8478,8 +8591,8 @@ module Aws::Connect
|
|
8478
8591
|
# returned in MILLISECONDS. For example, if you get a response like
|
8479
8592
|
# this:
|
8480
8593
|
#
|
8481
|
-
#
|
8482
|
-
#
|
8594
|
+
# `{ "Metric": { "Name": "OLDEST_CONTACT_AGE", "Unit": "SECONDS" },
|
8595
|
+
# "Value": 24113.0 `}
|
8483
8596
|
#
|
8484
8597
|
# The actual OLDEST\_CONTACT\_AGE is 24 seconds.
|
8485
8598
|
#
|
@@ -9097,7 +9210,6 @@ module Aws::Connect
|
|
9097
9210
|
#
|
9098
9211
|
# * `TOTAL`: The difference between `StartTime` and `EndTime` must
|
9099
9212
|
# be less than 35 days.
|
9100
|
-
#
|
9101
9213
|
# * `TimeZone`: The timezone applied to requested metrics.
|
9102
9214
|
# @return [Types::IntervalDetails]
|
9103
9215
|
#
|
@@ -9138,7 +9250,8 @@ module Aws::Connect
|
|
9138
9250
|
# `AGENT_HIERARCHY_LEVEL_THREE` \| `AGENT_HIERARCHY_LEVEL_FOUR` \|
|
9139
9251
|
# `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
9140
9252
|
# `ANSWERING_MACHINE_DETECTION_STATUS` \| `CAMPAIGN` \|
|
9141
|
-
# `
|
9253
|
+
# `CAMPAIGN_DELIVERY_EVENT_TYPE` \|`CASE_TEMPLATE_ARN` \|
|
9254
|
+
# `CASE_STATUS` \| `CHANNEL` \|
|
9142
9255
|
# `contact/segmentAttributes/connect:Subtype` \| `DISCONNECT_REASON`
|
9143
9256
|
# \| `FEATURE` \| `FLOW_TYPE` \| `FLOWS_NEXT_RESOURCE_ID` \|
|
9144
9257
|
# `FLOWS_NEXT_RESOURCE_QUEUE_ID` \| `FLOWS_OUTCOME_TYPE` \|
|
@@ -9174,7 +9287,6 @@ module Aws::Connect
|
|
9174
9287
|
#
|
9175
9288
|
# * FALSE includes all contacts that did not have Amazon Q in
|
9176
9289
|
# Connect enabled as part of the flow
|
9177
|
-
#
|
9178
9290
|
# This filter is available only for contact record-driven metrics.
|
9179
9291
|
#
|
9180
9292
|
# [Campaign][2] ARNs are valid `filterValues` for the `CAMPAIGN`
|
@@ -9198,7 +9310,8 @@ module Aws::Connect
|
|
9198
9310
|
# `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
|
9199
9311
|
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
9200
9312
|
# `ANSWERING_MACHINE_DETECTION_STATUS` \| `CAMPAIGN` \|
|
9201
|
-
# `
|
9313
|
+
# `CAMPAIGN_DELIVERY_EVENT_TYPE` \| `CASE_TEMPLATE_ARN` \|
|
9314
|
+
# `CASE_STATUS` \| `CHANNEL` \|
|
9202
9315
|
# `contact/segmentAttributes/connect:Subtype` \| `DISCONNECT_REASON`
|
9203
9316
|
# \| `FLOWS_RESOURCE_ID` \| `FLOWS_MODULE_RESOURCE_ID` \| `FLOW_TYPE`
|
9204
9317
|
# \| `FLOWS_OUTCOME_TYPE` \| `INITIATION_METHOD` \|
|
@@ -9414,12 +9527,12 @@ module Aws::Connect
|
|
9414
9527
|
#
|
9415
9528
|
# AVG\_DIALS\_PER\_MINUTE
|
9416
9529
|
#
|
9417
|
-
# : This metric is available only for
|
9418
|
-
#
|
9530
|
+
# : This metric is available only for outbound campaigns that use the
|
9531
|
+
# agent assisted voice and automated voice delivery modes.
|
9419
9532
|
#
|
9420
9533
|
# Unit: Count
|
9421
9534
|
#
|
9422
|
-
# Valid groupings and filters:
|
9535
|
+
# Valid groupings and filters: Agent, Campaign, Queue, Routing
|
9423
9536
|
# Profile
|
9424
9537
|
#
|
9425
9538
|
# UI name: [Average dials per minute][21]
|
@@ -9628,8 +9741,8 @@ module Aws::Connect
|
|
9628
9741
|
#
|
9629
9742
|
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
|
9630
9743
|
#
|
9631
|
-
# : This metric is available only for
|
9632
|
-
#
|
9744
|
+
# : This metric is available only for outbound campaigns that use the
|
9745
|
+
# agent assisted voice and automated voice delivery modes.
|
9633
9746
|
#
|
9634
9747
|
# Unit: Seconds
|
9635
9748
|
#
|
@@ -9639,12 +9752,12 @@ module Aws::Connect
|
|
9639
9752
|
#
|
9640
9753
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
|
9641
9754
|
#
|
9642
|
-
# : This metric is available only for
|
9643
|
-
#
|
9755
|
+
# : This metric is available only for outbound campaigns using the
|
9756
|
+
# agent assisted voice and automated voice delivery modes.
|
9644
9757
|
#
|
9645
9758
|
# Unit: Count
|
9646
9759
|
#
|
9647
|
-
# Valid groupings and filters:
|
9760
|
+
# Valid groupings and filters: Agent, Campaign
|
9648
9761
|
#
|
9649
9762
|
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
9650
9763
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
@@ -9654,12 +9767,12 @@ module Aws::Connect
|
|
9654
9767
|
#
|
9655
9768
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
|
9656
9769
|
#
|
9657
|
-
# : This metric is available only for
|
9658
|
-
#
|
9770
|
+
# : This metric is available only for outbound campaigns using the
|
9771
|
+
# agent assisted voice and automated voice delivery modes.
|
9659
9772
|
#
|
9660
9773
|
# Unit: Percent
|
9661
9774
|
#
|
9662
|
-
# Valid groupings and filters:
|
9775
|
+
# Valid groupings and filters: Agent, Campaign
|
9663
9776
|
#
|
9664
9777
|
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
9665
9778
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
@@ -9667,6 +9780,30 @@ module Aws::Connect
|
|
9667
9780
|
#
|
9668
9781
|
# UI name: [Campaign contacts abandoned after X rate][40]
|
9669
9782
|
#
|
9783
|
+
# CAMPAIGN\_INTERACTIONS
|
9784
|
+
#
|
9785
|
+
# : This metric is available only for outbound campaigns using the
|
9786
|
+
# email delivery mode.
|
9787
|
+
#
|
9788
|
+
# Unit: Count
|
9789
|
+
#
|
9790
|
+
# Valid metric filter key: CAMPAIGN\_INTERACTION\_EVENT\_TYPE
|
9791
|
+
#
|
9792
|
+
# Valid groupings and filters: Campaign
|
9793
|
+
#
|
9794
|
+
# UI name: [Campaign interactions][41]
|
9795
|
+
#
|
9796
|
+
# CAMPAIGN\_SEND\_ATTEMPTS
|
9797
|
+
#
|
9798
|
+
# : This metric is available only for outbound campaigns.
|
9799
|
+
#
|
9800
|
+
# Unit: Count
|
9801
|
+
#
|
9802
|
+
# Valid groupings and filters: Campaign, Channel,
|
9803
|
+
# contact/segmentAttributes/connect:Subtype
|
9804
|
+
#
|
9805
|
+
# UI name: [Campaign send attempts][42]
|
9806
|
+
#
|
9670
9807
|
# CASES\_CREATED
|
9671
9808
|
#
|
9672
9809
|
# : Unit: Count
|
@@ -9675,7 +9812,7 @@ module Aws::Connect
|
|
9675
9812
|
#
|
9676
9813
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9677
9814
|
#
|
9678
|
-
# UI name: [Cases created][
|
9815
|
+
# UI name: [Cases created][43]
|
9679
9816
|
#
|
9680
9817
|
# CONTACTS\_CREATED
|
9681
9818
|
#
|
@@ -9686,7 +9823,7 @@ module Aws::Connect
|
|
9686
9823
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9687
9824
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
9688
9825
|
#
|
9689
|
-
# UI name: [Contacts created][
|
9826
|
+
# UI name: [Contacts created][44]
|
9690
9827
|
#
|
9691
9828
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9692
9829
|
#
|
@@ -9703,7 +9840,7 @@ module Aws::Connect
|
|
9703
9840
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression,
|
9704
9841
|
# Q in Connect
|
9705
9842
|
#
|
9706
|
-
# UI name: [API contacts handled][
|
9843
|
+
# UI name: [API contacts handled][45]
|
9707
9844
|
#
|
9708
9845
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9709
9846
|
#
|
@@ -9718,7 +9855,7 @@ module Aws::Connect
|
|
9718
9855
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
9719
9856
|
# Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect
|
9720
9857
|
#
|
9721
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
9858
|
+
# UI name: [Contacts handled (connected to agent timestamp)][46]
|
9722
9859
|
#
|
9723
9860
|
# CONTACTS\_HOLD\_ABANDONS
|
9724
9861
|
#
|
@@ -9728,7 +9865,7 @@ module Aws::Connect
|
|
9728
9865
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9729
9866
|
# Q in Connect
|
9730
9867
|
#
|
9731
|
-
# UI name: [Contacts hold disconnect][
|
9868
|
+
# UI name: [Contacts hold disconnect][46]
|
9732
9869
|
#
|
9733
9870
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
9734
9871
|
#
|
@@ -9737,7 +9874,7 @@ module Aws::Connect
|
|
9737
9874
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9738
9875
|
# Agent, Agent Hierarchy, Q in Connect
|
9739
9876
|
#
|
9740
|
-
# UI name: [Contacts hold agent disconnect][
|
9877
|
+
# UI name: [Contacts hold agent disconnect][47]
|
9741
9878
|
#
|
9742
9879
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
9743
9880
|
#
|
@@ -9746,7 +9883,7 @@ module Aws::Connect
|
|
9746
9883
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9747
9884
|
# Agent, Agent Hierarchy, Q in Connect
|
9748
9885
|
#
|
9749
|
-
# UI name: [Contacts hold customer disconnect][
|
9886
|
+
# UI name: [Contacts hold customer disconnect][48]
|
9750
9887
|
#
|
9751
9888
|
# CONTACTS\_PUT\_ON\_HOLD
|
9752
9889
|
#
|
@@ -9755,7 +9892,7 @@ module Aws::Connect
|
|
9755
9892
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9756
9893
|
# Agent, Agent Hierarchy, Q in Connect
|
9757
9894
|
#
|
9758
|
-
# UI name: [Contacts put on hold][
|
9895
|
+
# UI name: [Contacts put on hold][48]
|
9759
9896
|
#
|
9760
9897
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
9761
9898
|
#
|
@@ -9764,7 +9901,7 @@ module Aws::Connect
|
|
9764
9901
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9765
9902
|
# Agent, Agent Hierarchy, Q in Connect
|
9766
9903
|
#
|
9767
|
-
# UI name: [Contacts transferred out external][
|
9904
|
+
# UI name: [Contacts transferred out external][49]
|
9768
9905
|
#
|
9769
9906
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
9770
9907
|
#
|
@@ -9773,7 +9910,7 @@ module Aws::Connect
|
|
9773
9910
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9774
9911
|
# Agent, Agent Hierarchy, Q in Connect
|
9775
9912
|
#
|
9776
|
-
# UI name: [Contacts transferred out internal][
|
9913
|
+
# UI name: [Contacts transferred out internal][50]
|
9777
9914
|
#
|
9778
9915
|
# CONTACTS\_QUEUED
|
9779
9916
|
#
|
@@ -9783,7 +9920,7 @@ module Aws::Connect
|
|
9783
9920
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9784
9921
|
# Q in Connect
|
9785
9922
|
#
|
9786
|
-
# UI name: [Contacts queued][
|
9923
|
+
# UI name: [Contacts queued][51]
|
9787
9924
|
#
|
9788
9925
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
9789
9926
|
#
|
@@ -9792,7 +9929,7 @@ module Aws::Connect
|
|
9792
9929
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
9793
9930
|
# Hierarchy, contact/segmentAttributes/connect:Subtype
|
9794
9931
|
#
|
9795
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
9932
|
+
# UI name: [Contacts queued (enqueue timestamp)][52]
|
9796
9933
|
#
|
9797
9934
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
9798
9935
|
#
|
@@ -9805,7 +9942,7 @@ module Aws::Connect
|
|
9805
9942
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
9806
9943
|
# (for "Less than") or `LTE` (for "Less than equal").
|
9807
9944
|
#
|
9808
|
-
# UI name: [Contacts removed from queue in X seconds][
|
9945
|
+
# UI name: [Contacts removed from queue in X seconds][53]
|
9809
9946
|
#
|
9810
9947
|
# CONTACTS\_RESOLVED\_IN\_X
|
9811
9948
|
#
|
@@ -9818,7 +9955,7 @@ module Aws::Connect
|
|
9818
9955
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
9819
9956
|
# (for "Less than") or `LTE` (for "Less than equal").
|
9820
9957
|
#
|
9821
|
-
# UI name: [Contacts resolved in X][
|
9958
|
+
# UI name: [Contacts resolved in X][54]
|
9822
9959
|
#
|
9823
9960
|
# CONTACTS\_TRANSFERRED\_OUT
|
9824
9961
|
#
|
@@ -9828,7 +9965,7 @@ module Aws::Connect
|
|
9828
9965
|
# Agent, Agent Hierarchy, Feature,
|
9829
9966
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9830
9967
|
#
|
9831
|
-
# UI name: [Contacts transferred out][
|
9968
|
+
# UI name: [Contacts transferred out][55]
|
9832
9969
|
#
|
9833
9970
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9834
9971
|
#
|
@@ -9842,7 +9979,7 @@ module Aws::Connect
|
|
9842
9979
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9843
9980
|
# Q in Connect
|
9844
9981
|
#
|
9845
|
-
# UI name: [Contacts transferred out by agent][
|
9982
|
+
# UI name: [Contacts transferred out by agent][56]
|
9846
9983
|
#
|
9847
9984
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
9848
9985
|
#
|
@@ -9852,7 +9989,7 @@ module Aws::Connect
|
|
9852
9989
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9853
9990
|
# Q in Connect
|
9854
9991
|
#
|
9855
|
-
# UI name: [Contacts transferred out queue][
|
9992
|
+
# UI name: [Contacts transferred out queue][56]
|
9856
9993
|
#
|
9857
9994
|
# CURRENT\_CASES
|
9858
9995
|
#
|
@@ -9862,43 +9999,57 @@ module Aws::Connect
|
|
9862
9999
|
#
|
9863
10000
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9864
10001
|
#
|
9865
|
-
# UI name: [Current cases][
|
10002
|
+
# UI name: [Current cases][57]
|
9866
10003
|
#
|
9867
10004
|
# DELIVERY\_ATTEMPTS
|
9868
10005
|
#
|
9869
|
-
# : This metric is available only for
|
9870
|
-
# campaigns analytics.
|
10006
|
+
# : This metric is available only for outbound campaigns.
|
9871
10007
|
#
|
9872
10008
|
# Unit: Count
|
9873
10009
|
#
|
9874
10010
|
# Valid metric filter key: `ANSWERING_MACHINE_DETECTION_STATUS`,
|
9875
|
-
# `DISCONNECT_REASON`
|
10011
|
+
# `CAMPAIGN_DELIVERY_EVENT_TYPE`, `DISCONNECT_REASON`
|
10012
|
+
#
|
10013
|
+
# Valid groupings and filters: Agent, Answering Machine Detection
|
10014
|
+
# Status, Campaign, Campaign Delivery EventType, Channel,
|
10015
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
10016
|
+
# Queue, Routing Profile
|
9876
10017
|
#
|
9877
|
-
#
|
9878
|
-
# Profile, Answering Machine Detection Status, Disconnect Reason
|
10018
|
+
# UI name: [Delivery attempts][58]
|
9879
10019
|
#
|
9880
|
-
#
|
10020
|
+
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
10021
|
+
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
10022
|
+
# Profile, Answering Machine Detection Status and Disconnect Reason
|
10023
|
+
# are only available for agent assisted voice and automated voice
|
10024
|
+
# delivery modes.
|
10025
|
+
#
|
10026
|
+
# </note>
|
9881
10027
|
#
|
9882
10028
|
# DELIVERY\_ATTEMPT\_DISPOSITION\_RATE
|
9883
10029
|
#
|
9884
|
-
# : This metric is available only for
|
9885
|
-
#
|
9886
|
-
# enabled.
|
10030
|
+
# : This metric is available only for outbound campaigns. Dispositions
|
10031
|
+
# for the agent assisted voice and automated voice delivery modes
|
10032
|
+
# are only available with answering machine detection enabled.
|
9887
10033
|
#
|
9888
10034
|
# Unit: Percent
|
9889
10035
|
#
|
9890
10036
|
# Valid metric filter key: `ANSWERING_MACHINE_DETECTION_STATUS`,
|
9891
|
-
# `DISCONNECT_REASON`
|
10037
|
+
# `CAMPAIGN_DELIVERY_EVENT_TYPE`, `DISCONNECT_REASON`
|
9892
10038
|
#
|
9893
|
-
# Valid groupings and filters:
|
9894
|
-
#
|
10039
|
+
# Valid groupings and filters: Agent, Answering Machine Detection
|
10040
|
+
# Status, Campaign, Channel,
|
10041
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
10042
|
+
# Queue, Routing Profile
|
9895
10043
|
#
|
9896
|
-
#
|
9897
|
-
# filters but not valid groupings.
|
10044
|
+
# UI name: [Delivery attempt disposition rate][59]
|
9898
10045
|
#
|
9899
|
-
#
|
10046
|
+
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only
|
10047
|
+
# available for SMS and Email campaign delivery modes. Agent, Queue,
|
10048
|
+
# Routing Profile, Answering Machine Detection Status and Disconnect
|
10049
|
+
# Reason are only available for agent assisted voice and automated
|
10050
|
+
# voice delivery modes.
|
9900
10051
|
#
|
9901
|
-
#
|
10052
|
+
# </note>
|
9902
10053
|
#
|
9903
10054
|
# FLOWS\_OUTCOME
|
9904
10055
|
#
|
@@ -9910,7 +10061,7 @@ module Aws::Connect
|
|
9910
10061
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9911
10062
|
# published timestamp
|
9912
10063
|
#
|
9913
|
-
# UI name: [Flows outcome][
|
10064
|
+
# UI name: [Flows outcome][60]
|
9914
10065
|
#
|
9915
10066
|
# FLOWS\_STARTED
|
9916
10067
|
#
|
@@ -9921,19 +10072,19 @@ module Aws::Connect
|
|
9921
10072
|
# resource ID, Flows resource ID, Initiation method, Resource
|
9922
10073
|
# published timestamp
|
9923
10074
|
#
|
9924
|
-
# UI name: [Flows started][
|
10075
|
+
# UI name: [Flows started][61]
|
9925
10076
|
#
|
9926
10077
|
# HUMAN\_ANSWERED\_CALLS
|
9927
10078
|
#
|
9928
|
-
# : This metric is available only for
|
9929
|
-
#
|
9930
|
-
# enabled.
|
10079
|
+
# : This metric is available only for outbound campaigns. Dispositions
|
10080
|
+
# for the agent assisted voice and automated voice delivery modes
|
10081
|
+
# are only available with answering machine detection enabled.
|
9931
10082
|
#
|
9932
10083
|
# Unit: Count
|
9933
10084
|
#
|
9934
|
-
# Valid groupings and filters:
|
10085
|
+
# Valid groupings and filters: Agent, Campaign
|
9935
10086
|
#
|
9936
|
-
# UI name: [Human answered][
|
10087
|
+
# UI name: [Human answered][62]
|
9937
10088
|
#
|
9938
10089
|
# MAX\_FLOW\_TIME
|
9939
10090
|
#
|
@@ -9945,7 +10096,7 @@ module Aws::Connect
|
|
9945
10096
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9946
10097
|
# published timestamp
|
9947
10098
|
#
|
9948
|
-
# UI name: [Maximum flow time][
|
10099
|
+
# UI name: [Maximum flow time][63]
|
9949
10100
|
#
|
9950
10101
|
# MAX\_QUEUED\_TIME
|
9951
10102
|
#
|
@@ -9955,7 +10106,7 @@ module Aws::Connect
|
|
9955
10106
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9956
10107
|
# Q in Connect
|
9957
10108
|
#
|
9958
|
-
# UI name: [Maximum queued time][
|
10109
|
+
# UI name: [Maximum queued time][64]
|
9959
10110
|
#
|
9960
10111
|
# MIN\_FLOW\_TIME
|
9961
10112
|
#
|
@@ -9967,7 +10118,7 @@ module Aws::Connect
|
|
9967
10118
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9968
10119
|
# published timestamp
|
9969
10120
|
#
|
9970
|
-
# UI name: [Minimum flow time][
|
10121
|
+
# UI name: [Minimum flow time][65]
|
9971
10122
|
#
|
9972
10123
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
9973
10124
|
#
|
@@ -9977,7 +10128,7 @@ module Aws::Connect
|
|
9977
10128
|
#
|
9978
10129
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9979
10130
|
#
|
9980
|
-
# UI name: [Cases resolved on first contact][
|
10131
|
+
# UI name: [Cases resolved on first contact][66]
|
9981
10132
|
#
|
9982
10133
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
9983
10134
|
#
|
@@ -10009,7 +10160,7 @@ module Aws::Connect
|
|
10009
10160
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
10010
10161
|
# published timestamp
|
10011
10162
|
#
|
10012
|
-
# UI name: [Flows outcome percentage][
|
10163
|
+
# UI name: [Flows outcome percentage][67].
|
10013
10164
|
#
|
10014
10165
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
10015
10166
|
#
|
@@ -10026,7 +10177,7 @@ module Aws::Connect
|
|
10026
10177
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10027
10178
|
# Q in Connect
|
10028
10179
|
#
|
10029
|
-
# UI name: [Non-talk time percent][
|
10180
|
+
# UI name: [Non-talk time percent][68]
|
10030
10181
|
#
|
10031
10182
|
# PERCENT\_TALK\_TIME
|
10032
10183
|
#
|
@@ -10039,7 +10190,7 @@ module Aws::Connect
|
|
10039
10190
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10040
10191
|
# Q in Connect
|
10041
10192
|
#
|
10042
|
-
# UI name: [Talk time percent][
|
10193
|
+
# UI name: [Talk time percent][69]
|
10043
10194
|
#
|
10044
10195
|
# PERCENT\_TALK\_TIME\_AGENT
|
10045
10196
|
#
|
@@ -10052,7 +10203,7 @@ module Aws::Connect
|
|
10052
10203
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10053
10204
|
# Q in Connect
|
10054
10205
|
#
|
10055
|
-
# UI name: [Agent talk time percent][
|
10206
|
+
# UI name: [Agent talk time percent][70]
|
10056
10207
|
#
|
10057
10208
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
10058
10209
|
#
|
@@ -10065,7 +10216,7 @@ module Aws::Connect
|
|
10065
10216
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10066
10217
|
# Q in Connect
|
10067
10218
|
#
|
10068
|
-
# UI name: [Customer talk time percent][
|
10219
|
+
# UI name: [Customer talk time percent][71]
|
10069
10220
|
#
|
10070
10221
|
# REOPENED\_CASE\_ACTIONS
|
10071
10222
|
#
|
@@ -10075,7 +10226,7 @@ module Aws::Connect
|
|
10075
10226
|
#
|
10076
10227
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
10077
10228
|
#
|
10078
|
-
# UI name: [Cases reopened][
|
10229
|
+
# UI name: [Cases reopened][72]
|
10079
10230
|
#
|
10080
10231
|
# RESOLVED\_CASE\_ACTIONS
|
10081
10232
|
#
|
@@ -10085,7 +10236,7 @@ module Aws::Connect
|
|
10085
10236
|
#
|
10086
10237
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
10087
10238
|
#
|
10088
|
-
# UI name: [Cases resolved][
|
10239
|
+
# UI name: [Cases resolved][73]
|
10089
10240
|
#
|
10090
10241
|
# SERVICE\_LEVEL
|
10091
10242
|
#
|
@@ -10100,7 +10251,7 @@ module Aws::Connect
|
|
10100
10251
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
10101
10252
|
# (for "Less than") or `LTE` (for "Less than equal").
|
10102
10253
|
#
|
10103
|
-
# UI name: [Service level X][
|
10254
|
+
# UI name: [Service level X][74]
|
10104
10255
|
#
|
10105
10256
|
# STEP\_CONTACTS\_QUEUED
|
10106
10257
|
#
|
@@ -10118,7 +10269,7 @@ module Aws::Connect
|
|
10118
10269
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10119
10270
|
# Agent, Agent Hierarchy, Q in Connect
|
10120
10271
|
#
|
10121
|
-
# UI name: [After contact work time][
|
10272
|
+
# UI name: [After contact work time][75]
|
10122
10273
|
#
|
10123
10274
|
# SUM\_CONNECTING\_TIME\_AGENT
|
10124
10275
|
#
|
@@ -10131,7 +10282,7 @@ module Aws::Connect
|
|
10131
10282
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10132
10283
|
# Agent, Agent Hierarchy
|
10133
10284
|
#
|
10134
|
-
# UI name: [Agent API connecting time][
|
10285
|
+
# UI name: [Agent API connecting time][76]
|
10135
10286
|
#
|
10136
10287
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for
|
10137
10288
|
# this metric.
|
@@ -10153,7 +10304,7 @@ module Aws::Connect
|
|
10153
10304
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10154
10305
|
# RoutingStepExpression, Q in Connect
|
10155
10306
|
#
|
10156
|
-
# UI name: [Contact abandoned][
|
10307
|
+
# UI name: [Contact abandoned][77]
|
10157
10308
|
#
|
10158
10309
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
10159
10310
|
#
|
@@ -10166,7 +10317,7 @@ module Aws::Connect
|
|
10166
10317
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
10167
10318
|
# (for "Less than") or `LTE` (for "Less than equal").
|
10168
10319
|
#
|
10169
|
-
# UI name: [Contacts abandoned in X seconds][
|
10320
|
+
# UI name: [Contacts abandoned in X seconds][78]
|
10170
10321
|
#
|
10171
10322
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
10172
10323
|
#
|
@@ -10179,7 +10330,7 @@ module Aws::Connect
|
|
10179
10330
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
10180
10331
|
# (for "Less than") or `LTE` (for "Less than equal").
|
10181
10332
|
#
|
10182
|
-
# UI name: [Contacts answered in X seconds][
|
10333
|
+
# UI name: [Contacts answered in X seconds][79]
|
10183
10334
|
#
|
10184
10335
|
# SUM\_CONTACT\_FLOW\_TIME
|
10185
10336
|
#
|
@@ -10188,7 +10339,7 @@ module Aws::Connect
|
|
10188
10339
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10189
10340
|
# Agent, Agent Hierarchy, Q in Connect
|
10190
10341
|
#
|
10191
|
-
# UI name: [Contact flow time][
|
10342
|
+
# UI name: [Contact flow time][80]
|
10192
10343
|
#
|
10193
10344
|
# SUM\_CONTACT\_TIME\_AGENT
|
10194
10345
|
#
|
@@ -10197,7 +10348,7 @@ module Aws::Connect
|
|
10197
10348
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
10198
10349
|
# Hierarchy
|
10199
10350
|
#
|
10200
|
-
# UI name: [Agent on contact time][
|
10351
|
+
# UI name: [Agent on contact time][81]
|
10201
10352
|
#
|
10202
10353
|
# SUM\_CONTACTS\_DISCONNECTED
|
10203
10354
|
#
|
@@ -10209,7 +10360,7 @@ module Aws::Connect
|
|
10209
10360
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10210
10361
|
# Q in Connect
|
10211
10362
|
#
|
10212
|
-
# UI name: [Contact disconnected][
|
10363
|
+
# UI name: [Contact disconnected][82]
|
10213
10364
|
#
|
10214
10365
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
10215
10366
|
#
|
@@ -10218,7 +10369,7 @@ module Aws::Connect
|
|
10218
10369
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
10219
10370
|
# Hierarchy
|
10220
10371
|
#
|
10221
|
-
# UI name: [Error status time][
|
10372
|
+
# UI name: [Error status time][83]
|
10222
10373
|
#
|
10223
10374
|
# SUM\_HANDLE\_TIME
|
10224
10375
|
#
|
@@ -10227,7 +10378,7 @@ module Aws::Connect
|
|
10227
10378
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10228
10379
|
# Agent, Agent Hierarchy, Q in Connect
|
10229
10380
|
#
|
10230
|
-
# UI name: [Contact handle time][
|
10381
|
+
# UI name: [Contact handle time][84]
|
10231
10382
|
#
|
10232
10383
|
# SUM\_HOLD\_TIME
|
10233
10384
|
#
|
@@ -10236,7 +10387,7 @@ module Aws::Connect
|
|
10236
10387
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10237
10388
|
# Agent, Agent Hierarchy, Q in Connect
|
10238
10389
|
#
|
10239
|
-
# UI name: [Customer hold time][
|
10390
|
+
# UI name: [Customer hold time][85]
|
10240
10391
|
#
|
10241
10392
|
# SUM\_IDLE\_TIME\_AGENT
|
10242
10393
|
#
|
@@ -10245,7 +10396,7 @@ module Aws::Connect
|
|
10245
10396
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
10246
10397
|
# Hierarchy
|
10247
10398
|
#
|
10248
|
-
# UI name: [Agent idle time][
|
10399
|
+
# UI name: [Agent idle time][86]
|
10249
10400
|
#
|
10250
10401
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
10251
10402
|
#
|
@@ -10254,7 +10405,7 @@ module Aws::Connect
|
|
10254
10405
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10255
10406
|
# Agent, Agent Hierarchy, Q in Connect
|
10256
10407
|
#
|
10257
|
-
# UI name: [Agent interaction and hold time][
|
10408
|
+
# UI name: [Agent interaction and hold time][87]
|
10258
10409
|
#
|
10259
10410
|
# SUM\_INTERACTION\_TIME
|
10260
10411
|
#
|
@@ -10263,7 +10414,7 @@ module Aws::Connect
|
|
10263
10414
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10264
10415
|
# Agent, Agent Hierarchy
|
10265
10416
|
#
|
10266
|
-
# UI name: [Agent interaction time][
|
10417
|
+
# UI name: [Agent interaction time][88]
|
10267
10418
|
#
|
10268
10419
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
10269
10420
|
#
|
@@ -10272,7 +10423,7 @@ module Aws::Connect
|
|
10272
10423
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
10273
10424
|
# Hierarchy
|
10274
10425
|
#
|
10275
|
-
# UI name: [Non-Productive Time][
|
10426
|
+
# UI name: [Non-Productive Time][89]
|
10276
10427
|
#
|
10277
10428
|
# SUM\_ONLINE\_TIME\_AGENT
|
10278
10429
|
#
|
@@ -10281,7 +10432,7 @@ module Aws::Connect
|
|
10281
10432
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
10282
10433
|
# Hierarchy
|
10283
10434
|
#
|
10284
|
-
# UI name: [Online time][
|
10435
|
+
# UI name: [Online time][90]
|
10285
10436
|
#
|
10286
10437
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
10287
10438
|
#
|
@@ -10290,7 +10441,7 @@ module Aws::Connect
|
|
10290
10441
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10291
10442
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
10292
10443
|
#
|
10293
|
-
# UI name: [Callback attempts][
|
10444
|
+
# UI name: [Callback attempts][91]
|
10294
10445
|
#
|
10295
10446
|
#
|
10296
10447
|
#
|
@@ -10334,55 +10485,57 @@ module Aws::Connect
|
|
10334
10485
|
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-wait-time-historical
|
10335
10486
|
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-historical
|
10336
10487
|
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-rate-historical
|
10337
|
-
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10338
|
-
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10339
|
-
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10340
|
-
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10341
|
-
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10342
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10343
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10344
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10345
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10346
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10347
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10348
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10349
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10350
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10351
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10352
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10353
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10354
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10355
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10356
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10357
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10358
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10359
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10360
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10361
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10362
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10363
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10364
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10365
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10366
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10367
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10368
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10369
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10370
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10371
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10372
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10373
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10374
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10375
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10376
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-
|
10377
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10378
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-
|
10379
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10380
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10381
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10382
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-
|
10383
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10384
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10385
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10488
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-interactions-historical
|
10489
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-send-attempts-historical
|
10490
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-created-historical
|
10491
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-created-historical
|
10492
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#api-contacts-handled-historical
|
10493
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical
|
10494
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-agent-disconnect-historical
|
10495
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical
|
10496
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-external-historical
|
10497
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical
|
10498
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical
|
10499
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical
|
10500
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-removed-historical
|
10501
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical
|
10502
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical
|
10503
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical
|
10504
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#current-cases-historical
|
10505
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempts-historical
|
10506
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempt-disposition-rate-historical
|
10507
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical
|
10508
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-started-historical
|
10509
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#human-answered-historical
|
10510
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-flow-time-historical
|
10511
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical
|
10512
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#minimum-flow-time-historical
|
10513
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-first-contact-historical
|
10514
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-percentage-historical
|
10515
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical
|
10516
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical
|
10517
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical
|
10518
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical
|
10519
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-reopened-historical
|
10520
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historical
|
10521
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical
|
10522
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical
|
10523
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time
|
10524
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical
|
10525
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical
|
10526
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical
|
10527
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical
|
10528
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical
|
10529
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical
|
10530
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical
|
10531
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical
|
10532
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical
|
10533
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-idle-time-historica
|
10534
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical
|
10535
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
|
10536
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#npt-historical
|
10537
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#online-time-historical
|
10538
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical
|
10386
10539
|
# @return [Array<Types::MetricV2>]
|
10387
10540
|
#
|
10388
10541
|
# @!attribute [rw] next_token
|
@@ -10564,8 +10717,8 @@ module Aws::Connect
|
|
10564
10717
|
#
|
10565
10718
|
# @!attribute [rw] tags
|
10566
10719
|
# The tags used to organize, track, or control access for this
|
10567
|
-
# resource. For example,
|
10568
|
-
# "key2":"value2"
|
10720
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
10721
|
+
# "key2":"value2"} }.
|
10569
10722
|
# @return [Hash<String,String>]
|
10570
10723
|
#
|
10571
10724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetTaskTemplateResponse AWS API Documentation
|
@@ -10664,8 +10817,8 @@ module Aws::Connect
|
|
10664
10817
|
#
|
10665
10818
|
# @!attribute [rw] tags
|
10666
10819
|
# The tags used to organize, track, or control access for this
|
10667
|
-
# resource. For example,
|
10668
|
-
# "key2":"value2"
|
10820
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
10821
|
+
# "key2":"value2"} }.
|
10669
10822
|
# @return [Hash<String,String>]
|
10670
10823
|
#
|
10671
10824
|
# @!attribute [rw] last_modified_time
|
@@ -11088,8 +11241,8 @@ module Aws::Connect
|
|
11088
11241
|
#
|
11089
11242
|
# @!attribute [rw] tags
|
11090
11243
|
# The tags used to organize, track, or control access for this
|
11091
|
-
# resource. For example,
|
11092
|
-
# "key2":"value2"
|
11244
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
11245
|
+
# "key2":"value2"} }.
|
11093
11246
|
# @return [Hash<String,String>]
|
11094
11247
|
#
|
11095
11248
|
# @!attribute [rw] last_modified_time
|
@@ -11285,8 +11438,8 @@ module Aws::Connect
|
|
11285
11438
|
#
|
11286
11439
|
# @!attribute [rw] tags
|
11287
11440
|
# The tags used to organize, track, or control access for this
|
11288
|
-
# resource. For example,
|
11289
|
-
# "key2":"value2"
|
11441
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
11442
|
+
# "key2":"value2"} }.
|
11290
11443
|
# @return [Hash<String,String>]
|
11291
11444
|
#
|
11292
11445
|
# @!attribute [rw] client_token
|
@@ -12233,6 +12386,54 @@ module Aws::Connect
|
|
12233
12386
|
include Aws::Structure
|
12234
12387
|
end
|
12235
12388
|
|
12389
|
+
# @!attribute [rw] instance_id
|
12390
|
+
# The identifier of the Amazon Connect instance.
|
12391
|
+
# @return [String]
|
12392
|
+
#
|
12393
|
+
# @!attribute [rw] contact_flow_id
|
12394
|
+
# The identifier of the flow.
|
12395
|
+
# @return [String]
|
12396
|
+
#
|
12397
|
+
# @!attribute [rw] next_token
|
12398
|
+
# The token for the next set of results. Use the value returned in the
|
12399
|
+
# previous response in the next request to retrieve the next set of
|
12400
|
+
# results.
|
12401
|
+
# @return [String]
|
12402
|
+
#
|
12403
|
+
# @!attribute [rw] max_results
|
12404
|
+
# The maximum number of results to return per page. The default
|
12405
|
+
# MaxResult size is 100.
|
12406
|
+
# @return [Integer]
|
12407
|
+
#
|
12408
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowVersionsRequest AWS API Documentation
|
12409
|
+
#
|
12410
|
+
class ListContactFlowVersionsRequest < Struct.new(
|
12411
|
+
:instance_id,
|
12412
|
+
:contact_flow_id,
|
12413
|
+
:next_token,
|
12414
|
+
:max_results)
|
12415
|
+
SENSITIVE = []
|
12416
|
+
include Aws::Structure
|
12417
|
+
end
|
12418
|
+
|
12419
|
+
# @!attribute [rw] contact_flow_version_summary_list
|
12420
|
+
# A list of flow version summaries.
|
12421
|
+
# @return [Array<Types::ContactFlowVersionSummary>]
|
12422
|
+
#
|
12423
|
+
# @!attribute [rw] next_token
|
12424
|
+
# If there are additional results, this is the token for the next set
|
12425
|
+
# of results.
|
12426
|
+
# @return [String]
|
12427
|
+
#
|
12428
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowVersionsResponse AWS API Documentation
|
12429
|
+
#
|
12430
|
+
class ListContactFlowVersionsResponse < Struct.new(
|
12431
|
+
:contact_flow_version_summary_list,
|
12432
|
+
:next_token)
|
12433
|
+
SENSITIVE = []
|
12434
|
+
include Aws::Structure
|
12435
|
+
end
|
12436
|
+
|
12236
12437
|
# @!attribute [rw] instance_id
|
12237
12438
|
# The identifier of the Amazon Connect instance. You can [find the
|
12238
12439
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -14753,9 +14954,9 @@ module Aws::Connect
|
|
14753
14954
|
#
|
14754
14955
|
# @!attribute [rw] user_tags
|
14755
14956
|
# The tags used to organize, track, or control access for this
|
14756
|
-
# resource. For example,
|
14757
|
-
# "key2":"value2"
|
14758
|
-
#
|
14957
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
14958
|
+
# "key2":"value2"} }. Amazon Connect users with the specified tags
|
14959
|
+
# will be notified.
|
14759
14960
|
# @return [Hash<String,String>]
|
14760
14961
|
#
|
14761
14962
|
# @!attribute [rw] user_ids
|
@@ -15366,8 +15567,8 @@ module Aws::Connect
|
|
15366
15567
|
#
|
15367
15568
|
# @!attribute [rw] tags
|
15368
15569
|
# The tags used to organize, track, or control access for this
|
15369
|
-
# resource. For example,
|
15370
|
-
# "key2":"value2"
|
15570
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
15571
|
+
# "key2":"value2"} }.
|
15371
15572
|
# @return [Hash<String,String>]
|
15372
15573
|
#
|
15373
15574
|
# @!attribute [rw] last_modified_time
|
@@ -15610,8 +15811,8 @@ module Aws::Connect
|
|
15610
15811
|
#
|
15611
15812
|
# @!attribute [rw] tags
|
15612
15813
|
# The tags used to organize, track, or control access for this
|
15613
|
-
# resource. For example,
|
15614
|
-
# "key2":"value2"
|
15814
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
15815
|
+
# "key2":"value2"} }.
|
15615
15816
|
# @return [Hash<String,String>]
|
15616
15817
|
#
|
15617
15818
|
# @!attribute [rw] last_modified_time
|
@@ -15830,8 +16031,8 @@ module Aws::Connect
|
|
15830
16031
|
#
|
15831
16032
|
# @!attribute [rw] tags
|
15832
16033
|
# The tags used to organize, track, or control access for this
|
15833
|
-
# resource. For example,
|
15834
|
-
# "key2":"value2"
|
16034
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
16035
|
+
# "key2":"value2"} }.
|
15835
16036
|
# @return [Hash<String,String>]
|
15836
16037
|
#
|
15837
16038
|
# @!attribute [rw] last_modified_time
|
@@ -17005,8 +17206,8 @@ module Aws::Connect
|
|
17005
17206
|
#
|
17006
17207
|
# @!attribute [rw] tags
|
17007
17208
|
# The tags used to organize, track, or control access for this
|
17008
|
-
# resource. For example,
|
17009
|
-
# "key2":"value2"
|
17209
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
17210
|
+
# "key2":"value2"} }.
|
17010
17211
|
# @return [Hash<String,String>]
|
17011
17212
|
#
|
17012
17213
|
# @!attribute [rw] number_of_associated_queues
|
@@ -17329,8 +17530,8 @@ module Aws::Connect
|
|
17329
17530
|
#
|
17330
17531
|
# @!attribute [rw] tags
|
17331
17532
|
# The tags used to organize, track, or control access for this
|
17332
|
-
# resource. For example,
|
17333
|
-
# "key2":"value2"
|
17533
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
17534
|
+
# "key2":"value2"} }.
|
17334
17535
|
# @return [Hash<String,String>]
|
17335
17536
|
#
|
17336
17537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Rule AWS API Documentation
|
@@ -18759,8 +18960,8 @@ module Aws::Connect
|
|
18759
18960
|
#
|
18760
18961
|
# @!attribute [rw] tags
|
18761
18962
|
# The tags used to organize, track, or control access for this
|
18762
|
-
# resource. For example,
|
18763
|
-
# "key2":"value2"
|
18963
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
18964
|
+
# "key2":"value2"} }.
|
18764
18965
|
# @return [Hash<String,String>]
|
18765
18966
|
#
|
18766
18967
|
# @!attribute [rw] allowed_access_control_tags
|
@@ -18869,8 +19070,8 @@ module Aws::Connect
|
|
18869
19070
|
#
|
18870
19071
|
# @!attribute [rw] tags
|
18871
19072
|
# The tags used to organize, track, or control access for this
|
18872
|
-
# resource. For example,
|
18873
|
-
# "key2":"value2"
|
19073
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
19074
|
+
# "key2":"value2"} }.
|
18874
19075
|
# @return [Hash<String,String>]
|
18875
19076
|
#
|
18876
19077
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfileSearchSummary AWS API Documentation
|
@@ -19217,8 +19418,8 @@ module Aws::Connect
|
|
19217
19418
|
#
|
19218
19419
|
# @!attribute [rw] tags
|
19219
19420
|
# The tags used to organize, track, or control access for this
|
19220
|
-
# resource. For example,
|
19221
|
-
#
|
19421
|
+
# resource. For example, `{ "Tags": {"key1":"value1", "key2":"value2"}
|
19422
|
+
# }`.
|
19222
19423
|
# @return [Hash<String,String>]
|
19223
19424
|
#
|
19224
19425
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartAttachedFileUploadRequest AWS API Documentation
|
@@ -19395,8 +19596,8 @@ module Aws::Connect
|
|
19395
19596
|
# <note markdown="1"> The types `application/vnd.amazonaws.connect.message.interactive`
|
19396
19597
|
# and `application/vnd.amazonaws.connect.message.interactive.response`
|
19397
19598
|
# must be present in the SupportedMessagingContentTypes field of this
|
19398
|
-
# API in order to set `SegmentAttributes` as
|
19399
|
-
#
|
19599
|
+
# API in order to set `SegmentAttributes` as \{` "connect:Subtype":
|
19600
|
+
# {"valueString" : "connect:Guide" }}`.
|
19400
19601
|
#
|
19401
19602
|
# </note>
|
19402
19603
|
# @return [Hash<String,Types::SegmentAttributeValue>]
|
@@ -20500,8 +20701,8 @@ module Aws::Connect
|
|
20500
20701
|
# @return [String]
|
20501
20702
|
#
|
20502
20703
|
# @!attribute [rw] tags
|
20503
|
-
# The tags to be assigned to the contact resource. For example,
|
20504
|
-
# "Tags":
|
20704
|
+
# The tags to be assigned to the contact resource. For example, \{
|
20705
|
+
# "Tags": \{"key1":"value1", "key2":"value2"} }.
|
20505
20706
|
#
|
20506
20707
|
# <note markdown="1"> Authorization is not supported by this tag.
|
20507
20708
|
#
|
@@ -20528,8 +20729,8 @@ module Aws::Connect
|
|
20528
20729
|
#
|
20529
20730
|
# @!attribute [rw] tags
|
20530
20731
|
# The tags used to organize, track, or control access for this
|
20531
|
-
# resource. For example,
|
20532
|
-
# "key2":"value2"
|
20732
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
20733
|
+
# "key2":"value2"} }.
|
20533
20734
|
# @return [Hash<String,String>]
|
20534
20735
|
#
|
20535
20736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TagResourceRequest AWS API Documentation
|
@@ -20918,8 +21119,8 @@ module Aws::Connect
|
|
20918
21119
|
#
|
20919
21120
|
# @!attribute [rw] tags
|
20920
21121
|
# The tags used to organize, track, or control access for this
|
20921
|
-
# resource. For example,
|
20922
|
-
# "key2":"value2"
|
21122
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
21123
|
+
# "key2":"value2"} }.
|
20923
21124
|
# @return [Hash<String,String>]
|
20924
21125
|
#
|
20925
21126
|
# @!attribute [rw] is_default
|
@@ -23442,7 +23643,7 @@ module Aws::Connect
|
|
23442
23643
|
# primary email address.
|
23443
23644
|
#
|
23444
23645
|
# Pattern:
|
23445
|
-
# `(
|
23646
|
+
# `(?=^.{0,265}$)[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,63}`
|
23446
23647
|
# @return [String]
|
23447
23648
|
#
|
23448
23649
|
# @!attribute [rw] mobile
|
@@ -23750,8 +23951,8 @@ module Aws::Connect
|
|
23750
23951
|
#
|
23751
23952
|
# @!attribute [rw] tags
|
23752
23953
|
# The tags used to organize, track, or control access for this
|
23753
|
-
# resource. For example,
|
23754
|
-
# "key2":"value2"
|
23954
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
23955
|
+
# "key2":"value2"} }.
|
23755
23956
|
# @return [Hash<String,String>]
|
23756
23957
|
#
|
23757
23958
|
# @!attribute [rw] username
|
@@ -24070,8 +24271,8 @@ module Aws::Connect
|
|
24070
24271
|
#
|
24071
24272
|
# @!attribute [rw] tags
|
24072
24273
|
# The tags used to organize, track, or control access for this
|
24073
|
-
# resource. For example,
|
24074
|
-
# "key2":"value2"
|
24274
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
24275
|
+
# "key2":"value2"} }.
|
24075
24276
|
# @return [Hash<String,String>]
|
24076
24277
|
#
|
24077
24278
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Vocabulary AWS API Documentation
|