aws-sdk-connect 1.142.0 → 1.145.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +906 -34
- data/lib/aws-sdk-connect/client_api.rb +630 -0
- data/lib/aws-sdk-connect/endpoints.rb +224 -0
- data/lib/aws-sdk-connect/errors.rb +16 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +32 -0
- data/lib/aws-sdk-connect/types.rb +1333 -48
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
@@ -155,6 +155,43 @@ module Aws::Connect
|
|
155
155
|
include Aws::Structure
|
156
156
|
end
|
157
157
|
|
158
|
+
# A structure that defines agent hierarchy group levels which can be
|
159
|
+
# used to filter search results. Important: Agent hierarchy group level
|
160
|
+
# information in search result is a snapshot, it does not represent
|
161
|
+
# current agent hierarchy who handled the contact.
|
162
|
+
#
|
163
|
+
# @!attribute [rw] l1_ids
|
164
|
+
# The identifiers for level 1 hierarchy groups.
|
165
|
+
# @return [Array<String>]
|
166
|
+
#
|
167
|
+
# @!attribute [rw] l2_ids
|
168
|
+
# The identifiers for level 2 hierarchy groups.
|
169
|
+
# @return [Array<String>]
|
170
|
+
#
|
171
|
+
# @!attribute [rw] l3_ids
|
172
|
+
# The identifiers for level 3 hierarchy groups.
|
173
|
+
# @return [Array<String>]
|
174
|
+
#
|
175
|
+
# @!attribute [rw] l4_ids
|
176
|
+
# The identifiers for level 4 hierarchy groups.
|
177
|
+
# @return [Array<String>]
|
178
|
+
#
|
179
|
+
# @!attribute [rw] l5_ids
|
180
|
+
# The identifiers for level 5 hierarchy groups.
|
181
|
+
# @return [Array<String>]
|
182
|
+
#
|
183
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentHierarchyGroups AWS API Documentation
|
184
|
+
#
|
185
|
+
class AgentHierarchyGroups < Struct.new(
|
186
|
+
:l1_ids,
|
187
|
+
:l2_ids,
|
188
|
+
:l3_ids,
|
189
|
+
:l4_ids,
|
190
|
+
:l5_ids)
|
191
|
+
SENSITIVE = []
|
192
|
+
include Aws::Structure
|
193
|
+
end
|
194
|
+
|
158
195
|
# Information about the agent who accepted the contact.
|
159
196
|
#
|
160
197
|
# @!attribute [rw] id
|
@@ -165,11 +202,16 @@ module Aws::Connect
|
|
165
202
|
# The timestamp when the contact was connected to the agent.
|
166
203
|
# @return [Time]
|
167
204
|
#
|
205
|
+
# @!attribute [rw] agent_pause_duration_in_seconds
|
206
|
+
# Agent pause duration for a contact in seconds.
|
207
|
+
# @return [Integer]
|
208
|
+
#
|
168
209
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentInfo AWS API Documentation
|
169
210
|
#
|
170
211
|
class AgentInfo < Struct.new(
|
171
212
|
:id,
|
172
|
-
:connected_to_agent_timestamp
|
213
|
+
:connected_to_agent_timestamp,
|
214
|
+
:agent_pause_duration_in_seconds)
|
173
215
|
SENSITIVE = []
|
174
216
|
include Aws::Structure
|
175
217
|
end
|
@@ -206,7 +248,7 @@ module Aws::Connect
|
|
206
248
|
#
|
207
249
|
# @!attribute [rw] tags
|
208
250
|
# The tags used to organize, track, or control access for this
|
209
|
-
# resource. For example, \\\{ "
|
251
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
210
252
|
# "key2":"value2"\\} \\}.
|
211
253
|
# @return [Hash<String,String>]
|
212
254
|
#
|
@@ -827,6 +869,29 @@ module Aws::Connect
|
|
827
869
|
#
|
828
870
|
class AssociateTrafficDistributionGroupUserResponse < Aws::EmptyStructure; end
|
829
871
|
|
872
|
+
# @!attribute [rw] instance_id
|
873
|
+
# The identifier of the Amazon Connect instance. You can find the
|
874
|
+
# instance ID in the Amazon Resource Name (ARN of the instance).
|
875
|
+
# @return [String]
|
876
|
+
#
|
877
|
+
# @!attribute [rw] user_id
|
878
|
+
# The identifier of the user account.
|
879
|
+
# @return [String]
|
880
|
+
#
|
881
|
+
# @!attribute [rw] user_proficiencies
|
882
|
+
# The proficiencies to associate with the user.
|
883
|
+
# @return [Array<Types::UserProficiency>]
|
884
|
+
#
|
885
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateUserProficienciesRequest AWS API Documentation
|
886
|
+
#
|
887
|
+
class AssociateUserProficienciesRequest < Struct.new(
|
888
|
+
:instance_id,
|
889
|
+
:user_id,
|
890
|
+
:user_proficiencies)
|
891
|
+
SENSITIVE = []
|
892
|
+
include Aws::Structure
|
893
|
+
end
|
894
|
+
|
830
895
|
# Information about a reference when the `referenceType` is
|
831
896
|
# `ATTACHMENT`. Otherwise, null.
|
832
897
|
#
|
@@ -1286,7 +1351,7 @@ module Aws::Connect
|
|
1286
1351
|
#
|
1287
1352
|
# @!attribute [rw] tags
|
1288
1353
|
# The tags used to organize, track, or control access for this
|
1289
|
-
# resource. For example, \\\{ "
|
1354
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
1290
1355
|
# "key2":"value2"\\} \\}.
|
1291
1356
|
# @return [Hash<String,String>]
|
1292
1357
|
#
|
@@ -1383,7 +1448,7 @@ module Aws::Connect
|
|
1383
1448
|
#
|
1384
1449
|
# @!attribute [rw] tags
|
1385
1450
|
# The tags used to organize, track, or control access for this
|
1386
|
-
# resource. For example, \\\{ "
|
1451
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
1387
1452
|
# "key2":"value2"\\} \\}.
|
1388
1453
|
# @return [Hash<String,String>]
|
1389
1454
|
#
|
@@ -1447,6 +1512,20 @@ module Aws::Connect
|
|
1447
1512
|
include Aws::Structure
|
1448
1513
|
end
|
1449
1514
|
|
1515
|
+
# Operation cannot be performed at this time as there is a conflict with
|
1516
|
+
# another operation or contact state.
|
1517
|
+
#
|
1518
|
+
# @!attribute [rw] message
|
1519
|
+
# @return [String]
|
1520
|
+
#
|
1521
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ConflictException AWS API Documentation
|
1522
|
+
#
|
1523
|
+
class ConflictException < Struct.new(
|
1524
|
+
:message)
|
1525
|
+
SENSITIVE = []
|
1526
|
+
include Aws::Structure
|
1527
|
+
end
|
1528
|
+
|
1450
1529
|
# Information required to join the call.
|
1451
1530
|
#
|
1452
1531
|
# @!attribute [rw] attendee
|
@@ -1531,6 +1610,22 @@ module Aws::Connect
|
|
1531
1610
|
# The timestamp when contact was last updated.
|
1532
1611
|
# @return [Time]
|
1533
1612
|
#
|
1613
|
+
# @!attribute [rw] last_paused_timestamp
|
1614
|
+
# The timestamp when the contact was last paused.
|
1615
|
+
# @return [Time]
|
1616
|
+
#
|
1617
|
+
# @!attribute [rw] last_resumed_timestamp
|
1618
|
+
# The timestamp when the contact was last resumed.
|
1619
|
+
# @return [Time]
|
1620
|
+
#
|
1621
|
+
# @!attribute [rw] total_pause_count
|
1622
|
+
# Total pause count for a contact.
|
1623
|
+
# @return [Integer]
|
1624
|
+
#
|
1625
|
+
# @!attribute [rw] total_pause_duration_in_seconds
|
1626
|
+
# Total pause duration for a contact in seconds.
|
1627
|
+
# @return [Integer]
|
1628
|
+
#
|
1534
1629
|
# @!attribute [rw] scheduled_timestamp
|
1535
1630
|
# The timestamp, in Unix epoch time format, at which to start running
|
1536
1631
|
# the inbound flow.
|
@@ -1548,6 +1643,26 @@ module Aws::Connect
|
|
1548
1643
|
# Information about Amazon Connect Wisdom.
|
1549
1644
|
# @return [Types::WisdomInfo]
|
1550
1645
|
#
|
1646
|
+
# @!attribute [rw] queue_time_adjustment_seconds
|
1647
|
+
# An integer that represents the queue time adjust to be applied to
|
1648
|
+
# the contact, in seconds (longer / larger queue time are routed
|
1649
|
+
# preferentially). Cannot be specified if the QueuePriority is
|
1650
|
+
# specified. Must be statically defined and a valid integer value.
|
1651
|
+
# @return [Integer]
|
1652
|
+
#
|
1653
|
+
# @!attribute [rw] queue_priority
|
1654
|
+
# An integer that represents the queue priority to be applied to the
|
1655
|
+
# contact (lower priorities are routed preferentially). Cannot be
|
1656
|
+
# specified if the QueueTimeAdjustmentSeconds is specified. Must be
|
1657
|
+
# statically defined, must be larger than zero, and a valid integer
|
1658
|
+
# value. Default Value is 5.
|
1659
|
+
# @return [Integer]
|
1660
|
+
#
|
1661
|
+
# @!attribute [rw] tags
|
1662
|
+
# Tags associated with the contact. This contains both Amazon Web
|
1663
|
+
# Services generated and user-defined tags.
|
1664
|
+
# @return [Hash<String,String>]
|
1665
|
+
#
|
1551
1666
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Contact AWS API Documentation
|
1552
1667
|
#
|
1553
1668
|
class Contact < Struct.new(
|
@@ -1564,9 +1679,32 @@ module Aws::Connect
|
|
1564
1679
|
:initiation_timestamp,
|
1565
1680
|
:disconnect_timestamp,
|
1566
1681
|
:last_update_timestamp,
|
1682
|
+
:last_paused_timestamp,
|
1683
|
+
:last_resumed_timestamp,
|
1684
|
+
:total_pause_count,
|
1685
|
+
:total_pause_duration_in_seconds,
|
1567
1686
|
:scheduled_timestamp,
|
1568
1687
|
:related_contact_id,
|
1569
|
-
:wisdom_info
|
1688
|
+
:wisdom_info,
|
1689
|
+
:queue_time_adjustment_seconds,
|
1690
|
+
:queue_priority,
|
1691
|
+
:tags)
|
1692
|
+
SENSITIVE = []
|
1693
|
+
include Aws::Structure
|
1694
|
+
end
|
1695
|
+
|
1696
|
+
# A structure that defines filters can be used to search within outputs
|
1697
|
+
# analyzed by Amazon Connect Contact Lens in a contact.
|
1698
|
+
#
|
1699
|
+
# @!attribute [rw] transcript
|
1700
|
+
# A structure that defines filters can be used to search with text
|
1701
|
+
# within an Amazon Connect Contact Lens analyzed transcript.
|
1702
|
+
# @return [Types::Transcript]
|
1703
|
+
#
|
1704
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactAnalysis AWS API Documentation
|
1705
|
+
#
|
1706
|
+
class ContactAnalysis < Struct.new(
|
1707
|
+
:transcript)
|
1570
1708
|
SENSITIVE = []
|
1571
1709
|
include Aws::Structure
|
1572
1710
|
end
|
@@ -1679,7 +1817,7 @@ module Aws::Connect
|
|
1679
1817
|
#
|
1680
1818
|
# @!attribute [rw] tags
|
1681
1819
|
# The tags used to organize, track, or control access for this
|
1682
|
-
# resource. For example, \\\{ "
|
1820
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
1683
1821
|
# "key2":"value2"\\} \\}.
|
1684
1822
|
# @return [Hash<String,String>]
|
1685
1823
|
#
|
@@ -1735,7 +1873,7 @@ module Aws::Connect
|
|
1735
1873
|
#
|
1736
1874
|
# @!attribute [rw] tags
|
1737
1875
|
# The tags used to organize, track, or control access for this
|
1738
|
-
# resource. For example, \\\{ "
|
1876
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
1739
1877
|
# "key2":"value2"\\} \\}.
|
1740
1878
|
# @return [Hash<String,String>]
|
1741
1879
|
#
|
@@ -1852,6 +1990,120 @@ module Aws::Connect
|
|
1852
1990
|
include Aws::Structure
|
1853
1991
|
end
|
1854
1992
|
|
1993
|
+
# Information of returned contact.
|
1994
|
+
#
|
1995
|
+
# @!attribute [rw] arn
|
1996
|
+
# The Amazon Resource Name (ARN) of the contact
|
1997
|
+
# @return [String]
|
1998
|
+
#
|
1999
|
+
# @!attribute [rw] id
|
2000
|
+
# The identifier of the contact summary.
|
2001
|
+
# @return [String]
|
2002
|
+
#
|
2003
|
+
# @!attribute [rw] initial_contact_id
|
2004
|
+
# If this contact is related to other contacts, this is the ID of the
|
2005
|
+
# initial contact.
|
2006
|
+
# @return [String]
|
2007
|
+
#
|
2008
|
+
# @!attribute [rw] previous_contact_id
|
2009
|
+
# If this contact is not the first contact, this is the ID of the
|
2010
|
+
# previous contact.
|
2011
|
+
# @return [String]
|
2012
|
+
#
|
2013
|
+
# @!attribute [rw] initiation_method
|
2014
|
+
# Indicates how the contact was initiated.
|
2015
|
+
# @return [String]
|
2016
|
+
#
|
2017
|
+
# @!attribute [rw] channel
|
2018
|
+
# How the contact reached your contact center.
|
2019
|
+
# @return [String]
|
2020
|
+
#
|
2021
|
+
# @!attribute [rw] queue_info
|
2022
|
+
# If this contact was queued, this contains information about the
|
2023
|
+
# queue.
|
2024
|
+
# @return [Types::ContactSearchSummaryQueueInfo]
|
2025
|
+
#
|
2026
|
+
# @!attribute [rw] agent_info
|
2027
|
+
# Information about the agent who accepted the contact.
|
2028
|
+
# @return [Types::ContactSearchSummaryAgentInfo]
|
2029
|
+
#
|
2030
|
+
# @!attribute [rw] initiation_timestamp
|
2031
|
+
# The date and time this contact was initiated, in UTC time. For
|
2032
|
+
# INBOUND, this is when the contact arrived. For OUTBOUND, this is
|
2033
|
+
# when the agent began dialing. For CALLBACK, this is when the
|
2034
|
+
# callback contact was created. For TRANSFER and QUEUE\_TRANSFER, this
|
2035
|
+
# is when the transfer was initiated. For API, this is when the
|
2036
|
+
# request arrived. For EXTERNAL\_OUTBOUND, this is when the agent
|
2037
|
+
# started dialing the external participant. For MONITOR, this is when
|
2038
|
+
# the supervisor started listening to a contact.
|
2039
|
+
# @return [Time]
|
2040
|
+
#
|
2041
|
+
# @!attribute [rw] disconnect_timestamp
|
2042
|
+
# The timestamp when the customer endpoint disconnected from Amazon
|
2043
|
+
# Connect.
|
2044
|
+
# @return [Time]
|
2045
|
+
#
|
2046
|
+
# @!attribute [rw] scheduled_timestamp
|
2047
|
+
# The timestamp, in Unix epoch time format, at which to start running
|
2048
|
+
# the inbound flow.
|
2049
|
+
# @return [Time]
|
2050
|
+
#
|
2051
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummary AWS API Documentation
|
2052
|
+
#
|
2053
|
+
class ContactSearchSummary < Struct.new(
|
2054
|
+
:arn,
|
2055
|
+
:id,
|
2056
|
+
:initial_contact_id,
|
2057
|
+
:previous_contact_id,
|
2058
|
+
:initiation_method,
|
2059
|
+
:channel,
|
2060
|
+
:queue_info,
|
2061
|
+
:agent_info,
|
2062
|
+
:initiation_timestamp,
|
2063
|
+
:disconnect_timestamp,
|
2064
|
+
:scheduled_timestamp)
|
2065
|
+
SENSITIVE = []
|
2066
|
+
include Aws::Structure
|
2067
|
+
end
|
2068
|
+
|
2069
|
+
# Information about the agent who accepted the contact.
|
2070
|
+
#
|
2071
|
+
# @!attribute [rw] id
|
2072
|
+
# The identifier of the agent who accepted the contact.
|
2073
|
+
# @return [String]
|
2074
|
+
#
|
2075
|
+
# @!attribute [rw] connected_to_agent_timestamp
|
2076
|
+
# The timestamp when the contact was connected to the agent.
|
2077
|
+
# @return [Time]
|
2078
|
+
#
|
2079
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummaryAgentInfo AWS API Documentation
|
2080
|
+
#
|
2081
|
+
class ContactSearchSummaryAgentInfo < Struct.new(
|
2082
|
+
:id,
|
2083
|
+
:connected_to_agent_timestamp)
|
2084
|
+
SENSITIVE = []
|
2085
|
+
include Aws::Structure
|
2086
|
+
end
|
2087
|
+
|
2088
|
+
# If this contact was queued, this contains information about the queue.
|
2089
|
+
#
|
2090
|
+
# @!attribute [rw] id
|
2091
|
+
# The unique identifier for the queue.
|
2092
|
+
# @return [String]
|
2093
|
+
#
|
2094
|
+
# @!attribute [rw] enqueue_timestamp
|
2095
|
+
# The timestamp when the contact was added to the queue.
|
2096
|
+
# @return [Time]
|
2097
|
+
#
|
2098
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummaryQueueInfo AWS API Documentation
|
2099
|
+
#
|
2100
|
+
class ContactSearchSummaryQueueInfo < Struct.new(
|
2101
|
+
:id,
|
2102
|
+
:enqueue_timestamp)
|
2103
|
+
SENSITIVE = []
|
2104
|
+
include Aws::Structure
|
2105
|
+
end
|
2106
|
+
|
1855
2107
|
# An object that can be used to specify Tag conditions inside the
|
1856
2108
|
# `SearchFilter`. This accepts an `OR` of `AND` (List of List) input
|
1857
2109
|
# where:
|
@@ -1913,7 +2165,7 @@ module Aws::Connect
|
|
1913
2165
|
#
|
1914
2166
|
# @!attribute [rw] tags
|
1915
2167
|
# The tags used to organize, track, or control access for this
|
1916
|
-
# resource. For example, \\\{ "
|
2168
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
1917
2169
|
# "key2":"value2"\\} \\}.
|
1918
2170
|
# @return [Hash<String,String>]
|
1919
2171
|
#
|
@@ -1947,6 +2199,25 @@ module Aws::Connect
|
|
1947
2199
|
include Aws::Structure
|
1948
2200
|
end
|
1949
2201
|
|
2202
|
+
# The `CreateCase` action definition.
|
2203
|
+
#
|
2204
|
+
# @!attribute [rw] fields
|
2205
|
+
# An array of objects with `Field ID` and `Value` data.
|
2206
|
+
# @return [Array<Types::FieldValue>]
|
2207
|
+
#
|
2208
|
+
# @!attribute [rw] template_id
|
2209
|
+
# A unique identifier of a template.
|
2210
|
+
# @return [String]
|
2211
|
+
#
|
2212
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateCaseActionDefinition AWS API Documentation
|
2213
|
+
#
|
2214
|
+
class CreateCaseActionDefinition < Struct.new(
|
2215
|
+
:fields,
|
2216
|
+
:template_id)
|
2217
|
+
SENSITIVE = []
|
2218
|
+
include Aws::Structure
|
2219
|
+
end
|
2220
|
+
|
1950
2221
|
# @!attribute [rw] instance_id
|
1951
2222
|
# The identifier of the Amazon Connect instance. You can [find the
|
1952
2223
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -1975,7 +2246,7 @@ module Aws::Connect
|
|
1975
2246
|
#
|
1976
2247
|
# @!attribute [rw] tags
|
1977
2248
|
# The tags used to organize, track, or control access for this
|
1978
|
-
# resource. For example, \\\{ "
|
2249
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
1979
2250
|
# "key2":"value2"\\} \\}.
|
1980
2251
|
# @return [Hash<String,String>]
|
1981
2252
|
#
|
@@ -2057,7 +2328,7 @@ module Aws::Connect
|
|
2057
2328
|
#
|
2058
2329
|
# @!attribute [rw] tags
|
2059
2330
|
# The tags used to organize, track, or control access for this
|
2060
|
-
# resource. For example, \\\{ "
|
2331
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
2061
2332
|
# "key2":"value2"\\} \\}.
|
2062
2333
|
# @return [Hash<String,String>]
|
2063
2334
|
#
|
@@ -2190,7 +2461,7 @@ module Aws::Connect
|
|
2190
2461
|
#
|
2191
2462
|
# @!attribute [rw] tags
|
2192
2463
|
# The tags used to organize, track, or control access for this
|
2193
|
-
# resource. For example, \\\{ "
|
2464
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
2194
2465
|
# "key2":"value2"\\} \\}.
|
2195
2466
|
# @return [Hash<String,String>]
|
2196
2467
|
#
|
@@ -2324,7 +2595,7 @@ module Aws::Connect
|
|
2324
2595
|
#
|
2325
2596
|
# @!attribute [rw] tags
|
2326
2597
|
# The tags used to organize, track, or control access for this
|
2327
|
-
# resource. For example, \\\{ "
|
2598
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
2328
2599
|
# "key2":"value2"\\} \\}.
|
2329
2600
|
# @return [Hash<String,String>]
|
2330
2601
|
#
|
@@ -2549,6 +2820,29 @@ module Aws::Connect
|
|
2549
2820
|
include Aws::Structure
|
2550
2821
|
end
|
2551
2822
|
|
2823
|
+
# @!attribute [rw] instance_id
|
2824
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2825
|
+
# instance ID in the Amazon Resource Name (ARN) of the instance.
|
2826
|
+
# @return [String]
|
2827
|
+
#
|
2828
|
+
# @!attribute [rw] name
|
2829
|
+
# The name of the predefined attribute.
|
2830
|
+
# @return [String]
|
2831
|
+
#
|
2832
|
+
# @!attribute [rw] values
|
2833
|
+
# The values of the predefined attribute.
|
2834
|
+
# @return [Types::PredefinedAttributeValues]
|
2835
|
+
#
|
2836
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreatePredefinedAttributeRequest AWS API Documentation
|
2837
|
+
#
|
2838
|
+
class CreatePredefinedAttributeRequest < Struct.new(
|
2839
|
+
:instance_id,
|
2840
|
+
:name,
|
2841
|
+
:values)
|
2842
|
+
SENSITIVE = []
|
2843
|
+
include Aws::Structure
|
2844
|
+
end
|
2845
|
+
|
2552
2846
|
# @!attribute [rw] instance_id
|
2553
2847
|
# The identifier of the Amazon Connect instance. You can [find the
|
2554
2848
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -2578,7 +2872,7 @@ module Aws::Connect
|
|
2578
2872
|
#
|
2579
2873
|
# @!attribute [rw] tags
|
2580
2874
|
# The tags used to organize, track, or control access for this
|
2581
|
-
# resource. For example, \\\{ "
|
2875
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
2582
2876
|
# "key2":"value2"\\} \\}.
|
2583
2877
|
# @return [Hash<String,String>]
|
2584
2878
|
#
|
@@ -2647,7 +2941,7 @@ module Aws::Connect
|
|
2647
2941
|
#
|
2648
2942
|
# @!attribute [rw] tags
|
2649
2943
|
# The tags used to organize, track, or control access for this
|
2650
|
-
# resource. For example, \\\{ "
|
2944
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
2651
2945
|
# "key2":"value2"\\} \\}.
|
2652
2946
|
# @return [Hash<String,String>]
|
2653
2947
|
#
|
@@ -2706,7 +3000,7 @@ module Aws::Connect
|
|
2706
3000
|
#
|
2707
3001
|
# @!attribute [rw] tags
|
2708
3002
|
# The tags used to organize, track, or control access for this
|
2709
|
-
# resource. For example, \\\{ "
|
3003
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
2710
3004
|
# "key2":"value2"\\} \\}.
|
2711
3005
|
# @return [Hash<String,String>]
|
2712
3006
|
#
|
@@ -2784,7 +3078,7 @@ module Aws::Connect
|
|
2784
3078
|
#
|
2785
3079
|
# @!attribute [rw] tags
|
2786
3080
|
# The tags used to organize, track, or control access for this
|
2787
|
-
# resource. For example, \\\{ "
|
3081
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
2788
3082
|
# "key2":"value2"\\} \\}.
|
2789
3083
|
# @return [Hash<String,String>]
|
2790
3084
|
#
|
@@ -2928,7 +3222,7 @@ module Aws::Connect
|
|
2928
3222
|
#
|
2929
3223
|
# @!attribute [rw] tags
|
2930
3224
|
# The tags used to organize, track, or control access for this
|
2931
|
-
# resource. For example, \\\{ "
|
3225
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
2932
3226
|
# "key2":"value2"\\} \\}.
|
2933
3227
|
# @return [Hash<String,String>]
|
2934
3228
|
#
|
@@ -3103,7 +3397,7 @@ module Aws::Connect
|
|
3103
3397
|
#
|
3104
3398
|
# @!attribute [rw] tags
|
3105
3399
|
# The tags used to organize, track, or control access for this
|
3106
|
-
# resource. For example, \\\{ "
|
3400
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
3107
3401
|
# "key2":"value2"\\} \\}.
|
3108
3402
|
# @return [Hash<String,String>]
|
3109
3403
|
#
|
@@ -3160,7 +3454,7 @@ module Aws::Connect
|
|
3160
3454
|
#
|
3161
3455
|
# @!attribute [rw] tags
|
3162
3456
|
# The tags used to organize, track, or control access for this
|
3163
|
-
# resource. For example, \\\{ "
|
3457
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
3164
3458
|
# "key2":"value2"\\} \\}.
|
3165
3459
|
# @return [Hash<String,String>]
|
3166
3460
|
#
|
@@ -3213,7 +3507,7 @@ module Aws::Connect
|
|
3213
3507
|
#
|
3214
3508
|
# @!attribute [rw] tags
|
3215
3509
|
# The tags used to organize, track, or control access for this
|
3216
|
-
# resource. For example, \\\{ "
|
3510
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
3217
3511
|
# "key2":"value2"\\} \\}.
|
3218
3512
|
# @return [Hash<String,String>]
|
3219
3513
|
#
|
@@ -3304,7 +3598,7 @@ module Aws::Connect
|
|
3304
3598
|
#
|
3305
3599
|
# @!attribute [rw] tags
|
3306
3600
|
# The tags used to organize, track, or control access for this
|
3307
|
-
# resource. For example, \\\{ "
|
3601
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
3308
3602
|
# "key2":"value2"\\} \\}.
|
3309
3603
|
# @return [Hash<String,String>]
|
3310
3604
|
#
|
@@ -3502,7 +3796,7 @@ module Aws::Connect
|
|
3502
3796
|
#
|
3503
3797
|
# @!attribute [rw] tags
|
3504
3798
|
# The tags used to organize, track, or control access for this
|
3505
|
-
# resource. For example, \\\{ "
|
3799
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
3506
3800
|
# "key2":"value2"\\} \\}.
|
3507
3801
|
# @return [Hash<String,String>]
|
3508
3802
|
#
|
@@ -3946,6 +4240,24 @@ module Aws::Connect
|
|
3946
4240
|
include Aws::Structure
|
3947
4241
|
end
|
3948
4242
|
|
4243
|
+
# @!attribute [rw] instance_id
|
4244
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4245
|
+
# instance ID in the Amazon Resource Name (ARN) of the instance.
|
4246
|
+
# @return [String]
|
4247
|
+
#
|
4248
|
+
# @!attribute [rw] name
|
4249
|
+
# The name of the predefined attribute.
|
4250
|
+
# @return [String]
|
4251
|
+
#
|
4252
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeletePredefinedAttributeRequest AWS API Documentation
|
4253
|
+
#
|
4254
|
+
class DeletePredefinedAttributeRequest < Struct.new(
|
4255
|
+
:instance_id,
|
4256
|
+
:name)
|
4257
|
+
SENSITIVE = []
|
4258
|
+
include Aws::Structure
|
4259
|
+
end
|
4260
|
+
|
3949
4261
|
# @!attribute [rw] instance_id
|
3950
4262
|
# The identifier of the Amazon Connect instance. You can [find the
|
3951
4263
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -4659,6 +4971,36 @@ module Aws::Connect
|
|
4659
4971
|
include Aws::Structure
|
4660
4972
|
end
|
4661
4973
|
|
4974
|
+
# @!attribute [rw] instance_id
|
4975
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4976
|
+
# instance ID in the Amazon Resource Name (ARN) of the instance.
|
4977
|
+
# @return [String]
|
4978
|
+
#
|
4979
|
+
# @!attribute [rw] name
|
4980
|
+
# The name of the predefined attribute.
|
4981
|
+
# @return [String]
|
4982
|
+
#
|
4983
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribePredefinedAttributeRequest AWS API Documentation
|
4984
|
+
#
|
4985
|
+
class DescribePredefinedAttributeRequest < Struct.new(
|
4986
|
+
:instance_id,
|
4987
|
+
:name)
|
4988
|
+
SENSITIVE = []
|
4989
|
+
include Aws::Structure
|
4990
|
+
end
|
4991
|
+
|
4992
|
+
# @!attribute [rw] predefined_attribute
|
4993
|
+
# Information about the predefined attribute.
|
4994
|
+
# @return [Types::PredefinedAttribute]
|
4995
|
+
#
|
4996
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribePredefinedAttributeResponse AWS API Documentation
|
4997
|
+
#
|
4998
|
+
class DescribePredefinedAttributeResponse < Struct.new(
|
4999
|
+
:predefined_attribute)
|
5000
|
+
SENSITIVE = []
|
5001
|
+
include Aws::Structure
|
5002
|
+
end
|
5003
|
+
|
4662
5004
|
# @!attribute [rw] instance_id
|
4663
5005
|
# The identifier of the Amazon Connect instance. You can [find the
|
4664
5006
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -5083,12 +5425,17 @@ module Aws::Connect
|
|
5083
5425
|
# Information about the routing profile assigned to the user.
|
5084
5426
|
# @return [Types::RoutingProfileReference]
|
5085
5427
|
#
|
5428
|
+
# @!attribute [rw] routing_step_expression
|
5429
|
+
# The expression of a step in a routing criteria.
|
5430
|
+
# @return [String]
|
5431
|
+
#
|
5086
5432
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Dimensions AWS API Documentation
|
5087
5433
|
#
|
5088
5434
|
class Dimensions < Struct.new(
|
5089
5435
|
:queue,
|
5090
5436
|
:channel,
|
5091
|
-
:routing_profile
|
5437
|
+
:routing_profile,
|
5438
|
+
:routing_step_expression)
|
5092
5439
|
SENSITIVE = []
|
5093
5440
|
include Aws::Structure
|
5094
5441
|
end
|
@@ -5416,6 +5763,29 @@ module Aws::Connect
|
|
5416
5763
|
#
|
5417
5764
|
class DisassociateTrafficDistributionGroupUserResponse < Aws::EmptyStructure; end
|
5418
5765
|
|
5766
|
+
# @!attribute [rw] instance_id
|
5767
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5768
|
+
# instance ID in the Amazon Resource Name (ARN) of the instance.
|
5769
|
+
# @return [String]
|
5770
|
+
#
|
5771
|
+
# @!attribute [rw] user_id
|
5772
|
+
# The identifier of the user account.
|
5773
|
+
# @return [String]
|
5774
|
+
#
|
5775
|
+
# @!attribute [rw] user_proficiencies
|
5776
|
+
# The proficiencies to disassociate from the user.
|
5777
|
+
# @return [Array<Types::UserProficiencyDisassociate>]
|
5778
|
+
#
|
5779
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateUserProficienciesRequest AWS API Documentation
|
5780
|
+
#
|
5781
|
+
class DisassociateUserProficienciesRequest < Struct.new(
|
5782
|
+
:instance_id,
|
5783
|
+
:user_id,
|
5784
|
+
:user_proficiencies)
|
5785
|
+
SENSITIVE = []
|
5786
|
+
include Aws::Structure
|
5787
|
+
end
|
5788
|
+
|
5419
5789
|
# Contains details about why a contact was disconnected. Only Amazon
|
5420
5790
|
# Connect outbound campaigns can provide this field.
|
5421
5791
|
#
|
@@ -5511,6 +5881,14 @@ module Aws::Connect
|
|
5511
5881
|
include Aws::Structure
|
5512
5882
|
end
|
5513
5883
|
|
5884
|
+
# An empty value.
|
5885
|
+
#
|
5886
|
+
# @api private
|
5887
|
+
#
|
5888
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmptyFieldValue AWS API Documentation
|
5889
|
+
#
|
5890
|
+
class EmptyFieldValue < Aws::EmptyStructure; end
|
5891
|
+
|
5514
5892
|
# The encryption configuration.
|
5515
5893
|
#
|
5516
5894
|
# @!attribute [rw] encryption_type
|
@@ -5542,6 +5920,14 @@ module Aws::Connect
|
|
5542
5920
|
include Aws::Structure
|
5543
5921
|
end
|
5544
5922
|
|
5923
|
+
# End associated tasks related to a case.
|
5924
|
+
#
|
5925
|
+
# @api private
|
5926
|
+
#
|
5927
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EndAssociatedTasksActionDefinition AWS API Documentation
|
5928
|
+
#
|
5929
|
+
class EndAssociatedTasksActionDefinition < Aws::EmptyStructure; end
|
5930
|
+
|
5545
5931
|
# Information about the endpoint.
|
5546
5932
|
#
|
5547
5933
|
# @!attribute [rw] type
|
@@ -5623,7 +6009,7 @@ module Aws::Connect
|
|
5623
6009
|
#
|
5624
6010
|
# @!attribute [rw] tags
|
5625
6011
|
# The tags used to organize, track, or control access for this
|
5626
|
-
# resource. For example, \\\{ "
|
6012
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
5627
6013
|
# "key2":"value2"\\} \\}.
|
5628
6014
|
# @return [Hash<String,String>]
|
5629
6015
|
#
|
@@ -5774,7 +6160,7 @@ module Aws::Connect
|
|
5774
6160
|
#
|
5775
6161
|
# @!attribute [rw] tags
|
5776
6162
|
# The tags used to organize, track, or control access for this
|
5777
|
-
# resource. For example, \\\{ "
|
6163
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
5778
6164
|
# "key2":"value2"\\} \\}.
|
5779
6165
|
# @return [Hash<String,String>]
|
5780
6166
|
#
|
@@ -6483,7 +6869,55 @@ module Aws::Connect
|
|
6483
6869
|
include Aws::Structure
|
6484
6870
|
end
|
6485
6871
|
|
6486
|
-
#
|
6872
|
+
# Object for case field values.
|
6873
|
+
#
|
6874
|
+
# @!attribute [rw] id
|
6875
|
+
# Unique identifier of a field.
|
6876
|
+
# @return [String]
|
6877
|
+
#
|
6878
|
+
# @!attribute [rw] value
|
6879
|
+
# Union of potential field value types.
|
6880
|
+
# @return [Types::FieldValueUnion]
|
6881
|
+
#
|
6882
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/FieldValue AWS API Documentation
|
6883
|
+
#
|
6884
|
+
class FieldValue < Struct.new(
|
6885
|
+
:id,
|
6886
|
+
:value)
|
6887
|
+
SENSITIVE = []
|
6888
|
+
include Aws::Structure
|
6889
|
+
end
|
6890
|
+
|
6891
|
+
# Object to store union of Field values.
|
6892
|
+
#
|
6893
|
+
# @!attribute [rw] boolean_value
|
6894
|
+
# A Boolean number value type.
|
6895
|
+
# @return [Boolean]
|
6896
|
+
#
|
6897
|
+
# @!attribute [rw] double_value
|
6898
|
+
# a Double number value type.
|
6899
|
+
# @return [Float]
|
6900
|
+
#
|
6901
|
+
# @!attribute [rw] empty_value
|
6902
|
+
# An empty value.
|
6903
|
+
# @return [Types::EmptyFieldValue]
|
6904
|
+
#
|
6905
|
+
# @!attribute [rw] string_value
|
6906
|
+
# String value type.
|
6907
|
+
# @return [String]
|
6908
|
+
#
|
6909
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/FieldValueUnion AWS API Documentation
|
6910
|
+
#
|
6911
|
+
class FieldValueUnion < Struct.new(
|
6912
|
+
:boolean_value,
|
6913
|
+
:double_value,
|
6914
|
+
:empty_value,
|
6915
|
+
:string_value)
|
6916
|
+
SENSITIVE = []
|
6917
|
+
include Aws::Structure
|
6918
|
+
end
|
6919
|
+
|
6920
|
+
# Contains the filter to apply when retrieving metrics with the
|
6487
6921
|
# [GetMetricDataV2][1] API.
|
6488
6922
|
#
|
6489
6923
|
#
|
@@ -6530,12 +6964,18 @@ module Aws::Connect
|
|
6530
6964
|
# A list of up to 100 routing profile IDs or ARNs.
|
6531
6965
|
# @return [Array<String>]
|
6532
6966
|
#
|
6967
|
+
# @!attribute [rw] routing_step_expressions
|
6968
|
+
# A list of expressions as a filter, in which an expression is an
|
6969
|
+
# object of a step in a routing criteria.
|
6970
|
+
# @return [Array<String>]
|
6971
|
+
#
|
6533
6972
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Filters AWS API Documentation
|
6534
6973
|
#
|
6535
6974
|
class Filters < Struct.new(
|
6536
6975
|
:queues,
|
6537
6976
|
:channels,
|
6538
|
-
:routing_profiles
|
6977
|
+
:routing_profiles,
|
6978
|
+
:routing_step_expressions)
|
6539
6979
|
SENSITIVE = []
|
6540
6980
|
include Aws::Structure
|
6541
6981
|
end
|
@@ -7482,6 +7922,13 @@ module Aws::Connect
|
|
7482
7922
|
# Agent, Agent Hierarchy, Feature,
|
7483
7923
|
# contact/segmentAttributes/connect:Subtype
|
7484
7924
|
#
|
7925
|
+
# AVG\_ACTIVE\_TIME
|
7926
|
+
#
|
7927
|
+
# : Unit: Seconds
|
7928
|
+
#
|
7929
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7930
|
+
# Agent, Agent Hierarchy
|
7931
|
+
#
|
7485
7932
|
# AVG\_AFTER\_CONTACT\_WORK\_TIME
|
7486
7933
|
#
|
7487
7934
|
# : Unit: Seconds
|
@@ -7512,6 +7959,13 @@ module Aws::Connect
|
|
7512
7959
|
#
|
7513
7960
|
# </note>
|
7514
7961
|
#
|
7962
|
+
# AVG\_AGENT\_PAUSE\_TIME
|
7963
|
+
#
|
7964
|
+
# : Unit: Seconds
|
7965
|
+
#
|
7966
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7967
|
+
# Agent, Agent Hierarchy
|
7968
|
+
#
|
7515
7969
|
# AVG\_CONTACT\_DURATION
|
7516
7970
|
#
|
7517
7971
|
# : Unit: Seconds
|
@@ -8178,7 +8632,7 @@ module Aws::Connect
|
|
8178
8632
|
#
|
8179
8633
|
# @!attribute [rw] tags
|
8180
8634
|
# The tags used to organize, track, or control access for this
|
8181
|
-
# resource. For example, \\\{ "
|
8635
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
8182
8636
|
# "key2":"value2"\\} \\}.
|
8183
8637
|
# @return [Hash<String,String>]
|
8184
8638
|
#
|
@@ -8275,7 +8729,7 @@ module Aws::Connect
|
|
8275
8729
|
#
|
8276
8730
|
# @!attribute [rw] tags
|
8277
8731
|
# The tags used to organize, track, or control access for this
|
8278
|
-
# resource. For example, \\\{ "
|
8732
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
8279
8733
|
# "key2":"value2"\\} \\}.
|
8280
8734
|
# @return [Hash<String,String>]
|
8281
8735
|
#
|
@@ -8664,7 +9118,7 @@ module Aws::Connect
|
|
8664
9118
|
#
|
8665
9119
|
# @!attribute [rw] tags
|
8666
9120
|
# The tags used to organize, track, or control access for this
|
8667
|
-
# resource. For example, \\\{ "
|
9121
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
8668
9122
|
# "key2":"value2"\\} \\}.
|
8669
9123
|
# @return [Hash<String,String>]
|
8670
9124
|
#
|
@@ -8861,7 +9315,7 @@ module Aws::Connect
|
|
8861
9315
|
#
|
8862
9316
|
# @!attribute [rw] tags
|
8863
9317
|
# The tags used to organize, track, or control access for this
|
8864
|
-
# resource. For example, \\\{ "
|
9318
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
8865
9319
|
# "key2":"value2"\\} \\}.
|
8866
9320
|
# @return [Hash<String,String>]
|
8867
9321
|
#
|
@@ -10589,6 +11043,49 @@ module Aws::Connect
|
|
10589
11043
|
include Aws::Structure
|
10590
11044
|
end
|
10591
11045
|
|
11046
|
+
# @!attribute [rw] instance_id
|
11047
|
+
# The identifier of the Amazon Connect instance. You can find the
|
11048
|
+
# instance ID in the Amazon Resource Name (ARN) of the instance.
|
11049
|
+
# @return [String]
|
11050
|
+
#
|
11051
|
+
# @!attribute [rw] next_token
|
11052
|
+
# The token for the next set of results. Use the value returned in the
|
11053
|
+
# previous response in the next request to retrieve the next set of
|
11054
|
+
# results.
|
11055
|
+
# @return [String]
|
11056
|
+
#
|
11057
|
+
# @!attribute [rw] max_results
|
11058
|
+
# The maximum number of results to return per page.
|
11059
|
+
# @return [Integer]
|
11060
|
+
#
|
11061
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListPredefinedAttributesRequest AWS API Documentation
|
11062
|
+
#
|
11063
|
+
class ListPredefinedAttributesRequest < Struct.new(
|
11064
|
+
:instance_id,
|
11065
|
+
:next_token,
|
11066
|
+
:max_results)
|
11067
|
+
SENSITIVE = []
|
11068
|
+
include Aws::Structure
|
11069
|
+
end
|
11070
|
+
|
11071
|
+
# @!attribute [rw] next_token
|
11072
|
+
# If there are additional results, this is the token for the next set
|
11073
|
+
# of results.
|
11074
|
+
# @return [String]
|
11075
|
+
#
|
11076
|
+
# @!attribute [rw] predefined_attribute_summary_list
|
11077
|
+
# Summary of the predefined attributes.
|
11078
|
+
# @return [Array<Types::PredefinedAttributeSummary>]
|
11079
|
+
#
|
11080
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListPredefinedAttributesResponse AWS API Documentation
|
11081
|
+
#
|
11082
|
+
class ListPredefinedAttributesResponse < Struct.new(
|
11083
|
+
:next_token,
|
11084
|
+
:predefined_attribute_summary_list)
|
11085
|
+
SENSITIVE = []
|
11086
|
+
include Aws::Structure
|
11087
|
+
end
|
11088
|
+
|
10592
11089
|
# @!attribute [rw] instance_id
|
10593
11090
|
# The identifier of the Amazon Connect instance.
|
10594
11091
|
# @return [String]
|
@@ -11572,6 +12069,64 @@ module Aws::Connect
|
|
11572
12069
|
include Aws::Structure
|
11573
12070
|
end
|
11574
12071
|
|
12072
|
+
# @!attribute [rw] instance_id
|
12073
|
+
# The identifier of the Amazon Connect instance. You can find the
|
12074
|
+
# instance ID in the Amazon Resource Name (ARN) of the instance.
|
12075
|
+
# @return [String]
|
12076
|
+
#
|
12077
|
+
# @!attribute [rw] user_id
|
12078
|
+
# The identifier of the user account.
|
12079
|
+
# @return [String]
|
12080
|
+
#
|
12081
|
+
# @!attribute [rw] next_token
|
12082
|
+
# The token for the next set of results. Use the value returned in the
|
12083
|
+
# previous response in the next request to retrieve the next set of
|
12084
|
+
# results.
|
12085
|
+
# @return [String]
|
12086
|
+
#
|
12087
|
+
# @!attribute [rw] max_results
|
12088
|
+
# The maximum number of results to return per page.
|
12089
|
+
# @return [Integer]
|
12090
|
+
#
|
12091
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUserProficienciesRequest AWS API Documentation
|
12092
|
+
#
|
12093
|
+
class ListUserProficienciesRequest < Struct.new(
|
12094
|
+
:instance_id,
|
12095
|
+
:user_id,
|
12096
|
+
:next_token,
|
12097
|
+
:max_results)
|
12098
|
+
SENSITIVE = []
|
12099
|
+
include Aws::Structure
|
12100
|
+
end
|
12101
|
+
|
12102
|
+
# @!attribute [rw] next_token
|
12103
|
+
# If there are additional results, this is the token for the next set
|
12104
|
+
# of results.
|
12105
|
+
# @return [String]
|
12106
|
+
#
|
12107
|
+
# @!attribute [rw] user_proficiency_list
|
12108
|
+
# Information about the user proficiencies.
|
12109
|
+
# @return [Array<Types::UserProficiency>]
|
12110
|
+
#
|
12111
|
+
# @!attribute [rw] last_modified_time
|
12112
|
+
# The last time that the user's proficiencies are were modified.
|
12113
|
+
# @return [Time]
|
12114
|
+
#
|
12115
|
+
# @!attribute [rw] last_modified_region
|
12116
|
+
# The region in which a user's proficiencies were last modified.
|
12117
|
+
# @return [String]
|
12118
|
+
#
|
12119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUserProficienciesResponse AWS API Documentation
|
12120
|
+
#
|
12121
|
+
class ListUserProficienciesResponse < Struct.new(
|
12122
|
+
:next_token,
|
12123
|
+
:user_proficiency_list,
|
12124
|
+
:last_modified_time,
|
12125
|
+
:last_modified_region)
|
12126
|
+
SENSITIVE = []
|
12127
|
+
include Aws::Structure
|
12128
|
+
end
|
12129
|
+
|
11575
12130
|
# @!attribute [rw] instance_id
|
11576
12131
|
# The identifier of the Amazon Connect instance. You can [find the
|
11577
12132
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -12110,7 +12665,7 @@ module Aws::Connect
|
|
12110
12665
|
#
|
12111
12666
|
# @!attribute [rw] user_tags
|
12112
12667
|
# The tags used to organize, track, or control access for this
|
12113
|
-
# resource. For example, \\\{ "
|
12668
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
12114
12669
|
# "key2":"value2"\\} \\}. Amazon Connect users with the specified
|
12115
12670
|
# tags will be notified.
|
12116
12671
|
# @return [Hash<String,String>]
|
@@ -12379,6 +12934,33 @@ module Aws::Connect
|
|
12379
12934
|
include Aws::Structure
|
12380
12935
|
end
|
12381
12936
|
|
12937
|
+
# @!attribute [rw] contact_id
|
12938
|
+
# The identifier of the contact.
|
12939
|
+
# @return [String]
|
12940
|
+
#
|
12941
|
+
# @!attribute [rw] instance_id
|
12942
|
+
# The identifier of the Amazon Connect instance. You can find the
|
12943
|
+
# `instanceId` in the ARN of the instance.
|
12944
|
+
# @return [String]
|
12945
|
+
#
|
12946
|
+
# @!attribute [rw] contact_flow_id
|
12947
|
+
# The identifier of the flow.
|
12948
|
+
# @return [String]
|
12949
|
+
#
|
12950
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PauseContactRequest AWS API Documentation
|
12951
|
+
#
|
12952
|
+
class PauseContactRequest < Struct.new(
|
12953
|
+
:contact_id,
|
12954
|
+
:instance_id,
|
12955
|
+
:contact_flow_id)
|
12956
|
+
SENSITIVE = []
|
12957
|
+
include Aws::Structure
|
12958
|
+
end
|
12959
|
+
|
12960
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PauseContactResponse AWS API Documentation
|
12961
|
+
#
|
12962
|
+
class PauseContactResponse < Aws::EmptyStructure; end
|
12963
|
+
|
12382
12964
|
# Enable persistent chats. For more information about enabling
|
12383
12965
|
# persistent chat, and for example use cases and how to configure for
|
12384
12966
|
# them, see [Enable persistent chat][1].
|
@@ -12512,6 +13094,114 @@ module Aws::Connect
|
|
12512
13094
|
include Aws::Structure
|
12513
13095
|
end
|
12514
13096
|
|
13097
|
+
# Information about a predefined attribute.
|
13098
|
+
#
|
13099
|
+
# @!attribute [rw] name
|
13100
|
+
# The name of the predefined attribute.
|
13101
|
+
# @return [String]
|
13102
|
+
#
|
13103
|
+
# @!attribute [rw] values
|
13104
|
+
# The values of the predefined attribute.
|
13105
|
+
# @return [Types::PredefinedAttributeValues]
|
13106
|
+
#
|
13107
|
+
# @!attribute [rw] last_modified_time
|
13108
|
+
# Last modified time.
|
13109
|
+
# @return [Time]
|
13110
|
+
#
|
13111
|
+
# @!attribute [rw] last_modified_region
|
13112
|
+
# Last modified region.
|
13113
|
+
# @return [String]
|
13114
|
+
#
|
13115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PredefinedAttribute AWS API Documentation
|
13116
|
+
#
|
13117
|
+
class PredefinedAttribute < Struct.new(
|
13118
|
+
:name,
|
13119
|
+
:values,
|
13120
|
+
:last_modified_time,
|
13121
|
+
:last_modified_region)
|
13122
|
+
SENSITIVE = []
|
13123
|
+
include Aws::Structure
|
13124
|
+
end
|
13125
|
+
|
13126
|
+
# The search criteria to be used to return predefined attributes.
|
13127
|
+
#
|
13128
|
+
# @!attribute [rw] or_conditions
|
13129
|
+
# A list of conditions which would be applied together with an `OR`
|
13130
|
+
# condition.
|
13131
|
+
# @return [Array<Types::PredefinedAttributeSearchCriteria>]
|
13132
|
+
#
|
13133
|
+
# @!attribute [rw] and_conditions
|
13134
|
+
# A list of conditions which would be applied together with an `AND`
|
13135
|
+
# condition.
|
13136
|
+
# @return [Array<Types::PredefinedAttributeSearchCriteria>]
|
13137
|
+
#
|
13138
|
+
# @!attribute [rw] string_condition
|
13139
|
+
# A leaf node condition which can be used to specify a string
|
13140
|
+
# condition.
|
13141
|
+
#
|
13142
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name` and
|
13143
|
+
# `description`.
|
13144
|
+
#
|
13145
|
+
# </note>
|
13146
|
+
# @return [Types::StringCondition]
|
13147
|
+
#
|
13148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PredefinedAttributeSearchCriteria AWS API Documentation
|
13149
|
+
#
|
13150
|
+
class PredefinedAttributeSearchCriteria < Struct.new(
|
13151
|
+
:or_conditions,
|
13152
|
+
:and_conditions,
|
13153
|
+
:string_condition)
|
13154
|
+
SENSITIVE = []
|
13155
|
+
include Aws::Structure
|
13156
|
+
end
|
13157
|
+
|
13158
|
+
# Summary of a predefined attribute.
|
13159
|
+
#
|
13160
|
+
# @!attribute [rw] name
|
13161
|
+
# The name of the predefined attribute.
|
13162
|
+
# @return [String]
|
13163
|
+
#
|
13164
|
+
# @!attribute [rw] last_modified_time
|
13165
|
+
# Last modified time.
|
13166
|
+
# @return [Time]
|
13167
|
+
#
|
13168
|
+
# @!attribute [rw] last_modified_region
|
13169
|
+
# Last modified region.
|
13170
|
+
# @return [String]
|
13171
|
+
#
|
13172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PredefinedAttributeSummary AWS API Documentation
|
13173
|
+
#
|
13174
|
+
class PredefinedAttributeSummary < Struct.new(
|
13175
|
+
:name,
|
13176
|
+
:last_modified_time,
|
13177
|
+
:last_modified_region)
|
13178
|
+
SENSITIVE = []
|
13179
|
+
include Aws::Structure
|
13180
|
+
end
|
13181
|
+
|
13182
|
+
# Information about values of a predefined attribute.
|
13183
|
+
#
|
13184
|
+
# @note PredefinedAttributeValues is a union - when making an API calls you must set exactly one of the members.
|
13185
|
+
#
|
13186
|
+
# @note PredefinedAttributeValues is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PredefinedAttributeValues corresponding to the set member.
|
13187
|
+
#
|
13188
|
+
# @!attribute [rw] string_list
|
13189
|
+
# Predefined attribute values of type string list.
|
13190
|
+
# @return [Array<String>]
|
13191
|
+
#
|
13192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PredefinedAttributeValues AWS API Documentation
|
13193
|
+
#
|
13194
|
+
class PredefinedAttributeValues < Struct.new(
|
13195
|
+
:string_list,
|
13196
|
+
:unknown)
|
13197
|
+
SENSITIVE = []
|
13198
|
+
include Aws::Structure
|
13199
|
+
include Aws::Structure::Union
|
13200
|
+
|
13201
|
+
class StringList < PredefinedAttributeValues; end
|
13202
|
+
class Unknown < PredefinedAttributeValues; end
|
13203
|
+
end
|
13204
|
+
|
12515
13205
|
# Information about a problem detail.
|
12516
13206
|
#
|
12517
13207
|
# @!attribute [rw] message
|
@@ -12546,7 +13236,7 @@ module Aws::Connect
|
|
12546
13236
|
#
|
12547
13237
|
# @!attribute [rw] tags
|
12548
13238
|
# The tags used to organize, track, or control access for this
|
12549
|
-
# resource. For example, \\\{ "
|
13239
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
12550
13240
|
# "key2":"value2"\\} \\}.
|
12551
13241
|
# @return [Hash<String,String>]
|
12552
13242
|
#
|
@@ -12771,7 +13461,7 @@ module Aws::Connect
|
|
12771
13461
|
#
|
12772
13462
|
# @!attribute [rw] tags
|
12773
13463
|
# The tags used to organize, track, or control access for this
|
12774
|
-
# resource. For example, \\\{ "
|
13464
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
12775
13465
|
# "key2":"value2"\\} \\}.
|
12776
13466
|
# @return [Hash<String,String>]
|
12777
13467
|
#
|
@@ -12991,7 +13681,7 @@ module Aws::Connect
|
|
12991
13681
|
#
|
12992
13682
|
# @!attribute [rw] tags
|
12993
13683
|
# The tags used to organize, track, or control access for this
|
12994
|
-
# resource. For example, \\\{ "
|
13684
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
12995
13685
|
# "key2":"value2"\\} \\}.
|
12996
13686
|
# @return [Hash<String,String>]
|
12997
13687
|
#
|
@@ -13873,6 +14563,33 @@ module Aws::Connect
|
|
13873
14563
|
#
|
13874
14564
|
class ResumeContactRecordingResponse < Aws::EmptyStructure; end
|
13875
14565
|
|
14566
|
+
# @!attribute [rw] contact_id
|
14567
|
+
# The identifier of the contact.
|
14568
|
+
# @return [String]
|
14569
|
+
#
|
14570
|
+
# @!attribute [rw] instance_id
|
14571
|
+
# The identifier of the Amazon Connect instance. You can find the
|
14572
|
+
# `instanceId` in the ARN of the instance.
|
14573
|
+
# @return [String]
|
14574
|
+
#
|
14575
|
+
# @!attribute [rw] contact_flow_id
|
14576
|
+
# The identifier of the flow.
|
14577
|
+
# @return [String]
|
14578
|
+
#
|
14579
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ResumeContactRequest AWS API Documentation
|
14580
|
+
#
|
14581
|
+
class ResumeContactRequest < Struct.new(
|
14582
|
+
:contact_id,
|
14583
|
+
:instance_id,
|
14584
|
+
:contact_flow_id)
|
14585
|
+
SENSITIVE = []
|
14586
|
+
include Aws::Structure
|
14587
|
+
end
|
14588
|
+
|
14589
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ResumeContactResponse AWS API Documentation
|
14590
|
+
#
|
14591
|
+
class ResumeContactResponse < Aws::EmptyStructure; end
|
14592
|
+
|
13876
14593
|
# Contains information about a routing profile.
|
13877
14594
|
#
|
13878
14595
|
# @!attribute [rw] instance_id
|
@@ -13912,7 +14629,7 @@ module Aws::Connect
|
|
13912
14629
|
#
|
13913
14630
|
# @!attribute [rw] tags
|
13914
14631
|
# The tags used to organize, track, or control access for this
|
13915
|
-
# resource. For example, \\\{ "
|
14632
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
13916
14633
|
# "key2":"value2"\\} \\}.
|
13917
14634
|
# @return [Hash<String,String>]
|
13918
14635
|
#
|
@@ -14231,7 +14948,7 @@ module Aws::Connect
|
|
14231
14948
|
#
|
14232
14949
|
# @!attribute [rw] tags
|
14233
14950
|
# The tags used to organize, track, or control access for this
|
14234
|
-
# resource. For example, \\\{ "
|
14951
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
14235
14952
|
# "key2":"value2"\\} \\}.
|
14236
14953
|
# @return [Hash<String,String>]
|
14237
14954
|
#
|
@@ -14296,6 +15013,26 @@ module Aws::Connect
|
|
14296
15013
|
# `OnMetricDataUpdate`
|
14297
15014
|
# @return [Types::SendNotificationActionDefinition]
|
14298
15015
|
#
|
15016
|
+
# @!attribute [rw] create_case_action
|
15017
|
+
# Information about the create case action.
|
15018
|
+
#
|
15019
|
+
# Supported only for `TriggerEventSource` values:
|
15020
|
+
# `OnPostCallAnalysisAvailable` \| `OnPostChatAnalysisAvailable`.
|
15021
|
+
# @return [Types::CreateCaseActionDefinition]
|
15022
|
+
#
|
15023
|
+
# @!attribute [rw] update_case_action
|
15024
|
+
# Information about the update case action.
|
15025
|
+
#
|
15026
|
+
# Supported only for `TriggerEventSource` values: `OnCaseCreate` \|
|
15027
|
+
# `OnCaseUpdate`.
|
15028
|
+
# @return [Types::UpdateCaseActionDefinition]
|
15029
|
+
#
|
15030
|
+
# @!attribute [rw] end_associated_tasks_action
|
15031
|
+
# Information about the end associated tasks action.
|
15032
|
+
#
|
15033
|
+
# Supported only for `TriggerEventSource` values: `OnCaseUpdate`.
|
15034
|
+
# @return [Types::EndAssociatedTasksActionDefinition]
|
15035
|
+
#
|
14299
15036
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RuleAction AWS API Documentation
|
14300
15037
|
#
|
14301
15038
|
class RuleAction < Struct.new(
|
@@ -14303,7 +15040,10 @@ module Aws::Connect
|
|
14303
15040
|
:task_action,
|
14304
15041
|
:event_bridge_action,
|
14305
15042
|
:assign_contact_category_action,
|
14306
|
-
:send_notification_action
|
15043
|
+
:send_notification_action,
|
15044
|
+
:create_case_action,
|
15045
|
+
:update_case_action,
|
15046
|
+
:end_associated_tasks_action)
|
14307
15047
|
SENSITIVE = []
|
14308
15048
|
include Aws::Structure
|
14309
15049
|
end
|
@@ -14479,13 +15219,144 @@ module Aws::Connect
|
|
14479
15219
|
end
|
14480
15220
|
|
14481
15221
|
# @!attribute [rw] instance_id
|
14482
|
-
# The identifier of
|
14483
|
-
#
|
15222
|
+
# The identifier of Amazon Connect instance. You can find the instance
|
15223
|
+
# ID in the Amazon Resource Name (ARN) of the instance
|
15224
|
+
# @return [String]
|
14484
15225
|
#
|
15226
|
+
# @!attribute [rw] time_range
|
15227
|
+
# Time range that you want to search results
|
15228
|
+
# @return [Types::SearchContactsTimeRange]
|
14485
15229
|
#
|
15230
|
+
# @!attribute [rw] search_criteria
|
15231
|
+
# The search criteria to be used to return contacts.
|
15232
|
+
# @return [Types::SearchCriteria]
|
14486
15233
|
#
|
14487
|
-
#
|
14488
|
-
#
|
15234
|
+
# @!attribute [rw] max_results
|
15235
|
+
# The maximum number of results to return per page.
|
15236
|
+
# @return [Integer]
|
15237
|
+
#
|
15238
|
+
# @!attribute [rw] next_token
|
15239
|
+
# The token for the next set of results. Use the value returned in the
|
15240
|
+
# previous response in the next request to retrieve the next set of
|
15241
|
+
# results.
|
15242
|
+
# @return [String]
|
15243
|
+
#
|
15244
|
+
# @!attribute [rw] sort
|
15245
|
+
# Specifies a field to sort by and a sort order
|
15246
|
+
# @return [Types::Sort]
|
15247
|
+
#
|
15248
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactsRequest AWS API Documentation
|
15249
|
+
#
|
15250
|
+
class SearchContactsRequest < Struct.new(
|
15251
|
+
:instance_id,
|
15252
|
+
:time_range,
|
15253
|
+
:search_criteria,
|
15254
|
+
:max_results,
|
15255
|
+
:next_token,
|
15256
|
+
:sort)
|
15257
|
+
SENSITIVE = []
|
15258
|
+
include Aws::Structure
|
15259
|
+
end
|
15260
|
+
|
15261
|
+
# @!attribute [rw] contacts
|
15262
|
+
# Information about the contacts.
|
15263
|
+
# @return [Array<Types::ContactSearchSummary>]
|
15264
|
+
#
|
15265
|
+
# @!attribute [rw] next_token
|
15266
|
+
# If there are additional results, this is the token for the next set
|
15267
|
+
# of results.
|
15268
|
+
# @return [String]
|
15269
|
+
#
|
15270
|
+
# @!attribute [rw] total_count
|
15271
|
+
# The total number of contacts which matched your search query.
|
15272
|
+
# @return [Integer]
|
15273
|
+
#
|
15274
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactsResponse AWS API Documentation
|
15275
|
+
#
|
15276
|
+
class SearchContactsResponse < Struct.new(
|
15277
|
+
:contacts,
|
15278
|
+
:next_token,
|
15279
|
+
:total_count)
|
15280
|
+
SENSITIVE = []
|
15281
|
+
include Aws::Structure
|
15282
|
+
end
|
15283
|
+
|
15284
|
+
# A structure of time range that you want to search results
|
15285
|
+
#
|
15286
|
+
# @!attribute [rw] type
|
15287
|
+
# The type of timestamp to search
|
15288
|
+
# @return [String]
|
15289
|
+
#
|
15290
|
+
# @!attribute [rw] start_time
|
15291
|
+
# The start time of the time range.
|
15292
|
+
# @return [Time]
|
15293
|
+
#
|
15294
|
+
# @!attribute [rw] end_time
|
15295
|
+
# The end time of the time range.
|
15296
|
+
# @return [Time]
|
15297
|
+
#
|
15298
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactsTimeRange AWS API Documentation
|
15299
|
+
#
|
15300
|
+
class SearchContactsTimeRange < Struct.new(
|
15301
|
+
:type,
|
15302
|
+
:start_time,
|
15303
|
+
:end_time)
|
15304
|
+
SENSITIVE = []
|
15305
|
+
include Aws::Structure
|
15306
|
+
end
|
15307
|
+
|
15308
|
+
# A structure of search criteria to be used to return contacts
|
15309
|
+
#
|
15310
|
+
# @!attribute [rw] agent_ids
|
15311
|
+
# The array of agent ids
|
15312
|
+
# @return [Array<String>]
|
15313
|
+
#
|
15314
|
+
# @!attribute [rw] agent_hierarchy_groups
|
15315
|
+
# The agent hierarchy groups
|
15316
|
+
# @return [Types::AgentHierarchyGroups]
|
15317
|
+
#
|
15318
|
+
# @!attribute [rw] channels
|
15319
|
+
# The array of channels
|
15320
|
+
# @return [Array<String>]
|
15321
|
+
#
|
15322
|
+
# @!attribute [rw] contact_analysis
|
15323
|
+
# The ContactAnalysis object used in search criteria
|
15324
|
+
# @return [Types::ContactAnalysis]
|
15325
|
+
#
|
15326
|
+
# @!attribute [rw] initiation_methods
|
15327
|
+
# The array of initiaton methods
|
15328
|
+
# @return [Array<String>]
|
15329
|
+
#
|
15330
|
+
# @!attribute [rw] queue_ids
|
15331
|
+
# The array of queue ids.
|
15332
|
+
# @return [Array<String>]
|
15333
|
+
#
|
15334
|
+
# @!attribute [rw] searchable_contact_attributes
|
15335
|
+
# The SearchableContactAttributes object used in search criteria
|
15336
|
+
# @return [Types::SearchableContactAttributes]
|
15337
|
+
#
|
15338
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchCriteria AWS API Documentation
|
15339
|
+
#
|
15340
|
+
class SearchCriteria < Struct.new(
|
15341
|
+
:agent_ids,
|
15342
|
+
:agent_hierarchy_groups,
|
15343
|
+
:channels,
|
15344
|
+
:contact_analysis,
|
15345
|
+
:initiation_methods,
|
15346
|
+
:queue_ids,
|
15347
|
+
:searchable_contact_attributes)
|
15348
|
+
SENSITIVE = []
|
15349
|
+
include Aws::Structure
|
15350
|
+
end
|
15351
|
+
|
15352
|
+
# @!attribute [rw] instance_id
|
15353
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
15354
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
15355
|
+
#
|
15356
|
+
#
|
15357
|
+
#
|
15358
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
15359
|
+
# @return [String]
|
14489
15360
|
#
|
14490
15361
|
# @!attribute [rw] next_token
|
14491
15362
|
# The token for the next set of results. Use the value returned in the
|
@@ -14541,6 +15412,61 @@ module Aws::Connect
|
|
14541
15412
|
include Aws::Structure
|
14542
15413
|
end
|
14543
15414
|
|
15415
|
+
# @!attribute [rw] instance_id
|
15416
|
+
# The identifier of the Amazon Connect instance. You can find the
|
15417
|
+
# instance ID in the Amazon Resource Name (ARN) of the instance.
|
15418
|
+
# @return [String]
|
15419
|
+
#
|
15420
|
+
# @!attribute [rw] next_token
|
15421
|
+
# The token for the next set of results. Use the value returned in the
|
15422
|
+
# previous response in the next request to retrieve the next set of
|
15423
|
+
# results.
|
15424
|
+
# @return [String]
|
15425
|
+
#
|
15426
|
+
# @!attribute [rw] max_results
|
15427
|
+
# The maximum number of results to return per page.
|
15428
|
+
# @return [Integer]
|
15429
|
+
#
|
15430
|
+
# @!attribute [rw] search_criteria
|
15431
|
+
# The search criteria to be used to return predefined attributes.
|
15432
|
+
# @return [Types::PredefinedAttributeSearchCriteria]
|
15433
|
+
#
|
15434
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchPredefinedAttributesRequest AWS API Documentation
|
15435
|
+
#
|
15436
|
+
class SearchPredefinedAttributesRequest < Struct.new(
|
15437
|
+
:instance_id,
|
15438
|
+
:next_token,
|
15439
|
+
:max_results,
|
15440
|
+
:search_criteria)
|
15441
|
+
SENSITIVE = []
|
15442
|
+
include Aws::Structure
|
15443
|
+
end
|
15444
|
+
|
15445
|
+
# @!attribute [rw] predefined_attributes
|
15446
|
+
# Predefined attributes matched by the search criteria.
|
15447
|
+
# @return [Array<Types::PredefinedAttribute>]
|
15448
|
+
#
|
15449
|
+
# @!attribute [rw] next_token
|
15450
|
+
# The token for the next set of results. Use the value returned in the
|
15451
|
+
# previous response in the next request to retrieve the next set of
|
15452
|
+
# results.
|
15453
|
+
# @return [String]
|
15454
|
+
#
|
15455
|
+
# @!attribute [rw] approximate_total_count
|
15456
|
+
# The approximate number of predefined attributes which matched your
|
15457
|
+
# search query.
|
15458
|
+
# @return [Integer]
|
15459
|
+
#
|
15460
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchPredefinedAttributesResponse AWS API Documentation
|
15461
|
+
#
|
15462
|
+
class SearchPredefinedAttributesResponse < Struct.new(
|
15463
|
+
:predefined_attributes,
|
15464
|
+
:next_token,
|
15465
|
+
:approximate_total_count)
|
15466
|
+
SENSITIVE = []
|
15467
|
+
include Aws::Structure
|
15468
|
+
end
|
15469
|
+
|
14544
15470
|
# @!attribute [rw] instance_id
|
14545
15471
|
# The identifier of the Amazon Connect instance. You can [find the
|
14546
15472
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -15074,6 +16000,45 @@ module Aws::Connect
|
|
15074
16000
|
include Aws::Structure
|
15075
16001
|
end
|
15076
16002
|
|
16003
|
+
# A structure that defines searchable contact attributes which can be
|
16004
|
+
# used to filter search results.
|
16005
|
+
#
|
16006
|
+
# @!attribute [rw] criteria
|
16007
|
+
# The array of searhale contact attribute criteria
|
16008
|
+
# @return [Array<Types::SearchableContactAttributesCriteria>]
|
16009
|
+
#
|
16010
|
+
# @!attribute [rw] match_type
|
16011
|
+
# The match type of multiple searchable contact attributes criteria.
|
16012
|
+
# @return [String]
|
16013
|
+
#
|
16014
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableContactAttributes AWS API Documentation
|
16015
|
+
#
|
16016
|
+
class SearchableContactAttributes < Struct.new(
|
16017
|
+
:criteria,
|
16018
|
+
:match_type)
|
16019
|
+
SENSITIVE = []
|
16020
|
+
include Aws::Structure
|
16021
|
+
end
|
16022
|
+
|
16023
|
+
# The criteria of searchable contact attributes.
|
16024
|
+
#
|
16025
|
+
# @!attribute [rw] key
|
16026
|
+
# The searchable contact attribute key
|
16027
|
+
# @return [String]
|
16028
|
+
#
|
16029
|
+
# @!attribute [rw] values
|
16030
|
+
# The array of contact attribute values used to filter search results.
|
16031
|
+
# @return [Array<String>]
|
16032
|
+
#
|
16033
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableContactAttributesCriteria AWS API Documentation
|
16034
|
+
#
|
16035
|
+
class SearchableContactAttributesCriteria < Struct.new(
|
16036
|
+
:key,
|
16037
|
+
:values)
|
16038
|
+
SENSITIVE = [:key]
|
16039
|
+
include Aws::Structure
|
16040
|
+
end
|
16041
|
+
|
15077
16042
|
# Configuration information of the security key.
|
15078
16043
|
#
|
15079
16044
|
# @!attribute [rw] association_id
|
@@ -15123,7 +16088,7 @@ module Aws::Connect
|
|
15123
16088
|
#
|
15124
16089
|
# @!attribute [rw] tags
|
15125
16090
|
# The tags used to organize, track, or control access for this
|
15126
|
-
# resource. For example, \\\{ "
|
16091
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
15127
16092
|
# "key2":"value2"\\} \\}.
|
15128
16093
|
# @return [Hash<String,String>]
|
15129
16094
|
#
|
@@ -15184,6 +16149,11 @@ module Aws::Connect
|
|
15184
16149
|
# @!attribute [rw] string_condition
|
15185
16150
|
# A leaf node condition which can be used to specify a string
|
15186
16151
|
# condition.
|
16152
|
+
#
|
16153
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name` and
|
16154
|
+
# `description`.
|
16155
|
+
#
|
16156
|
+
# </note>
|
15187
16157
|
# @return [Types::StringCondition]
|
15188
16158
|
#
|
15189
16159
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfileSearchCriteria AWS API Documentation
|
@@ -15220,7 +16190,7 @@ module Aws::Connect
|
|
15220
16190
|
#
|
15221
16191
|
# @!attribute [rw] tags
|
15222
16192
|
# The tags used to organize, track, or control access for this
|
15223
|
-
# resource. For example, \\\{ "
|
16193
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
15224
16194
|
# "key2":"value2"\\} \\}.
|
15225
16195
|
# @return [Hash<String,String>]
|
15226
16196
|
#
|
@@ -15495,6 +16465,25 @@ module Aws::Connect
|
|
15495
16465
|
include Aws::Structure
|
15496
16466
|
end
|
15497
16467
|
|
16468
|
+
# A structure that defines the sort by and a sort order
|
16469
|
+
#
|
16470
|
+
# @!attribute [rw] field_name
|
16471
|
+
# The name of the field on which to sort.
|
16472
|
+
# @return [String]
|
16473
|
+
#
|
16474
|
+
# @!attribute [rw] order
|
16475
|
+
# An ascending or descending sort.
|
16476
|
+
# @return [String]
|
16477
|
+
#
|
16478
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Sort AWS API Documentation
|
16479
|
+
#
|
16480
|
+
class Sort < Struct.new(
|
16481
|
+
:field_name,
|
16482
|
+
:order)
|
16483
|
+
SENSITIVE = []
|
16484
|
+
include Aws::Structure
|
16485
|
+
end
|
16486
|
+
|
15498
16487
|
# @!attribute [rw] instance_id
|
15499
16488
|
# The identifier of the Amazon Connect instance. You can [find the
|
15500
16489
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -15821,6 +16810,33 @@ module Aws::Connect
|
|
15821
16810
|
include Aws::Structure
|
15822
16811
|
end
|
15823
16812
|
|
16813
|
+
# @!attribute [rw] name
|
16814
|
+
# The name of a voice contact that is shown to an agent in the Contact
|
16815
|
+
# Control Panel (CCP).
|
16816
|
+
# @return [String]
|
16817
|
+
#
|
16818
|
+
# @!attribute [rw] description
|
16819
|
+
# A description of the voice contact that is shown to an agent in the
|
16820
|
+
# Contact Control Panel (CCP).
|
16821
|
+
# @return [String]
|
16822
|
+
#
|
16823
|
+
# @!attribute [rw] references
|
16824
|
+
# A formatted URL that is shown to an agent in the Contact Control
|
16825
|
+
# Panel (CCP). Contacts can have the following reference types at the
|
16826
|
+
# time of creation: `URL` \| `NUMBER` \| `STRING` \| `DATE` \|
|
16827
|
+
# `EMAIL`. `ATTACHMENT` is not a supported reference type during voice
|
16828
|
+
# contact creation.
|
16829
|
+
# @return [Hash<String,Types::Reference>]
|
16830
|
+
#
|
16831
|
+
# @!attribute [rw] related_contact_id
|
16832
|
+
# The `contactId` that is related to this contact. Linking voice,
|
16833
|
+
# task, or chat by using `RelatedContactID` copies over contact
|
16834
|
+
# attributes from the related contact to the new contact. All updates
|
16835
|
+
# to user-defined attributes in the new contact are limited to the
|
16836
|
+
# individual contact ID. There are no limits to the number of contacts
|
16837
|
+
# that can be linked by using `RelatedContactId`.
|
16838
|
+
# @return [String]
|
16839
|
+
#
|
15824
16840
|
# @!attribute [rw] destination_phone_number
|
15825
16841
|
# The phone number of the customer, in E.164 format.
|
15826
16842
|
# @return [String]
|
@@ -15903,6 +16919,10 @@ module Aws::Connect
|
|
15903
16919
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartOutboundVoiceContactRequest AWS API Documentation
|
15904
16920
|
#
|
15905
16921
|
class StartOutboundVoiceContactRequest < Struct.new(
|
16922
|
+
:name,
|
16923
|
+
:description,
|
16924
|
+
:references,
|
16925
|
+
:related_contact_id,
|
15906
16926
|
:destination_phone_number,
|
15907
16927
|
:contact_flow_id,
|
15908
16928
|
:instance_id,
|
@@ -16294,6 +17314,11 @@ module Aws::Connect
|
|
16294
17314
|
|
16295
17315
|
# A leaf node condition which can be used to specify a string condition.
|
16296
17316
|
#
|
17317
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name` and
|
17318
|
+
# `description`.
|
17319
|
+
#
|
17320
|
+
# </note>
|
17321
|
+
#
|
16297
17322
|
# @!attribute [rw] field_name
|
16298
17323
|
# The name of the field in the string condition.
|
16299
17324
|
# @return [String]
|
@@ -16458,13 +17483,49 @@ module Aws::Connect
|
|
16458
17483
|
include Aws::Structure
|
16459
17484
|
end
|
16460
17485
|
|
17486
|
+
# @!attribute [rw] contact_id
|
17487
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
17488
|
+
# @return [String]
|
17489
|
+
#
|
17490
|
+
# @!attribute [rw] instance_id
|
17491
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
17492
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
17493
|
+
#
|
17494
|
+
#
|
17495
|
+
#
|
17496
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
17497
|
+
# @return [String]
|
17498
|
+
#
|
17499
|
+
# @!attribute [rw] tags
|
17500
|
+
# The tags to be assigned to the contact resource. For example, \\\{
|
17501
|
+
# "Tags": \\\{"key1":"value1", "key2":"value2"\\} \\}.
|
17502
|
+
#
|
17503
|
+
# <note markdown="1"> Authorization is not supported by this tag.
|
17504
|
+
#
|
17505
|
+
# </note>
|
17506
|
+
# @return [Hash<String,String>]
|
17507
|
+
#
|
17508
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TagContactRequest AWS API Documentation
|
17509
|
+
#
|
17510
|
+
class TagContactRequest < Struct.new(
|
17511
|
+
:contact_id,
|
17512
|
+
:instance_id,
|
17513
|
+
:tags)
|
17514
|
+
SENSITIVE = []
|
17515
|
+
include Aws::Structure
|
17516
|
+
end
|
17517
|
+
|
17518
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TagContactResponse AWS API Documentation
|
17519
|
+
#
|
17520
|
+
class TagContactResponse < Aws::EmptyStructure; end
|
17521
|
+
|
16461
17522
|
# @!attribute [rw] resource_arn
|
16462
17523
|
# The Amazon Resource Name (ARN) of the resource.
|
16463
17524
|
# @return [String]
|
16464
17525
|
#
|
16465
17526
|
# @!attribute [rw] tags
|
16466
17527
|
# The tags used to organize, track, or control access for this
|
16467
|
-
# resource. For example, \\\{ "
|
17528
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
16468
17529
|
# "key2":"value2"\\} \\}.
|
16469
17530
|
# @return [Hash<String,String>]
|
16470
17531
|
#
|
@@ -16854,7 +17915,7 @@ module Aws::Connect
|
|
16854
17915
|
#
|
16855
17916
|
# @!attribute [rw] tags
|
16856
17917
|
# The tags used to organize, track, or control access for this
|
16857
|
-
# resource. For example, \\\{ "
|
17918
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
16858
17919
|
# "key2":"value2"\\} \\}.
|
16859
17920
|
# @return [Hash<String,String>]
|
16860
17921
|
#
|
@@ -16982,6 +18043,49 @@ module Aws::Connect
|
|
16982
18043
|
include Aws::Structure
|
16983
18044
|
end
|
16984
18045
|
|
18046
|
+
# The transcript object used to search results.
|
18047
|
+
#
|
18048
|
+
# @!attribute [rw] criteria
|
18049
|
+
# The array of transcript search criteria
|
18050
|
+
# @return [Array<Types::TranscriptCriteria>]
|
18051
|
+
#
|
18052
|
+
# @!attribute [rw] match_type
|
18053
|
+
# The match type of multiple transcript criteira
|
18054
|
+
# @return [String]
|
18055
|
+
#
|
18056
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Transcript AWS API Documentation
|
18057
|
+
#
|
18058
|
+
class Transcript < Struct.new(
|
18059
|
+
:criteria,
|
18060
|
+
:match_type)
|
18061
|
+
SENSITIVE = []
|
18062
|
+
include Aws::Structure
|
18063
|
+
end
|
18064
|
+
|
18065
|
+
# The transcript criteria used to search
|
18066
|
+
#
|
18067
|
+
# @!attribute [rw] participant_role
|
18068
|
+
# The participant role in a transcript
|
18069
|
+
# @return [String]
|
18070
|
+
#
|
18071
|
+
# @!attribute [rw] search_text
|
18072
|
+
# The words or phrases used to search within a transcript.
|
18073
|
+
# @return [Array<String>]
|
18074
|
+
#
|
18075
|
+
# @!attribute [rw] match_type
|
18076
|
+
# The match type of search texts in a transcript criteria.
|
18077
|
+
# @return [String]
|
18078
|
+
#
|
18079
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TranscriptCriteria AWS API Documentation
|
18080
|
+
#
|
18081
|
+
class TranscriptCriteria < Struct.new(
|
18082
|
+
:participant_role,
|
18083
|
+
:search_text,
|
18084
|
+
:match_type)
|
18085
|
+
SENSITIVE = []
|
18086
|
+
include Aws::Structure
|
18087
|
+
end
|
18088
|
+
|
16985
18089
|
# @!attribute [rw] instance_id
|
16986
18090
|
# The identifier of the Amazon Connect instance. You can [find the
|
16987
18091
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -17052,6 +18156,38 @@ module Aws::Connect
|
|
17052
18156
|
include Aws::Structure
|
17053
18157
|
end
|
17054
18158
|
|
18159
|
+
# @!attribute [rw] contact_id
|
18160
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
18161
|
+
# @return [String]
|
18162
|
+
#
|
18163
|
+
# @!attribute [rw] instance_id
|
18164
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
18165
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
18166
|
+
#
|
18167
|
+
#
|
18168
|
+
#
|
18169
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
18170
|
+
# @return [String]
|
18171
|
+
#
|
18172
|
+
# @!attribute [rw] tag_keys
|
18173
|
+
# A list of tag keys. Existing tags on the contact whose keys are
|
18174
|
+
# members of this list will be removed.
|
18175
|
+
# @return [Array<String>]
|
18176
|
+
#
|
18177
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UntagContactRequest AWS API Documentation
|
18178
|
+
#
|
18179
|
+
class UntagContactRequest < Struct.new(
|
18180
|
+
:contact_id,
|
18181
|
+
:instance_id,
|
18182
|
+
:tag_keys)
|
18183
|
+
SENSITIVE = []
|
18184
|
+
include Aws::Structure
|
18185
|
+
end
|
18186
|
+
|
18187
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UntagContactResponse AWS API Documentation
|
18188
|
+
#
|
18189
|
+
class UntagContactResponse < Aws::EmptyStructure; end
|
18190
|
+
|
17055
18191
|
# @!attribute [rw] resource_arn
|
17056
18192
|
# The Amazon Resource Name (ARN) of the resource.
|
17057
18193
|
# @return [String]
|
@@ -17116,6 +18252,20 @@ module Aws::Connect
|
|
17116
18252
|
include Aws::Structure
|
17117
18253
|
end
|
17118
18254
|
|
18255
|
+
# The `UpdateCase` action definition.
|
18256
|
+
#
|
18257
|
+
# @!attribute [rw] fields
|
18258
|
+
# An array of objects with `Field ID` and Value data.
|
18259
|
+
# @return [Array<Types::FieldValue>]
|
18260
|
+
#
|
18261
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateCaseActionDefinition AWS API Documentation
|
18262
|
+
#
|
18263
|
+
class UpdateCaseActionDefinition < Struct.new(
|
18264
|
+
:fields)
|
18265
|
+
SENSITIVE = []
|
18266
|
+
include Aws::Structure
|
18267
|
+
end
|
18268
|
+
|
17119
18269
|
# @!attribute [rw] initial_contact_id
|
17120
18270
|
# The identifier of the contact. This is the identifier of the contact
|
17121
18271
|
# associated with the first interaction with the contact center.
|
@@ -17427,6 +18577,48 @@ module Aws::Connect
|
|
17427
18577
|
#
|
17428
18578
|
class UpdateContactResponse < Aws::EmptyStructure; end
|
17429
18579
|
|
18580
|
+
# @!attribute [rw] instance_id
|
18581
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
18582
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
18583
|
+
#
|
18584
|
+
#
|
18585
|
+
#
|
18586
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
18587
|
+
# @return [String]
|
18588
|
+
#
|
18589
|
+
# @!attribute [rw] contact_id
|
18590
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
18591
|
+
# @return [String]
|
18592
|
+
#
|
18593
|
+
# @!attribute [rw] queue_time_adjustment_seconds
|
18594
|
+
# The number of seconds to add or subtract from the contact's routing
|
18595
|
+
# age. Contacts are routed to agents on a first-come, first-serve
|
18596
|
+
# basis. This means that changing their amount of time in queue
|
18597
|
+
# compared to others also changes their position in queue.
|
18598
|
+
# @return [Integer]
|
18599
|
+
#
|
18600
|
+
# @!attribute [rw] queue_priority
|
18601
|
+
# Priority of the contact in the queue. The default priority for new
|
18602
|
+
# contacts is 5. You can raise the priority of a contact compared to
|
18603
|
+
# other contacts in the queue by assigning them a higher priority,
|
18604
|
+
# such as 1 or 2.
|
18605
|
+
# @return [Integer]
|
18606
|
+
#
|
18607
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactRoutingDataRequest AWS API Documentation
|
18608
|
+
#
|
18609
|
+
class UpdateContactRoutingDataRequest < Struct.new(
|
18610
|
+
:instance_id,
|
18611
|
+
:contact_id,
|
18612
|
+
:queue_time_adjustment_seconds,
|
18613
|
+
:queue_priority)
|
18614
|
+
SENSITIVE = []
|
18615
|
+
include Aws::Structure
|
18616
|
+
end
|
18617
|
+
|
18618
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactRoutingDataResponse AWS API Documentation
|
18619
|
+
#
|
18620
|
+
class UpdateContactRoutingDataResponse < Aws::EmptyStructure; end
|
18621
|
+
|
17430
18622
|
# @!attribute [rw] instance_id
|
17431
18623
|
# The identifier of the Amazon Connect instance. You can [find the
|
17432
18624
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -17806,6 +18998,29 @@ module Aws::Connect
|
|
17806
18998
|
include Aws::Structure
|
17807
18999
|
end
|
17808
19000
|
|
19001
|
+
# @!attribute [rw] instance_id
|
19002
|
+
# The identifier of the Amazon Connect instance. You can find the
|
19003
|
+
# instance ID in the Amazon Resource Name (ARN) of the instance.
|
19004
|
+
# @return [String]
|
19005
|
+
#
|
19006
|
+
# @!attribute [rw] name
|
19007
|
+
# The name of the predefined attribute.
|
19008
|
+
# @return [String]
|
19009
|
+
#
|
19010
|
+
# @!attribute [rw] values
|
19011
|
+
# The values of the predefined attribute.
|
19012
|
+
# @return [Types::PredefinedAttributeValues]
|
19013
|
+
#
|
19014
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdatePredefinedAttributeRequest AWS API Documentation
|
19015
|
+
#
|
19016
|
+
class UpdatePredefinedAttributeRequest < Struct.new(
|
19017
|
+
:instance_id,
|
19018
|
+
:name,
|
19019
|
+
:values)
|
19020
|
+
SENSITIVE = []
|
19021
|
+
include Aws::Structure
|
19022
|
+
end
|
19023
|
+
|
17809
19024
|
# @!attribute [rw] instance_id
|
17810
19025
|
# The identifier of the Amazon Connect instance. You can [find the
|
17811
19026
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -18621,6 +19836,31 @@ module Aws::Connect
|
|
18621
19836
|
include Aws::Structure
|
18622
19837
|
end
|
18623
19838
|
|
19839
|
+
# @!attribute [rw] instance_id
|
19840
|
+
# The identifier of the Amazon Connect instance. You can find the
|
19841
|
+
# instance ID in the Amazon Resource Name (ARN) of the instance.
|
19842
|
+
# @return [String]
|
19843
|
+
#
|
19844
|
+
# @!attribute [rw] user_id
|
19845
|
+
# The identifier of the user account.
|
19846
|
+
# @return [String]
|
19847
|
+
#
|
19848
|
+
# @!attribute [rw] user_proficiencies
|
19849
|
+
# The proficiencies to be updated for the user. Proficiencies must
|
19850
|
+
# first be associated to the user. You can do this using
|
19851
|
+
# AssociateUserProficiencies API.
|
19852
|
+
# @return [Array<Types::UserProficiency>]
|
19853
|
+
#
|
19854
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserProficienciesRequest AWS API Documentation
|
19855
|
+
#
|
19856
|
+
class UpdateUserProficienciesRequest < Struct.new(
|
19857
|
+
:instance_id,
|
19858
|
+
:user_id,
|
19859
|
+
:user_proficiencies)
|
19860
|
+
SENSITIVE = []
|
19861
|
+
include Aws::Structure
|
19862
|
+
end
|
19863
|
+
|
18624
19864
|
# @!attribute [rw] routing_profile_id
|
18625
19865
|
# The identifier of the routing profile for the user.
|
18626
19866
|
# @return [String]
|
@@ -19083,6 +20323,51 @@ module Aws::Connect
|
|
19083
20323
|
include Aws::Structure
|
19084
20324
|
end
|
19085
20325
|
|
20326
|
+
# Information about proficiency of a user.
|
20327
|
+
#
|
20328
|
+
# @!attribute [rw] attribute_name
|
20329
|
+
# The name of user's proficiency. You must use name of predefined
|
20330
|
+
# attribute present in the Amazon Connect instance.
|
20331
|
+
# @return [String]
|
20332
|
+
#
|
20333
|
+
# @!attribute [rw] attribute_value
|
20334
|
+
# The value of user's proficiency. You must use value of predefined
|
20335
|
+
# attribute present in the Amazon Connect instance.
|
20336
|
+
# @return [String]
|
20337
|
+
#
|
20338
|
+
# @!attribute [rw] level
|
20339
|
+
# The level of the proficiency. The valid values are 1, 2, 3, 4 and 5.
|
20340
|
+
# @return [Float]
|
20341
|
+
#
|
20342
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserProficiency AWS API Documentation
|
20343
|
+
#
|
20344
|
+
class UserProficiency < Struct.new(
|
20345
|
+
:attribute_name,
|
20346
|
+
:attribute_value,
|
20347
|
+
:level)
|
20348
|
+
SENSITIVE = []
|
20349
|
+
include Aws::Structure
|
20350
|
+
end
|
20351
|
+
|
20352
|
+
# Information about proficiency to be disassociated from the user.
|
20353
|
+
#
|
20354
|
+
# @!attribute [rw] attribute_name
|
20355
|
+
# The name of user's proficiency.
|
20356
|
+
# @return [String]
|
20357
|
+
#
|
20358
|
+
# @!attribute [rw] attribute_value
|
20359
|
+
# The value of user's proficiency.
|
20360
|
+
# @return [String]
|
20361
|
+
#
|
20362
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserProficiencyDisassociate AWS API Documentation
|
20363
|
+
#
|
20364
|
+
class UserProficiencyDisassociate < Struct.new(
|
20365
|
+
:attribute_name,
|
20366
|
+
:attribute_value)
|
20367
|
+
SENSITIVE = []
|
20368
|
+
include Aws::Structure
|
20369
|
+
end
|
20370
|
+
|
19086
20371
|
# Contains information about the quick connect configuration settings
|
19087
20372
|
# for a user. The contact flow must be of type Transfer to Agent.
|
19088
20373
|
#
|
@@ -19226,7 +20511,7 @@ module Aws::Connect
|
|
19226
20511
|
#
|
19227
20512
|
# @!attribute [rw] tags
|
19228
20513
|
# The tags used to organize, track, or control access for this
|
19229
|
-
# resource. For example, \\\{ "
|
20514
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
19230
20515
|
# "key2":"value2"\\} \\}.
|
19231
20516
|
# @return [Hash<String,String>]
|
19232
20517
|
#
|
@@ -19546,7 +20831,7 @@ module Aws::Connect
|
|
19546
20831
|
#
|
19547
20832
|
# @!attribute [rw] tags
|
19548
20833
|
# The tags used to organize, track, or control access for this
|
19549
|
-
# resource. For example, \\\{ "
|
20834
|
+
# resource. For example, \\\{ "Tags": \\\{"key1":"value1",
|
19550
20835
|
# "key2":"value2"\\} \\}.
|
19551
20836
|
# @return [Hash<String,String>]
|
19552
20837
|
#
|