aws-sdk-connect 1.167.0 → 1.168.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +348 -74
- data/lib/aws-sdk-connect/client_api.rb +135 -0
- data/lib/aws-sdk-connect/endpoints.rb +28 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-connect/types.rb +464 -102
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +124 -0
- data/sig/types.rbs +89 -0
- metadata +2 -2
@@ -356,6 +356,65 @@ module Aws::Connect
|
|
356
356
|
include Aws::Structure
|
357
357
|
end
|
358
358
|
|
359
|
+
# The search criteria to be used to return agent statuses.
|
360
|
+
#
|
361
|
+
# @!attribute [rw] or_conditions
|
362
|
+
# A list of conditions which would be applied together with an `OR`
|
363
|
+
# condition.
|
364
|
+
# @return [Array<Types::AgentStatusSearchCriteria>]
|
365
|
+
#
|
366
|
+
# @!attribute [rw] and_conditions
|
367
|
+
# A leaf node condition which can be used to specify a string
|
368
|
+
# condition.
|
369
|
+
#
|
370
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name`,
|
371
|
+
# `description`, `state`, `type`, `displayOrder`,
and `resourceID`.
|
372
|
+
#
|
373
|
+
# </note>
|
374
|
+
# @return [Array<Types::AgentStatusSearchCriteria>]
|
375
|
+
#
|
376
|
+
# @!attribute [rw] string_condition
|
377
|
+
# A leaf node condition which can be used to specify a string
|
378
|
+
# condition.
|
379
|
+
#
|
380
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name`,
|
381
|
+
# `description`, `state`, `type`, `displayOrder`,
and `resourceID`.
|
382
|
+
#
|
383
|
+
# </note>
|
384
|
+
# @return [Types::StringCondition]
|
385
|
+
#
|
386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentStatusSearchCriteria AWS API Documentation
|
387
|
+
#
|
388
|
+
class AgentStatusSearchCriteria < Struct.new(
|
389
|
+
:or_conditions,
|
390
|
+
:and_conditions,
|
391
|
+
:string_condition)
|
392
|
+
SENSITIVE = []
|
393
|
+
include Aws::Structure
|
394
|
+
end
|
395
|
+
|
396
|
+
# Filters to be applied to search results.
|
397
|
+
#
|
398
|
+
# @!attribute [rw] attribute_filter
|
399
|
+
# An object that can be used to specify Tag conditions inside the
|
400
|
+
# `SearchFilter`. This accepts an `OR` of `AND` (List of List) input
|
401
|
+
# where:
|
402
|
+
#
|
403
|
+
# * The top level list specifies conditions that need to be applied
|
404
|
+
# with `OR` operator.
|
405
|
+
#
|
406
|
+
# * The inner list specifies conditions that need to be applied with
|
407
|
+
# `AND` operator.
|
408
|
+
# @return [Types::ControlPlaneAttributeFilter]
|
409
|
+
#
|
410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentStatusSearchFilter AWS API Documentation
|
411
|
+
#
|
412
|
+
class AgentStatusSearchFilter < Struct.new(
|
413
|
+
:attribute_filter)
|
414
|
+
SENSITIVE = []
|
415
|
+
include Aws::Structure
|
416
|
+
end
|
417
|
+
|
359
418
|
# Summary information for an agent status.
|
360
419
|
#
|
361
420
|
# @!attribute [rw] id
|
@@ -1990,6 +2049,21 @@ module Aws::Connect
|
|
1990
2049
|
include Aws::Structure
|
1991
2050
|
end
|
1992
2051
|
|
2052
|
+
# A list of conditions which would be applied together with an `AND`
|
2053
|
+
# condition.
|
2054
|
+
#
|
2055
|
+
# @!attribute [rw] tag_conditions
|
2056
|
+
# A leaf node condition which can be used to specify a tag condition.
|
2057
|
+
# @return [Array<Types::TagCondition>]
|
2058
|
+
#
|
2059
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CommonAttributeAndCondition AWS API Documentation
|
2060
|
+
#
|
2061
|
+
class CommonAttributeAndCondition < Struct.new(
|
2062
|
+
:tag_conditions)
|
2063
|
+
SENSITIVE = []
|
2064
|
+
include Aws::Structure
|
2065
|
+
end
|
2066
|
+
|
1993
2067
|
# Request to CompleteAttachedFileUpload API
|
1994
2068
|
#
|
1995
2069
|
# @!attribute [rw] instance_id
|
@@ -2029,6 +2103,33 @@ module Aws::Connect
|
|
2029
2103
|
#
|
2030
2104
|
class CompleteAttachedFileUploadResponse < Aws::EmptyStructure; end
|
2031
2105
|
|
2106
|
+
# A leaf node condition which can be used to specify a ProficiencyName,
|
2107
|
+
# ProficiencyValue and ProficiencyLimit.
|
2108
|
+
#
|
2109
|
+
# @!attribute [rw] string_condition
|
2110
|
+
# A leaf node condition which can be used to specify a string
|
2111
|
+
# condition.
|
2112
|
+
#
|
2113
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name` and
|
2114
|
+
# `value`.
|
2115
|
+
#
|
2116
|
+
# </note>
|
2117
|
+
# @return [Types::StringCondition]
|
2118
|
+
#
|
2119
|
+
# @!attribute [rw] number_condition
|
2120
|
+
# A leaf node condition which can be used to specify a numeric
|
2121
|
+
# condition.
|
2122
|
+
# @return [Types::NumberCondition]
|
2123
|
+
#
|
2124
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Condition AWS API Documentation
|
2125
|
+
#
|
2126
|
+
class Condition < Struct.new(
|
2127
|
+
:string_condition,
|
2128
|
+
:number_condition)
|
2129
|
+
SENSITIVE = []
|
2130
|
+
include Aws::Structure
|
2131
|
+
end
|
2132
|
+
|
2032
2133
|
# Operation cannot be performed at this time as there is a conflict with
|
2033
2134
|
# another operation or contact state.
|
2034
2135
|
#
|
@@ -2485,11 +2586,6 @@ module Aws::Connect
|
|
2485
2586
|
# @!attribute [rw] string_condition
|
2486
2587
|
# A leaf node condition which can be used to specify a string
|
2487
2588
|
# condition.
|
2488
|
-
#
|
2489
|
-
# <note markdown="1"> The currently supported values for `FieldName` are `name` and
|
2490
|
-
# `description`.
|
2491
|
-
#
|
2492
|
-
# </note>
|
2493
2589
|
# @return [Types::StringCondition]
|
2494
2590
|
#
|
2495
2591
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowModuleSearchCriteria AWS API Documentation
|
@@ -2581,11 +2677,6 @@ module Aws::Connect
|
|
2581
2677
|
# @!attribute [rw] string_condition
|
2582
2678
|
# A leaf node condition which can be used to specify a string
|
2583
2679
|
# condition.
|
2584
|
-
#
|
2585
|
-
# <note markdown="1"> The currently supported values for `FieldName` are `name` and
|
2586
|
-
# `description`.
|
2587
|
-
#
|
2588
|
-
# </note>
|
2589
2680
|
# @return [Types::StringCondition]
|
2590
2681
|
#
|
2591
2682
|
# @!attribute [rw] type_condition
|
@@ -2810,6 +2901,41 @@ module Aws::Connect
|
|
2810
2901
|
include Aws::Structure
|
2811
2902
|
end
|
2812
2903
|
|
2904
|
+
# An object that can be used to specify Tag conditions inside the
|
2905
|
+
# `SearchFilter`. This accepts an `OR` or `AND` (List of List) input
|
2906
|
+
# where:
|
2907
|
+
#
|
2908
|
+
# * The top level list specifies conditions that need to be applied with
|
2909
|
+
# `OR` operator.
|
2910
|
+
#
|
2911
|
+
# * The inner list specifies conditions that need to be applied with
|
2912
|
+
# `AND` operator.
|
2913
|
+
#
|
2914
|
+
# @!attribute [rw] or_conditions
|
2915
|
+
# A list of conditions which would be applied together with an `OR`
|
2916
|
+
# condition.
|
2917
|
+
# @return [Array<Types::CommonAttributeAndCondition>]
|
2918
|
+
#
|
2919
|
+
# @!attribute [rw] and_condition
|
2920
|
+
# A list of conditions which would be applied together with an `AND`
|
2921
|
+
# condition.
|
2922
|
+
# @return [Types::CommonAttributeAndCondition]
|
2923
|
+
#
|
2924
|
+
# @!attribute [rw] tag_condition
|
2925
|
+
# A leaf node condition which can be used to specify a tag condition,
|
2926
|
+
# for example, `HAVE BPO = 123`.
|
2927
|
+
# @return [Types::TagCondition]
|
2928
|
+
#
|
2929
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ControlPlaneAttributeFilter AWS API Documentation
|
2930
|
+
#
|
2931
|
+
class ControlPlaneAttributeFilter < Struct.new(
|
2932
|
+
:or_conditions,
|
2933
|
+
:and_condition,
|
2934
|
+
:tag_condition)
|
2935
|
+
SENSITIVE = []
|
2936
|
+
include Aws::Structure
|
2937
|
+
end
|
2938
|
+
|
2813
2939
|
# An object that can be used to specify Tag conditions inside the
|
2814
2940
|
# `SearchFilter`. This accepts an `OR` of `AND` (List of List) input
|
2815
2941
|
# where:
|
@@ -9594,8 +9720,7 @@ module Aws::Connect
|
|
9594
9720
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9595
9721
|
# `LT` (for "Less than").
|
9596
9722
|
#
|
9597
|
-
# UI name:
|
9598
|
-
# website.
|
9723
|
+
# UI name: [Contacts removed from queue in X seconds][47]
|
9599
9724
|
#
|
9600
9725
|
# CONTACTS\_RESOLVED\_IN\_X
|
9601
9726
|
#
|
@@ -9608,7 +9733,7 @@ module Aws::Connect
|
|
9608
9733
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9609
9734
|
# `LT` (for "Less than").
|
9610
9735
|
#
|
9611
|
-
# UI name: [Contacts resolved in X][
|
9736
|
+
# UI name: [Contacts resolved in X][48]
|
9612
9737
|
#
|
9613
9738
|
# CONTACTS\_TRANSFERRED\_OUT
|
9614
9739
|
#
|
@@ -9618,7 +9743,7 @@ module Aws::Connect
|
|
9618
9743
|
# Agent, Agent Hierarchy, Feature,
|
9619
9744
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9620
9745
|
#
|
9621
|
-
# UI name: [Contacts transferred out][
|
9746
|
+
# UI name: [Contacts transferred out][49]
|
9622
9747
|
#
|
9623
9748
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9624
9749
|
#
|
@@ -9632,7 +9757,7 @@ module Aws::Connect
|
|
9632
9757
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9633
9758
|
# Q in Connect
|
9634
9759
|
#
|
9635
|
-
# UI name: [Contacts transferred out by agent][
|
9760
|
+
# UI name: [Contacts transferred out by agent][50]
|
9636
9761
|
#
|
9637
9762
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
9638
9763
|
#
|
@@ -9642,7 +9767,7 @@ module Aws::Connect
|
|
9642
9767
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9643
9768
|
# Q in Connect
|
9644
9769
|
#
|
9645
|
-
# UI name: [Contacts transferred out queue][
|
9770
|
+
# UI name: [Contacts transferred out queue][50]
|
9646
9771
|
#
|
9647
9772
|
# CURRENT\_CASES
|
9648
9773
|
#
|
@@ -9652,7 +9777,7 @@ module Aws::Connect
|
|
9652
9777
|
#
|
9653
9778
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9654
9779
|
#
|
9655
|
-
# UI name: [Current cases][
|
9780
|
+
# UI name: [Current cases][51]
|
9656
9781
|
#
|
9657
9782
|
# FLOWS\_OUTCOME
|
9658
9783
|
#
|
@@ -9664,7 +9789,7 @@ module Aws::Connect
|
|
9664
9789
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9665
9790
|
# published timestamp
|
9666
9791
|
#
|
9667
|
-
# UI name: [Flows outcome][
|
9792
|
+
# UI name: [Flows outcome][52]
|
9668
9793
|
#
|
9669
9794
|
# FLOWS\_STARTED
|
9670
9795
|
#
|
@@ -9675,7 +9800,7 @@ module Aws::Connect
|
|
9675
9800
|
# resource ID, Flows resource ID, Initiation method, Resource
|
9676
9801
|
# published timestamp
|
9677
9802
|
#
|
9678
|
-
# UI name: [Flows started][
|
9803
|
+
# UI name: [Flows started][53]
|
9679
9804
|
#
|
9680
9805
|
# MAX\_FLOW\_TIME
|
9681
9806
|
#
|
@@ -9687,7 +9812,7 @@ module Aws::Connect
|
|
9687
9812
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9688
9813
|
# published timestamp
|
9689
9814
|
#
|
9690
|
-
# UI name: [Maximum flow time][
|
9815
|
+
# UI name: [Maximum flow time][54]
|
9691
9816
|
#
|
9692
9817
|
# MAX\_QUEUED\_TIME
|
9693
9818
|
#
|
@@ -9697,7 +9822,7 @@ module Aws::Connect
|
|
9697
9822
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9698
9823
|
# Q in Connect
|
9699
9824
|
#
|
9700
|
-
# UI name: [Maximum queued time][
|
9825
|
+
# UI name: [Maximum queued time][55]
|
9701
9826
|
#
|
9702
9827
|
# MIN\_FLOW\_TIME
|
9703
9828
|
#
|
@@ -9709,7 +9834,7 @@ module Aws::Connect
|
|
9709
9834
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9710
9835
|
# published timestamp
|
9711
9836
|
#
|
9712
|
-
# UI name: [Minimum flow time][
|
9837
|
+
# UI name: [Minimum flow time][56]
|
9713
9838
|
#
|
9714
9839
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
9715
9840
|
#
|
@@ -9719,7 +9844,7 @@ module Aws::Connect
|
|
9719
9844
|
#
|
9720
9845
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9721
9846
|
#
|
9722
|
-
# UI name: [Cases resolved on first contact][
|
9847
|
+
# UI name: [Cases resolved on first contact][57]
|
9723
9848
|
#
|
9724
9849
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
9725
9850
|
#
|
@@ -9751,7 +9876,7 @@ module Aws::Connect
|
|
9751
9876
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9752
9877
|
# published timestamp
|
9753
9878
|
#
|
9754
|
-
# UI name: [Flows outcome percentage][
|
9879
|
+
# UI name: [Flows outcome percentage][58].
|
9755
9880
|
#
|
9756
9881
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
9757
9882
|
#
|
@@ -9768,7 +9893,7 @@ module Aws::Connect
|
|
9768
9893
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9769
9894
|
# Q in Connect
|
9770
9895
|
#
|
9771
|
-
# UI name: [Non-talk time percent][
|
9896
|
+
# UI name: [Non-talk time percent][59]
|
9772
9897
|
#
|
9773
9898
|
# PERCENT\_TALK\_TIME
|
9774
9899
|
#
|
@@ -9781,7 +9906,7 @@ module Aws::Connect
|
|
9781
9906
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9782
9907
|
# Q in Connect
|
9783
9908
|
#
|
9784
|
-
# UI name: [Talk time percent][
|
9909
|
+
# UI name: [Talk time percent][60]
|
9785
9910
|
#
|
9786
9911
|
# PERCENT\_TALK\_TIME\_AGENT
|
9787
9912
|
#
|
@@ -9794,7 +9919,7 @@ module Aws::Connect
|
|
9794
9919
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9795
9920
|
# Q in Connect
|
9796
9921
|
#
|
9797
|
-
# UI name: [Agent talk time percent][
|
9922
|
+
# UI name: [Agent talk time percent][61]
|
9798
9923
|
#
|
9799
9924
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
9800
9925
|
#
|
@@ -9807,7 +9932,7 @@ module Aws::Connect
|
|
9807
9932
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9808
9933
|
# Q in Connect
|
9809
9934
|
#
|
9810
|
-
# UI name: [Customer talk time percent][
|
9935
|
+
# UI name: [Customer talk time percent][62]
|
9811
9936
|
#
|
9812
9937
|
# REOPENED\_CASE\_ACTIONS
|
9813
9938
|
#
|
@@ -9817,7 +9942,7 @@ module Aws::Connect
|
|
9817
9942
|
#
|
9818
9943
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9819
9944
|
#
|
9820
|
-
# UI name: [Cases reopened][
|
9945
|
+
# UI name: [Cases reopened][63]
|
9821
9946
|
#
|
9822
9947
|
# RESOLVED\_CASE\_ACTIONS
|
9823
9948
|
#
|
@@ -9827,7 +9952,7 @@ module Aws::Connect
|
|
9827
9952
|
#
|
9828
9953
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9829
9954
|
#
|
9830
|
-
# UI name: [Cases resolved][
|
9955
|
+
# UI name: [Cases resolved][64]
|
9831
9956
|
#
|
9832
9957
|
# SERVICE\_LEVEL
|
9833
9958
|
#
|
@@ -9842,7 +9967,7 @@ module Aws::Connect
|
|
9842
9967
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9843
9968
|
# `LT` (for "Less than").
|
9844
9969
|
#
|
9845
|
-
# UI name: [Service level X][
|
9970
|
+
# UI name: [Service level X][65]
|
9846
9971
|
#
|
9847
9972
|
# STEP\_CONTACTS\_QUEUED
|
9848
9973
|
#
|
@@ -9860,7 +9985,7 @@ module Aws::Connect
|
|
9860
9985
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9861
9986
|
# Agent, Agent Hierarchy, Q in Connect
|
9862
9987
|
#
|
9863
|
-
# UI name: [After contact work time][
|
9988
|
+
# UI name: [After contact work time][66]
|
9864
9989
|
#
|
9865
9990
|
# SUM\_CONNECTING\_TIME\_AGENT
|
9866
9991
|
#
|
@@ -9873,7 +9998,7 @@ module Aws::Connect
|
|
9873
9998
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9874
9999
|
# Agent, Agent Hierarchy
|
9875
10000
|
#
|
9876
|
-
# UI name: [Agent API connecting time][
|
10001
|
+
# UI name: [Agent API connecting time][67]
|
9877
10002
|
#
|
9878
10003
|
# <note markdown="1"> The `Negate` key in Metric Level Filters is not applicable for
|
9879
10004
|
# this metric.
|
@@ -9895,7 +10020,7 @@ module Aws::Connect
|
|
9895
10020
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9896
10021
|
# RoutingStepExpression, Q in Connect
|
9897
10022
|
#
|
9898
|
-
# UI name: [Contact abandoned][
|
10023
|
+
# UI name: [Contact abandoned][68]
|
9899
10024
|
#
|
9900
10025
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
9901
10026
|
#
|
@@ -9908,7 +10033,7 @@ module Aws::Connect
|
|
9908
10033
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9909
10034
|
# `LT` (for "Less than").
|
9910
10035
|
#
|
9911
|
-
# UI name: [Contacts abandoned in X seconds][
|
10036
|
+
# UI name: [Contacts abandoned in X seconds][69]
|
9912
10037
|
#
|
9913
10038
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
9914
10039
|
#
|
@@ -9921,7 +10046,7 @@ module Aws::Connect
|
|
9921
10046
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9922
10047
|
# `LT` (for "Less than").
|
9923
10048
|
#
|
9924
|
-
# UI name: [Contacts answered in X seconds][
|
10049
|
+
# UI name: [Contacts answered in X seconds][70]
|
9925
10050
|
#
|
9926
10051
|
# SUM\_CONTACT\_FLOW\_TIME
|
9927
10052
|
#
|
@@ -9930,7 +10055,7 @@ module Aws::Connect
|
|
9930
10055
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9931
10056
|
# Agent, Agent Hierarchy, Q in Connect
|
9932
10057
|
#
|
9933
|
-
# UI name: [Contact flow time][
|
10058
|
+
# UI name: [Contact flow time][71]
|
9934
10059
|
#
|
9935
10060
|
# SUM\_CONTACT\_TIME\_AGENT
|
9936
10061
|
#
|
@@ -9939,7 +10064,7 @@ module Aws::Connect
|
|
9939
10064
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
9940
10065
|
# Hierarchy
|
9941
10066
|
#
|
9942
|
-
# UI name: [Agent on contact time][
|
10067
|
+
# UI name: [Agent on contact time][72]
|
9943
10068
|
#
|
9944
10069
|
# SUM\_CONTACTS\_DISCONNECTED
|
9945
10070
|
#
|
@@ -9951,7 +10076,7 @@ module Aws::Connect
|
|
9951
10076
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9952
10077
|
# Q in Connect
|
9953
10078
|
#
|
9954
|
-
# UI name: [Contact disconnected][
|
10079
|
+
# UI name: [Contact disconnected][73]
|
9955
10080
|
#
|
9956
10081
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
9957
10082
|
#
|
@@ -9960,7 +10085,7 @@ module Aws::Connect
|
|
9960
10085
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
9961
10086
|
# Hierarchy
|
9962
10087
|
#
|
9963
|
-
# UI name: [Error status time][
|
10088
|
+
# UI name: [Error status time][74]
|
9964
10089
|
#
|
9965
10090
|
# SUM\_HANDLE\_TIME
|
9966
10091
|
#
|
@@ -9969,7 +10094,7 @@ module Aws::Connect
|
|
9969
10094
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9970
10095
|
# Agent, Agent Hierarchy, Q in Connect
|
9971
10096
|
#
|
9972
|
-
# UI name: [Contact handle time][
|
10097
|
+
# UI name: [Contact handle time][75]
|
9973
10098
|
#
|
9974
10099
|
# SUM\_HOLD\_TIME
|
9975
10100
|
#
|
@@ -9978,7 +10103,7 @@ module Aws::Connect
|
|
9978
10103
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9979
10104
|
# Agent, Agent Hierarchy, Q in Connect
|
9980
10105
|
#
|
9981
|
-
# UI name: [Customer hold time][
|
10106
|
+
# UI name: [Customer hold time][76]
|
9982
10107
|
#
|
9983
10108
|
# SUM\_IDLE\_TIME\_AGENT
|
9984
10109
|
#
|
@@ -9987,7 +10112,7 @@ module Aws::Connect
|
|
9987
10112
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
9988
10113
|
# Hierarchy
|
9989
10114
|
#
|
9990
|
-
# UI name: [Agent idle time][
|
10115
|
+
# UI name: [Agent idle time][77]
|
9991
10116
|
#
|
9992
10117
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
9993
10118
|
#
|
@@ -9996,7 +10121,7 @@ module Aws::Connect
|
|
9996
10121
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9997
10122
|
# Agent, Agent Hierarchy, Q in Connect
|
9998
10123
|
#
|
9999
|
-
# UI name: [Agent interaction and hold time][
|
10124
|
+
# UI name: [Agent interaction and hold time][78]
|
10000
10125
|
#
|
10001
10126
|
# SUM\_INTERACTION\_TIME
|
10002
10127
|
#
|
@@ -10005,7 +10130,7 @@ module Aws::Connect
|
|
10005
10130
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10006
10131
|
# Agent, Agent Hierarchy
|
10007
10132
|
#
|
10008
|
-
# UI name: [Agent interaction time][
|
10133
|
+
# UI name: [Agent interaction time][79]
|
10009
10134
|
#
|
10010
10135
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
10011
10136
|
#
|
@@ -10014,7 +10139,7 @@ module Aws::Connect
|
|
10014
10139
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
10015
10140
|
# Hierarchy
|
10016
10141
|
#
|
10017
|
-
# UI name: [Non-Productive Time][
|
10142
|
+
# UI name: [Non-Productive Time][80]
|
10018
10143
|
#
|
10019
10144
|
# SUM\_ONLINE\_TIME\_AGENT
|
10020
10145
|
#
|
@@ -10023,7 +10148,7 @@ module Aws::Connect
|
|
10023
10148
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
10024
10149
|
# Hierarchy
|
10025
10150
|
#
|
10026
|
-
# UI name: [Online time][
|
10151
|
+
# UI name: [Online time][81]
|
10027
10152
|
#
|
10028
10153
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
10029
10154
|
#
|
@@ -10032,7 +10157,7 @@ module Aws::Connect
|
|
10032
10157
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10033
10158
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
10034
10159
|
#
|
10035
|
-
# UI name: [Callback attempts][
|
10160
|
+
# UI name: [Callback attempts][82]
|
10036
10161
|
#
|
10037
10162
|
#
|
10038
10163
|
#
|
@@ -10082,41 +10207,42 @@ module Aws::Connect
|
|
10082
10207
|
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical
|
10083
10208
|
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical
|
10084
10209
|
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical
|
10085
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10086
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10087
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-
|
10088
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10089
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10090
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-
|
10091
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10092
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-
|
10093
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10094
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10095
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10096
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10097
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10098
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10099
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10100
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10101
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-
|
10102
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10103
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10104
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10105
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10106
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-
|
10107
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10108
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10109
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10110
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-
|
10111
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10112
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10113
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10114
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10115
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-
|
10116
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
|
10117
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10118
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10119
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10210
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-removed-historical
|
10211
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical
|
10212
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical
|
10213
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical
|
10214
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#current-cases-historical
|
10215
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical
|
10216
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-started-historical
|
10217
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-flow-time-historical
|
10218
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical
|
10219
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#minimum-flow-time-historical
|
10220
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-first-contact-historical
|
10221
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-percentage-historical
|
10222
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical
|
10223
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical
|
10224
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical
|
10225
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical
|
10226
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-reopened-historical
|
10227
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historical
|
10228
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical
|
10229
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical
|
10230
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time
|
10231
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical
|
10232
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical
|
10233
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical
|
10234
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical
|
10235
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical
|
10236
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical
|
10237
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical
|
10238
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical
|
10239
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical
|
10240
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-idle-time-historica
|
10241
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical
|
10242
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
|
10243
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#npt-historical
|
10244
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#online-time-historical
|
10245
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical
|
10120
10246
|
# @return [Array<Types::MetricV2>]
|
10121
10247
|
#
|
10122
10248
|
# @!attribute [rw] next_token
|
@@ -11841,6 +11967,27 @@ module Aws::Connect
|
|
11841
11967
|
include Aws::Structure
|
11842
11968
|
end
|
11843
11969
|
|
11970
|
+
# A leaf node condition which can be used to specify a List condition to
|
11971
|
+
# search users with attributes included in Lists like Proficiencies.
|
11972
|
+
#
|
11973
|
+
# @!attribute [rw] target_list_type
|
11974
|
+
# The type of target list that will be used to filter the users.
|
11975
|
+
# @return [String]
|
11976
|
+
#
|
11977
|
+
# @!attribute [rw] conditions
|
11978
|
+
# A list of Condition objects which would be applied together with an
|
11979
|
+
# AND condition.
|
11980
|
+
# @return [Array<Types::Condition>]
|
11981
|
+
#
|
11982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListCondition AWS API Documentation
|
11983
|
+
#
|
11984
|
+
class ListCondition < Struct.new(
|
11985
|
+
:target_list_type,
|
11986
|
+
:conditions)
|
11987
|
+
SENSITIVE = []
|
11988
|
+
include Aws::Structure
|
11989
|
+
end
|
11990
|
+
|
11844
11991
|
# @!attribute [rw] instance_id
|
11845
11992
|
# The identifier of the Amazon Connect instance. You can [find the
|
11846
11993
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -14469,6 +14616,41 @@ module Aws::Connect
|
|
14469
14616
|
include Aws::Structure
|
14470
14617
|
end
|
14471
14618
|
|
14619
|
+
# A leaf node condition which can be used to specify a numeric
|
14620
|
+
# condition.
|
14621
|
+
#
|
14622
|
+
# <note markdown="1"> The currently supported value for `FieldName` is `limit`.
|
14623
|
+
#
|
14624
|
+
# </note>
|
14625
|
+
#
|
14626
|
+
# @!attribute [rw] field_name
|
14627
|
+
# The name of the field in the number condition.
|
14628
|
+
# @return [String]
|
14629
|
+
#
|
14630
|
+
# @!attribute [rw] min_value
|
14631
|
+
# The minValue to be used while evaluating the number condition.
|
14632
|
+
# @return [Integer]
|
14633
|
+
#
|
14634
|
+
# @!attribute [rw] max_value
|
14635
|
+
# The maxValue to be used while evaluating the number condition.
|
14636
|
+
# @return [Integer]
|
14637
|
+
#
|
14638
|
+
# @!attribute [rw] comparison_type
|
14639
|
+
# The type of comparison to be made when evaluating the number
|
14640
|
+
# condition.
|
14641
|
+
# @return [String]
|
14642
|
+
#
|
14643
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/NumberCondition AWS API Documentation
|
14644
|
+
#
|
14645
|
+
class NumberCondition < Struct.new(
|
14646
|
+
:field_name,
|
14647
|
+
:min_value,
|
14648
|
+
:max_value,
|
14649
|
+
:comparison_type)
|
14650
|
+
SENSITIVE = []
|
14651
|
+
include Aws::Structure
|
14652
|
+
end
|
14653
|
+
|
14472
14654
|
# Information about a reference when the `referenceType` is `NUMBER`.
|
14473
14655
|
# Otherwise, null.
|
14474
14656
|
#
|
@@ -14924,11 +15106,6 @@ module Aws::Connect
|
|
14924
15106
|
# @!attribute [rw] string_condition
|
14925
15107
|
# A leaf node condition which can be used to specify a string
|
14926
15108
|
# condition.
|
14927
|
-
#
|
14928
|
-
# <note markdown="1"> The currently supported values for `FieldName` are `name` and
|
14929
|
-
# `description`.
|
14930
|
-
#
|
14931
|
-
# </note>
|
14932
15109
|
# @return [Types::StringCondition]
|
14933
15110
|
#
|
14934
15111
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PredefinedAttributeSearchCriteria AWS API Documentation
|
@@ -16993,6 +17170,64 @@ module Aws::Connect
|
|
16993
17170
|
include Aws::Structure
|
16994
17171
|
end
|
16995
17172
|
|
17173
|
+
# @!attribute [rw] instance_id
|
17174
|
+
# The identifier of the Amazon Connect instance. You can find the
|
17175
|
+
# instanceId in the ARN of the instance.
|
17176
|
+
# @return [String]
|
17177
|
+
#
|
17178
|
+
# @!attribute [rw] next_token
|
17179
|
+
# The token for the next set of results. Use the value returned in the
|
17180
|
+
# previous response in the next request to retrieve the next set of
|
17181
|
+
# results.
|
17182
|
+
# @return [String]
|
17183
|
+
#
|
17184
|
+
# @!attribute [rw] max_results
|
17185
|
+
# The maximum number of results to return per page.
|
17186
|
+
# @return [Integer]
|
17187
|
+
#
|
17188
|
+
# @!attribute [rw] search_filter
|
17189
|
+
# Filters to be applied to search results.
|
17190
|
+
# @return [Types::AgentStatusSearchFilter]
|
17191
|
+
#
|
17192
|
+
# @!attribute [rw] search_criteria
|
17193
|
+
# The search criteria to be used to return agent statuses.
|
17194
|
+
# @return [Types::AgentStatusSearchCriteria]
|
17195
|
+
#
|
17196
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchAgentStatusesRequest AWS API Documentation
|
17197
|
+
#
|
17198
|
+
class SearchAgentStatusesRequest < Struct.new(
|
17199
|
+
:instance_id,
|
17200
|
+
:next_token,
|
17201
|
+
:max_results,
|
17202
|
+
:search_filter,
|
17203
|
+
:search_criteria)
|
17204
|
+
SENSITIVE = []
|
17205
|
+
include Aws::Structure
|
17206
|
+
end
|
17207
|
+
|
17208
|
+
# @!attribute [rw] agent_statuses
|
17209
|
+
# The search criteria to be used to return agent statuses.
|
17210
|
+
# @return [Array<Types::AgentStatus>]
|
17211
|
+
#
|
17212
|
+
# @!attribute [rw] next_token
|
17213
|
+
# If there are additional results, this is the token for the next set
|
17214
|
+
# of results.
|
17215
|
+
# @return [String]
|
17216
|
+
#
|
17217
|
+
# @!attribute [rw] approximate_total_count
|
17218
|
+
# The total number of agent statuses which matched your search query.
|
17219
|
+
# @return [Integer]
|
17220
|
+
#
|
17221
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchAgentStatusesResponse AWS API Documentation
|
17222
|
+
#
|
17223
|
+
class SearchAgentStatusesResponse < Struct.new(
|
17224
|
+
:agent_statuses,
|
17225
|
+
:next_token,
|
17226
|
+
:approximate_total_count)
|
17227
|
+
SENSITIVE = []
|
17228
|
+
include Aws::Structure
|
17229
|
+
end
|
17230
|
+
|
16996
17231
|
# @!attribute [rw] target_arn
|
16997
17232
|
# The Amazon Resource Name (ARN) for Amazon Connect instances or
|
16998
17233
|
# traffic distribution groups that phone number inbound traffic is
|
@@ -17663,6 +17898,24 @@ module Aws::Connect
|
|
17663
17898
|
# The list of resource types to be used to search tags from. If not
|
17664
17899
|
# provided or if any empty list is provided, this API will search from
|
17665
17900
|
# all supported resource types.
|
17901
|
+
#
|
17902
|
+
# **Supported resource types**
|
17903
|
+
#
|
17904
|
+
# * AGENT
|
17905
|
+
#
|
17906
|
+
# * ROUTING\_PROFILE
|
17907
|
+
#
|
17908
|
+
# * STANDARD\_QUEUE
|
17909
|
+
#
|
17910
|
+
# * SECURITY\_PROFILE
|
17911
|
+
#
|
17912
|
+
# * OPERATING\_HOURS
|
17913
|
+
#
|
17914
|
+
# * PROMPT
|
17915
|
+
#
|
17916
|
+
# * CONTACT\_FLOW
|
17917
|
+
#
|
17918
|
+
# * FLOW\_MODULE
|
17666
17919
|
# @return [Array<String>]
|
17667
17920
|
#
|
17668
17921
|
# @!attribute [rw] next_token
|
@@ -17852,6 +18105,65 @@ module Aws::Connect
|
|
17852
18105
|
include Aws::Structure
|
17853
18106
|
end
|
17854
18107
|
|
18108
|
+
# @!attribute [rw] instance_id
|
18109
|
+
# The identifier of the Amazon Connect instance. You can find the
|
18110
|
+
# instanceId in the ARN of the instance.
|
18111
|
+
# @return [String]
|
18112
|
+
#
|
18113
|
+
# @!attribute [rw] next_token
|
18114
|
+
# The token for the next set of results. Use the value returned in the
|
18115
|
+
# previous response in the next request to retrieve the next set of
|
18116
|
+
# results.
|
18117
|
+
# @return [String]
|
18118
|
+
#
|
18119
|
+
# @!attribute [rw] max_results
|
18120
|
+
# The maximum number of results to return per page.
|
18121
|
+
# @return [Integer]
|
18122
|
+
#
|
18123
|
+
# @!attribute [rw] search_filter
|
18124
|
+
# Filters to be applied to search results.
|
18125
|
+
# @return [Types::UserHierarchyGroupSearchFilter]
|
18126
|
+
#
|
18127
|
+
# @!attribute [rw] search_criteria
|
18128
|
+
# The search criteria to be used to return UserHierarchyGroups.
|
18129
|
+
# @return [Types::UserHierarchyGroupSearchCriteria]
|
18130
|
+
#
|
18131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchUserHierarchyGroupsRequest AWS API Documentation
|
18132
|
+
#
|
18133
|
+
class SearchUserHierarchyGroupsRequest < Struct.new(
|
18134
|
+
:instance_id,
|
18135
|
+
:next_token,
|
18136
|
+
:max_results,
|
18137
|
+
:search_filter,
|
18138
|
+
:search_criteria)
|
18139
|
+
SENSITIVE = []
|
18140
|
+
include Aws::Structure
|
18141
|
+
end
|
18142
|
+
|
18143
|
+
# @!attribute [rw] user_hierarchy_groups
|
18144
|
+
# Information about the userHierarchyGroups.
|
18145
|
+
# @return [Array<Types::HierarchyGroup>]
|
18146
|
+
#
|
18147
|
+
# @!attribute [rw] next_token
|
18148
|
+
# If there are additional results, this is the token for the next set
|
18149
|
+
# of results.
|
18150
|
+
# @return [String]
|
18151
|
+
#
|
18152
|
+
# @!attribute [rw] approximate_total_count
|
18153
|
+
# The total number of userHierarchyGroups which matched your search
|
18154
|
+
# query.
|
18155
|
+
# @return [Integer]
|
18156
|
+
#
|
18157
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchUserHierarchyGroupsResponse AWS API Documentation
|
18158
|
+
#
|
18159
|
+
class SearchUserHierarchyGroupsResponse < Struct.new(
|
18160
|
+
:user_hierarchy_groups,
|
18161
|
+
:next_token,
|
18162
|
+
:approximate_total_count)
|
18163
|
+
SENSITIVE = []
|
18164
|
+
include Aws::Structure
|
18165
|
+
end
|
18166
|
+
|
17855
18167
|
# @!attribute [rw] instance_id
|
17856
18168
|
# The identifier of the Amazon Connect instance. You can [find the
|
17857
18169
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -18033,7 +18345,7 @@ module Aws::Connect
|
|
18033
18345
|
class SearchableContactAttributesCriteria < Struct.new(
|
18034
18346
|
:key,
|
18035
18347
|
:values)
|
18036
|
-
SENSITIVE = [:key]
|
18348
|
+
SENSITIVE = [:key, :values]
|
18037
18349
|
include Aws::Structure
|
18038
18350
|
end
|
18039
18351
|
|
@@ -18160,11 +18472,6 @@ module Aws::Connect
|
|
18160
18472
|
# @!attribute [rw] string_condition
|
18161
18473
|
# A leaf node condition which can be used to specify a string
|
18162
18474
|
# condition.
|
18163
|
-
#
|
18164
|
-
# <note markdown="1"> The currently supported values for `FieldName` are `name` and
|
18165
|
-
# `description`.
|
18166
|
-
#
|
18167
|
-
# </note>
|
18168
18475
|
# @return [Types::StringCondition]
|
18169
18476
|
#
|
18170
18477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfileSearchCriteria AWS API Documentation
|
@@ -19465,11 +19772,6 @@ module Aws::Connect
|
|
19465
19772
|
|
19466
19773
|
# A leaf node condition which can be used to specify a string condition.
|
19467
19774
|
#
|
19468
|
-
# <note markdown="1"> The currently supported values for `FieldName` are `name` and
|
19469
|
-
# `description`.
|
19470
|
-
#
|
19471
|
-
# </note>
|
19472
|
-
#
|
19473
19775
|
# @!attribute [rw] field_name
|
19474
19776
|
# The name of the field in the string condition.
|
19475
19777
|
# @return [String]
|
@@ -20253,7 +20555,7 @@ module Aws::Connect
|
|
20253
20555
|
:participant_role,
|
20254
20556
|
:search_text,
|
20255
20557
|
:match_type)
|
20256
|
-
SENSITIVE = []
|
20558
|
+
SENSITIVE = [:search_text]
|
20257
20559
|
include Aws::Structure
|
20258
20560
|
end
|
20259
20561
|
|
@@ -22509,6 +22811,59 @@ module Aws::Connect
|
|
22509
22811
|
include Aws::Structure
|
22510
22812
|
end
|
22511
22813
|
|
22814
|
+
# The search criteria to be used to return userHierarchyGroup.
|
22815
|
+
#
|
22816
|
+
# @!attribute [rw] or_conditions
|
22817
|
+
# A list of conditions which would be applied together with an OR
|
22818
|
+
# condition.
|
22819
|
+
# @return [Array<Types::UserHierarchyGroupSearchCriteria>]
|
22820
|
+
#
|
22821
|
+
# @!attribute [rw] and_conditions
|
22822
|
+
# A list of conditions which would be applied together with an AND
|
22823
|
+
# condition.
|
22824
|
+
# @return [Array<Types::UserHierarchyGroupSearchCriteria>]
|
22825
|
+
#
|
22826
|
+
# @!attribute [rw] string_condition
|
22827
|
+
# A leaf node condition which can be used to specify a string
|
22828
|
+
# condition.
|
22829
|
+
#
|
22830
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name`,
|
22831
|
+
# `parentId`, `levelId`, and `resourceID`.
|
22832
|
+
#
|
22833
|
+
# </note>
|
22834
|
+
# @return [Types::StringCondition]
|
22835
|
+
#
|
22836
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserHierarchyGroupSearchCriteria AWS API Documentation
|
22837
|
+
#
|
22838
|
+
class UserHierarchyGroupSearchCriteria < Struct.new(
|
22839
|
+
:or_conditions,
|
22840
|
+
:and_conditions,
|
22841
|
+
:string_condition)
|
22842
|
+
SENSITIVE = []
|
22843
|
+
include Aws::Structure
|
22844
|
+
end
|
22845
|
+
|
22846
|
+
# Filters to be applied to search results.
|
22847
|
+
#
|
22848
|
+
# @!attribute [rw] attribute_filter
|
22849
|
+
# An object that can be used to specify Tag conditions inside the
|
22850
|
+
# SearchFilter. This accepts an OR or AND (List of List) input where:
|
22851
|
+
#
|
22852
|
+
# * The top level list specifies conditions that need to be applied
|
22853
|
+
# with `OR` operator.
|
22854
|
+
#
|
22855
|
+
# * The inner list specifies conditions that need to be applied with
|
22856
|
+
# `AND` operator.
|
22857
|
+
# @return [Types::ControlPlaneAttributeFilter]
|
22858
|
+
#
|
22859
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserHierarchyGroupSearchFilter AWS API Documentation
|
22860
|
+
#
|
22861
|
+
class UserHierarchyGroupSearchFilter < Struct.new(
|
22862
|
+
:attribute_filter)
|
22863
|
+
SENSITIVE = []
|
22864
|
+
include Aws::Structure
|
22865
|
+
end
|
22866
|
+
|
22512
22867
|
# Contains information about the identity of a user.
|
22513
22868
|
#
|
22514
22869
|
# <note markdown="1"> For Amazon Connect instances that are created with the
|
@@ -22744,6 +23099,12 @@ module Aws::Connect
|
|
22744
23099
|
# `ResourceId`.
|
22745
23100
|
# @return [Types::StringCondition]
|
22746
23101
|
#
|
23102
|
+
# @!attribute [rw] list_condition
|
23103
|
+
# A leaf node condition which can be used to specify a List condition
|
23104
|
+
# to search users with attributes included in Lists like
|
23105
|
+
# Proficiencies.
|
23106
|
+
# @return [Types::ListCondition]
|
23107
|
+
#
|
22747
23108
|
# @!attribute [rw] hierarchy_group_condition
|
22748
23109
|
# A leaf node condition which can be used to specify a hierarchy group
|
22749
23110
|
# condition.
|
@@ -22755,6 +23116,7 @@ module Aws::Connect
|
|
22755
23116
|
:or_conditions,
|
22756
23117
|
:and_conditions,
|
22757
23118
|
:string_condition,
|
23119
|
+
:list_condition,
|
22758
23120
|
:hierarchy_group_condition)
|
22759
23121
|
SENSITIVE = []
|
22760
23122
|
include Aws::Structure
|
@@ -23002,7 +23364,7 @@ module Aws::Connect
|
|
23002
23364
|
:input_schema,
|
23003
23365
|
:template,
|
23004
23366
|
:actions)
|
23005
|
-
SENSITIVE = [:input_schema]
|
23367
|
+
SENSITIVE = [:input_schema, :actions]
|
23006
23368
|
include Aws::Structure
|
23007
23369
|
end
|
23008
23370
|
|
@@ -23023,7 +23385,7 @@ module Aws::Connect
|
|
23023
23385
|
class ViewInputContent < Struct.new(
|
23024
23386
|
:template,
|
23025
23387
|
:actions)
|
23026
|
-
SENSITIVE = []
|
23388
|
+
SENSITIVE = [:actions]
|
23027
23389
|
include Aws::Structure
|
23028
23390
|
end
|
23029
23391
|
|