aws-sdk-connect 1.22.0 → 1.27.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 +5 -5
- data/lib/aws-sdk-connect.rb +9 -4
- data/lib/aws-sdk-connect/client.rb +92 -14
- data/lib/aws-sdk-connect/client_api.rb +2 -0
- data/lib/aws-sdk-connect/errors.rb +35 -11
- data/lib/aws-sdk-connect/resource.rb +3 -0
- data/lib/aws-sdk-connect/types.rb +89 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 40113a8d40fd591d8df59a811bb76175bfa838628ff89665e154deadc17305fd
|
4
|
+
data.tar.gz: 3ef243fd2bbf2328c7a49626d4bc40804ca16ee4eca90ab8cf61e6c941425303
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52328f8059bb069aba009a945464f706245a7836d7cde4d6a62f6f6cbb14ca9d73eb736dcf0f47cfda4bd74a6c7a1001e11f62706d2b9607da329065346ce546
|
7
|
+
data.tar.gz: 11256b7937c0ec8ac8cd8e4e2596233be8ac5b4563dca7c64b530ac779067b2a4800665ad59d65c8109a7087212abd354824a40216b478e21cca03130d10911e
|
data/lib/aws-sdk-connect.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-connect/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# connect = Aws::Connect::Client.new
|
30
|
+
# resp = connect.create_user(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from Amazon Connect Service
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from Amazon Connect Service are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::Connect::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all Amazon Connect Service API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-connect/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::Connect
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.27.0'
|
46
51
|
|
47
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:connect)
|
31
34
|
|
32
35
|
module Aws::Connect
|
36
|
+
# An API client for Connect. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::Connect::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::Connect
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::Connect
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::Connect
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::Connect
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::Connect
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::Connect
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::Connect
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::Connect
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::Connect
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::Connect
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -652,6 +710,8 @@ module Aws::Connect
|
|
652
710
|
# * {Types::GetCurrentMetricDataResponse#metric_results #metric_results} => Array<Types::CurrentMetricResult>
|
653
711
|
# * {Types::GetCurrentMetricDataResponse#data_snapshot_time #data_snapshot_time} => Time
|
654
712
|
#
|
713
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
714
|
+
#
|
655
715
|
# @example Request syntax with placeholder values
|
656
716
|
#
|
657
717
|
# resp = client.get_current_metric_data({
|
@@ -944,6 +1004,8 @@ module Aws::Connect
|
|
944
1004
|
# * {Types::GetMetricDataResponse#next_token #next_token} => String
|
945
1005
|
# * {Types::GetMetricDataResponse#metric_results #metric_results} => Array<Types::HistoricalMetricResult>
|
946
1006
|
#
|
1007
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1008
|
+
#
|
947
1009
|
# @example Request syntax with placeholder values
|
948
1010
|
#
|
949
1011
|
# resp = client.get_metric_data({
|
@@ -1016,6 +1078,8 @@ module Aws::Connect
|
|
1016
1078
|
# * {Types::ListContactFlowsResponse#contact_flow_summary_list #contact_flow_summary_list} => Array<Types::ContactFlowSummary>
|
1017
1079
|
# * {Types::ListContactFlowsResponse#next_token #next_token} => String
|
1018
1080
|
#
|
1081
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1082
|
+
#
|
1019
1083
|
# @example Request syntax with placeholder values
|
1020
1084
|
#
|
1021
1085
|
# resp = client.list_contact_flows({
|
@@ -1062,6 +1126,8 @@ module Aws::Connect
|
|
1062
1126
|
# * {Types::ListHoursOfOperationsResponse#hours_of_operation_summary_list #hours_of_operation_summary_list} => Array<Types::HoursOfOperationSummary>
|
1063
1127
|
# * {Types::ListHoursOfOperationsResponse#next_token #next_token} => String
|
1064
1128
|
#
|
1129
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1130
|
+
#
|
1065
1131
|
# @example Request syntax with placeholder values
|
1066
1132
|
#
|
1067
1133
|
# resp = client.list_hours_of_operations({
|
@@ -1112,6 +1178,8 @@ module Aws::Connect
|
|
1112
1178
|
# * {Types::ListPhoneNumbersResponse#phone_number_summary_list #phone_number_summary_list} => Array<Types::PhoneNumberSummary>
|
1113
1179
|
# * {Types::ListPhoneNumbersResponse#next_token #next_token} => String
|
1114
1180
|
#
|
1181
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1182
|
+
#
|
1115
1183
|
# @example Request syntax with placeholder values
|
1116
1184
|
#
|
1117
1185
|
# resp = client.list_phone_numbers({
|
@@ -1163,6 +1231,8 @@ module Aws::Connect
|
|
1163
1231
|
# * {Types::ListQueuesResponse#queue_summary_list #queue_summary_list} => Array<Types::QueueSummary>
|
1164
1232
|
# * {Types::ListQueuesResponse#next_token #next_token} => String
|
1165
1233
|
#
|
1234
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1235
|
+
#
|
1166
1236
|
# @example Request syntax with placeholder values
|
1167
1237
|
#
|
1168
1238
|
# resp = client.list_queues({
|
@@ -1209,6 +1279,8 @@ module Aws::Connect
|
|
1209
1279
|
# * {Types::ListRoutingProfilesResponse#routing_profile_summary_list #routing_profile_summary_list} => Array<Types::RoutingProfileSummary>
|
1210
1280
|
# * {Types::ListRoutingProfilesResponse#next_token #next_token} => String
|
1211
1281
|
#
|
1282
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1283
|
+
#
|
1212
1284
|
# @example Request syntax with placeholder values
|
1213
1285
|
#
|
1214
1286
|
# resp = client.list_routing_profiles({
|
@@ -1253,6 +1325,8 @@ module Aws::Connect
|
|
1253
1325
|
# * {Types::ListSecurityProfilesResponse#security_profile_summary_list #security_profile_summary_list} => Array<Types::SecurityProfileSummary>
|
1254
1326
|
# * {Types::ListSecurityProfilesResponse#next_token #next_token} => String
|
1255
1327
|
#
|
1328
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1329
|
+
#
|
1256
1330
|
# @example Request syntax with placeholder values
|
1257
1331
|
#
|
1258
1332
|
# resp = client.list_security_profiles({
|
@@ -1326,6 +1400,8 @@ module Aws::Connect
|
|
1326
1400
|
# * {Types::ListUserHierarchyGroupsResponse#user_hierarchy_group_summary_list #user_hierarchy_group_summary_list} => Array<Types::HierarchyGroupSummary>
|
1327
1401
|
# * {Types::ListUserHierarchyGroupsResponse#next_token #next_token} => String
|
1328
1402
|
#
|
1403
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1404
|
+
#
|
1329
1405
|
# @example Request syntax with placeholder values
|
1330
1406
|
#
|
1331
1407
|
# resp = client.list_user_hierarchy_groups({
|
@@ -1370,6 +1446,8 @@ module Aws::Connect
|
|
1370
1446
|
# * {Types::ListUsersResponse#user_summary_list #user_summary_list} => Array<Types::UserSummary>
|
1371
1447
|
# * {Types::ListUsersResponse#next_token #next_token} => String
|
1372
1448
|
#
|
1449
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1450
|
+
#
|
1373
1451
|
# @example Request syntax with placeholder values
|
1374
1452
|
#
|
1375
1453
|
# resp = client.list_users({
|
@@ -1866,7 +1944,7 @@ module Aws::Connect
|
|
1866
1944
|
params: params,
|
1867
1945
|
config: config)
|
1868
1946
|
context[:gem_name] = 'aws-sdk-connect'
|
1869
|
-
context[:gem_version] = '1.
|
1947
|
+
context[:gem_version] = '1.27.0'
|
1870
1948
|
Seahorse::Client::Request.new(handlers, context)
|
1871
1949
|
end
|
1872
1950
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,39 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Connect
|
11
|
+
|
12
|
+
# When Connect returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::Connect::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all Connect errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::Connect::Errors::ServiceError
|
20
|
+
# # rescues all Connect API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {ContactNotFoundException}
|
31
|
+
# * {DestinationNotAllowedException}
|
32
|
+
# * {DuplicateResourceException}
|
33
|
+
# * {InternalServiceException}
|
34
|
+
# * {InvalidParameterException}
|
35
|
+
# * {InvalidRequestException}
|
36
|
+
# * {LimitExceededException}
|
37
|
+
# * {OutboundContactNotPermittedException}
|
38
|
+
# * {ResourceNotFoundException}
|
39
|
+
# * {ThrottlingException}
|
40
|
+
# * {UserNotFoundException}
|
41
|
+
#
|
42
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
43
|
+
# if they are not defined above.
|
9
44
|
module Errors
|
10
45
|
|
11
46
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +58,6 @@ module Aws::Connect
|
|
23
58
|
def message
|
24
59
|
@message || @data[:message]
|
25
60
|
end
|
26
|
-
|
27
61
|
end
|
28
62
|
|
29
63
|
class DestinationNotAllowedException < ServiceError
|
@@ -39,7 +73,6 @@ module Aws::Connect
|
|
39
73
|
def message
|
40
74
|
@message || @data[:message]
|
41
75
|
end
|
42
|
-
|
43
76
|
end
|
44
77
|
|
45
78
|
class DuplicateResourceException < ServiceError
|
@@ -55,7 +88,6 @@ module Aws::Connect
|
|
55
88
|
def message
|
56
89
|
@message || @data[:message]
|
57
90
|
end
|
58
|
-
|
59
91
|
end
|
60
92
|
|
61
93
|
class InternalServiceException < ServiceError
|
@@ -71,7 +103,6 @@ module Aws::Connect
|
|
71
103
|
def message
|
72
104
|
@message || @data[:message]
|
73
105
|
end
|
74
|
-
|
75
106
|
end
|
76
107
|
|
77
108
|
class InvalidParameterException < ServiceError
|
@@ -87,7 +118,6 @@ module Aws::Connect
|
|
87
118
|
def message
|
88
119
|
@message || @data[:message]
|
89
120
|
end
|
90
|
-
|
91
121
|
end
|
92
122
|
|
93
123
|
class InvalidRequestException < ServiceError
|
@@ -103,7 +133,6 @@ module Aws::Connect
|
|
103
133
|
def message
|
104
134
|
@message || @data[:message]
|
105
135
|
end
|
106
|
-
|
107
136
|
end
|
108
137
|
|
109
138
|
class LimitExceededException < ServiceError
|
@@ -119,7 +148,6 @@ module Aws::Connect
|
|
119
148
|
def message
|
120
149
|
@message || @data[:message]
|
121
150
|
end
|
122
|
-
|
123
151
|
end
|
124
152
|
|
125
153
|
class OutboundContactNotPermittedException < ServiceError
|
@@ -135,7 +163,6 @@ module Aws::Connect
|
|
135
163
|
def message
|
136
164
|
@message || @data[:message]
|
137
165
|
end
|
138
|
-
|
139
166
|
end
|
140
167
|
|
141
168
|
class ResourceNotFoundException < ServiceError
|
@@ -151,7 +178,6 @@ module Aws::Connect
|
|
151
178
|
def message
|
152
179
|
@message || @data[:message]
|
153
180
|
end
|
154
|
-
|
155
181
|
end
|
156
182
|
|
157
183
|
class ThrottlingException < ServiceError
|
@@ -167,7 +193,6 @@ module Aws::Connect
|
|
167
193
|
def message
|
168
194
|
@message || @data[:message]
|
169
195
|
end
|
170
|
-
|
171
196
|
end
|
172
197
|
|
173
198
|
class UserNotFoundException < ServiceError
|
@@ -183,7 +208,6 @@ module Aws::Connect
|
|
183
208
|
def message
|
184
209
|
@message || @data[:message]
|
185
210
|
end
|
186
|
-
|
187
211
|
end
|
188
212
|
|
189
213
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Connect
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -31,6 +33,7 @@ module Aws::Connect
|
|
31
33
|
class ChatMessage < Struct.new(
|
32
34
|
:content_type,
|
33
35
|
:content)
|
36
|
+
SENSITIVE = []
|
34
37
|
include Aws::Structure
|
35
38
|
end
|
36
39
|
|
@@ -59,6 +62,7 @@ module Aws::Connect
|
|
59
62
|
:arn,
|
60
63
|
:name,
|
61
64
|
:contact_flow_type)
|
65
|
+
SENSITIVE = []
|
62
66
|
include Aws::Structure
|
63
67
|
end
|
64
68
|
|
@@ -72,6 +76,7 @@ module Aws::Connect
|
|
72
76
|
#
|
73
77
|
class ContactNotFoundException < Struct.new(
|
74
78
|
:message)
|
79
|
+
SENSITIVE = []
|
75
80
|
include Aws::Structure
|
76
81
|
end
|
77
82
|
|
@@ -171,6 +176,7 @@ module Aws::Connect
|
|
171
176
|
:hierarchy_group_id,
|
172
177
|
:instance_id,
|
173
178
|
:tags)
|
179
|
+
SENSITIVE = []
|
174
180
|
include Aws::Structure
|
175
181
|
end
|
176
182
|
|
@@ -187,6 +193,7 @@ module Aws::Connect
|
|
187
193
|
class CreateUserResponse < Struct.new(
|
188
194
|
:user_id,
|
189
195
|
:user_arn)
|
196
|
+
SENSITIVE = []
|
190
197
|
include Aws::Structure
|
191
198
|
end
|
192
199
|
|
@@ -218,6 +225,7 @@ module Aws::Connect
|
|
218
225
|
:access_token_expiration,
|
219
226
|
:refresh_token,
|
220
227
|
:refresh_token_expiration)
|
228
|
+
SENSITIVE = [:access_token, :refresh_token]
|
221
229
|
include Aws::Structure
|
222
230
|
end
|
223
231
|
|
@@ -244,6 +252,7 @@ module Aws::Connect
|
|
244
252
|
class CurrentMetric < Struct.new(
|
245
253
|
:name,
|
246
254
|
:unit)
|
255
|
+
SENSITIVE = []
|
247
256
|
include Aws::Structure
|
248
257
|
end
|
249
258
|
|
@@ -262,6 +271,7 @@ module Aws::Connect
|
|
262
271
|
class CurrentMetricData < Struct.new(
|
263
272
|
:metric,
|
264
273
|
:value)
|
274
|
+
SENSITIVE = []
|
265
275
|
include Aws::Structure
|
266
276
|
end
|
267
277
|
|
@@ -280,6 +290,7 @@ module Aws::Connect
|
|
280
290
|
class CurrentMetricResult < Struct.new(
|
281
291
|
:dimensions,
|
282
292
|
:collections)
|
293
|
+
SENSITIVE = []
|
283
294
|
include Aws::Structure
|
284
295
|
end
|
285
296
|
|
@@ -304,6 +315,7 @@ module Aws::Connect
|
|
304
315
|
class DeleteUserRequest < Struct.new(
|
305
316
|
:instance_id,
|
306
317
|
:user_id)
|
318
|
+
SENSITIVE = []
|
307
319
|
include Aws::Structure
|
308
320
|
end
|
309
321
|
|
@@ -328,6 +340,7 @@ module Aws::Connect
|
|
328
340
|
class DescribeUserHierarchyGroupRequest < Struct.new(
|
329
341
|
:hierarchy_group_id,
|
330
342
|
:instance_id)
|
343
|
+
SENSITIVE = []
|
331
344
|
include Aws::Structure
|
332
345
|
end
|
333
346
|
|
@@ -339,6 +352,7 @@ module Aws::Connect
|
|
339
352
|
#
|
340
353
|
class DescribeUserHierarchyGroupResponse < Struct.new(
|
341
354
|
:hierarchy_group)
|
355
|
+
SENSITIVE = []
|
342
356
|
include Aws::Structure
|
343
357
|
end
|
344
358
|
|
@@ -357,6 +371,7 @@ module Aws::Connect
|
|
357
371
|
#
|
358
372
|
class DescribeUserHierarchyStructureRequest < Struct.new(
|
359
373
|
:instance_id)
|
374
|
+
SENSITIVE = []
|
360
375
|
include Aws::Structure
|
361
376
|
end
|
362
377
|
|
@@ -368,6 +383,7 @@ module Aws::Connect
|
|
368
383
|
#
|
369
384
|
class DescribeUserHierarchyStructureResponse < Struct.new(
|
370
385
|
:hierarchy_structure)
|
386
|
+
SENSITIVE = []
|
371
387
|
include Aws::Structure
|
372
388
|
end
|
373
389
|
|
@@ -392,6 +408,7 @@ module Aws::Connect
|
|
392
408
|
class DescribeUserRequest < Struct.new(
|
393
409
|
:user_id,
|
394
410
|
:instance_id)
|
411
|
+
SENSITIVE = []
|
395
412
|
include Aws::Structure
|
396
413
|
end
|
397
414
|
|
@@ -403,6 +420,7 @@ module Aws::Connect
|
|
403
420
|
#
|
404
421
|
class DescribeUserResponse < Struct.new(
|
405
422
|
:user)
|
423
|
+
SENSITIVE = []
|
406
424
|
include Aws::Structure
|
407
425
|
end
|
408
426
|
|
@@ -416,6 +434,7 @@ module Aws::Connect
|
|
416
434
|
#
|
417
435
|
class DestinationNotAllowedException < Struct.new(
|
418
436
|
:message)
|
437
|
+
SENSITIVE = []
|
419
438
|
include Aws::Structure
|
420
439
|
end
|
421
440
|
|
@@ -434,6 +453,7 @@ module Aws::Connect
|
|
434
453
|
class Dimensions < Struct.new(
|
435
454
|
:queue,
|
436
455
|
:channel)
|
456
|
+
SENSITIVE = []
|
437
457
|
include Aws::Structure
|
438
458
|
end
|
439
459
|
|
@@ -446,6 +466,7 @@ module Aws::Connect
|
|
446
466
|
#
|
447
467
|
class DuplicateResourceException < Struct.new(
|
448
468
|
:message)
|
469
|
+
SENSITIVE = []
|
449
470
|
include Aws::Structure
|
450
471
|
end
|
451
472
|
|
@@ -473,6 +494,7 @@ module Aws::Connect
|
|
473
494
|
class Filters < Struct.new(
|
474
495
|
:queues,
|
475
496
|
:channels)
|
497
|
+
SENSITIVE = []
|
476
498
|
include Aws::Structure
|
477
499
|
end
|
478
500
|
|
@@ -497,6 +519,7 @@ module Aws::Connect
|
|
497
519
|
class GetContactAttributesRequest < Struct.new(
|
498
520
|
:instance_id,
|
499
521
|
:initial_contact_id)
|
522
|
+
SENSITIVE = []
|
500
523
|
include Aws::Structure
|
501
524
|
end
|
502
525
|
|
@@ -508,6 +531,7 @@ module Aws::Connect
|
|
508
531
|
#
|
509
532
|
class GetContactAttributesResponse < Struct.new(
|
510
533
|
:attributes)
|
534
|
+
SENSITIVE = []
|
511
535
|
include Aws::Structure
|
512
536
|
end
|
513
537
|
|
@@ -634,6 +658,7 @@ module Aws::Connect
|
|
634
658
|
:current_metrics,
|
635
659
|
:next_token,
|
636
660
|
:max_results)
|
661
|
+
SENSITIVE = []
|
637
662
|
include Aws::Structure
|
638
663
|
end
|
639
664
|
|
@@ -661,6 +686,7 @@ module Aws::Connect
|
|
661
686
|
:next_token,
|
662
687
|
:metric_results,
|
663
688
|
:data_snapshot_time)
|
689
|
+
SENSITIVE = []
|
664
690
|
include Aws::Structure
|
665
691
|
end
|
666
692
|
|
@@ -679,6 +705,7 @@ module Aws::Connect
|
|
679
705
|
#
|
680
706
|
class GetFederationTokenRequest < Struct.new(
|
681
707
|
:instance_id)
|
708
|
+
SENSITIVE = []
|
682
709
|
include Aws::Structure
|
683
710
|
end
|
684
711
|
|
@@ -690,6 +717,7 @@ module Aws::Connect
|
|
690
717
|
#
|
691
718
|
class GetFederationTokenResponse < Struct.new(
|
692
719
|
:credentials)
|
720
|
+
SENSITIVE = []
|
693
721
|
include Aws::Structure
|
694
722
|
end
|
695
723
|
|
@@ -945,6 +973,7 @@ module Aws::Connect
|
|
945
973
|
:historical_metrics,
|
946
974
|
:next_token,
|
947
975
|
:max_results)
|
976
|
+
SENSITIVE = []
|
948
977
|
include Aws::Structure
|
949
978
|
end
|
950
979
|
|
@@ -968,6 +997,7 @@ module Aws::Connect
|
|
968
997
|
class GetMetricDataResponse < Struct.new(
|
969
998
|
:next_token,
|
970
999
|
:metric_results)
|
1000
|
+
SENSITIVE = []
|
971
1001
|
include Aws::Structure
|
972
1002
|
end
|
973
1003
|
|
@@ -1001,6 +1031,7 @@ module Aws::Connect
|
|
1001
1031
|
:name,
|
1002
1032
|
:level_id,
|
1003
1033
|
:hierarchy_path)
|
1034
|
+
SENSITIVE = []
|
1004
1035
|
include Aws::Structure
|
1005
1036
|
end
|
1006
1037
|
|
@@ -1024,6 +1055,7 @@ module Aws::Connect
|
|
1024
1055
|
:id,
|
1025
1056
|
:arn,
|
1026
1057
|
:name)
|
1058
|
+
SENSITIVE = []
|
1027
1059
|
include Aws::Structure
|
1028
1060
|
end
|
1029
1061
|
|
@@ -1047,6 +1079,7 @@ module Aws::Connect
|
|
1047
1079
|
:id,
|
1048
1080
|
:arn,
|
1049
1081
|
:name)
|
1082
|
+
SENSITIVE = []
|
1050
1083
|
include Aws::Structure
|
1051
1084
|
end
|
1052
1085
|
|
@@ -1080,6 +1113,7 @@ module Aws::Connect
|
|
1080
1113
|
:level_three,
|
1081
1114
|
:level_four,
|
1082
1115
|
:level_five)
|
1116
|
+
SENSITIVE = []
|
1083
1117
|
include Aws::Structure
|
1084
1118
|
end
|
1085
1119
|
|
@@ -1113,6 +1147,7 @@ module Aws::Connect
|
|
1113
1147
|
:level_three,
|
1114
1148
|
:level_four,
|
1115
1149
|
:level_five)
|
1150
|
+
SENSITIVE = []
|
1116
1151
|
include Aws::Structure
|
1117
1152
|
end
|
1118
1153
|
|
@@ -1154,6 +1189,7 @@ module Aws::Connect
|
|
1154
1189
|
:threshold,
|
1155
1190
|
:statistic,
|
1156
1191
|
:unit)
|
1192
|
+
SENSITIVE = []
|
1157
1193
|
include Aws::Structure
|
1158
1194
|
end
|
1159
1195
|
|
@@ -1172,6 +1208,7 @@ module Aws::Connect
|
|
1172
1208
|
class HistoricalMetricData < Struct.new(
|
1173
1209
|
:metric,
|
1174
1210
|
:value)
|
1211
|
+
SENSITIVE = []
|
1175
1212
|
include Aws::Structure
|
1176
1213
|
end
|
1177
1214
|
|
@@ -1190,6 +1227,7 @@ module Aws::Connect
|
|
1190
1227
|
class HistoricalMetricResult < Struct.new(
|
1191
1228
|
:dimensions,
|
1192
1229
|
:collections)
|
1230
|
+
SENSITIVE = []
|
1193
1231
|
include Aws::Structure
|
1194
1232
|
end
|
1195
1233
|
|
@@ -1214,6 +1252,7 @@ module Aws::Connect
|
|
1214
1252
|
:id,
|
1215
1253
|
:arn,
|
1216
1254
|
:name)
|
1255
|
+
SENSITIVE = []
|
1217
1256
|
include Aws::Structure
|
1218
1257
|
end
|
1219
1258
|
|
@@ -1227,6 +1266,7 @@ module Aws::Connect
|
|
1227
1266
|
#
|
1228
1267
|
class InternalServiceException < Struct.new(
|
1229
1268
|
:message)
|
1269
|
+
SENSITIVE = []
|
1230
1270
|
include Aws::Structure
|
1231
1271
|
end
|
1232
1272
|
|
@@ -1240,6 +1280,7 @@ module Aws::Connect
|
|
1240
1280
|
#
|
1241
1281
|
class InvalidParameterException < Struct.new(
|
1242
1282
|
:message)
|
1283
|
+
SENSITIVE = []
|
1243
1284
|
include Aws::Structure
|
1244
1285
|
end
|
1245
1286
|
|
@@ -1253,6 +1294,7 @@ module Aws::Connect
|
|
1253
1294
|
#
|
1254
1295
|
class InvalidRequestException < Struct.new(
|
1255
1296
|
:message)
|
1297
|
+
SENSITIVE = []
|
1256
1298
|
include Aws::Structure
|
1257
1299
|
end
|
1258
1300
|
|
@@ -1266,6 +1308,7 @@ module Aws::Connect
|
|
1266
1308
|
#
|
1267
1309
|
class LimitExceededException < Struct.new(
|
1268
1310
|
:message)
|
1311
|
+
SENSITIVE = []
|
1269
1312
|
include Aws::Structure
|
1270
1313
|
end
|
1271
1314
|
|
@@ -1304,6 +1347,7 @@ module Aws::Connect
|
|
1304
1347
|
:contact_flow_types,
|
1305
1348
|
:next_token,
|
1306
1349
|
:max_results)
|
1350
|
+
SENSITIVE = []
|
1307
1351
|
include Aws::Structure
|
1308
1352
|
end
|
1309
1353
|
|
@@ -1321,6 +1365,7 @@ module Aws::Connect
|
|
1321
1365
|
class ListContactFlowsResponse < Struct.new(
|
1322
1366
|
:contact_flow_summary_list,
|
1323
1367
|
:next_token)
|
1368
|
+
SENSITIVE = []
|
1324
1369
|
include Aws::Structure
|
1325
1370
|
end
|
1326
1371
|
|
@@ -1353,6 +1398,7 @@ module Aws::Connect
|
|
1353
1398
|
:instance_id,
|
1354
1399
|
:next_token,
|
1355
1400
|
:max_results)
|
1401
|
+
SENSITIVE = []
|
1356
1402
|
include Aws::Structure
|
1357
1403
|
end
|
1358
1404
|
|
@@ -1370,6 +1416,7 @@ module Aws::Connect
|
|
1370
1416
|
class ListHoursOfOperationsResponse < Struct.new(
|
1371
1417
|
:hours_of_operation_summary_list,
|
1372
1418
|
:next_token)
|
1419
|
+
SENSITIVE = []
|
1373
1420
|
include Aws::Structure
|
1374
1421
|
end
|
1375
1422
|
|
@@ -1414,6 +1461,7 @@ module Aws::Connect
|
|
1414
1461
|
:phone_number_country_codes,
|
1415
1462
|
:next_token,
|
1416
1463
|
:max_results)
|
1464
|
+
SENSITIVE = []
|
1417
1465
|
include Aws::Structure
|
1418
1466
|
end
|
1419
1467
|
|
@@ -1431,6 +1479,7 @@ module Aws::Connect
|
|
1431
1479
|
class ListPhoneNumbersResponse < Struct.new(
|
1432
1480
|
:phone_number_summary_list,
|
1433
1481
|
:next_token)
|
1482
|
+
SENSITIVE = []
|
1434
1483
|
include Aws::Structure
|
1435
1484
|
end
|
1436
1485
|
|
@@ -1469,6 +1518,7 @@ module Aws::Connect
|
|
1469
1518
|
:queue_types,
|
1470
1519
|
:next_token,
|
1471
1520
|
:max_results)
|
1521
|
+
SENSITIVE = []
|
1472
1522
|
include Aws::Structure
|
1473
1523
|
end
|
1474
1524
|
|
@@ -1486,6 +1536,7 @@ module Aws::Connect
|
|
1486
1536
|
class ListQueuesResponse < Struct.new(
|
1487
1537
|
:queue_summary_list,
|
1488
1538
|
:next_token)
|
1539
|
+
SENSITIVE = []
|
1489
1540
|
include Aws::Structure
|
1490
1541
|
end
|
1491
1542
|
|
@@ -1518,6 +1569,7 @@ module Aws::Connect
|
|
1518
1569
|
:instance_id,
|
1519
1570
|
:next_token,
|
1520
1571
|
:max_results)
|
1572
|
+
SENSITIVE = []
|
1521
1573
|
include Aws::Structure
|
1522
1574
|
end
|
1523
1575
|
|
@@ -1535,6 +1587,7 @@ module Aws::Connect
|
|
1535
1587
|
class ListRoutingProfilesResponse < Struct.new(
|
1536
1588
|
:routing_profile_summary_list,
|
1537
1589
|
:next_token)
|
1590
|
+
SENSITIVE = []
|
1538
1591
|
include Aws::Structure
|
1539
1592
|
end
|
1540
1593
|
|
@@ -1567,6 +1620,7 @@ module Aws::Connect
|
|
1567
1620
|
:instance_id,
|
1568
1621
|
:next_token,
|
1569
1622
|
:max_results)
|
1623
|
+
SENSITIVE = []
|
1570
1624
|
include Aws::Structure
|
1571
1625
|
end
|
1572
1626
|
|
@@ -1584,6 +1638,7 @@ module Aws::Connect
|
|
1584
1638
|
class ListSecurityProfilesResponse < Struct.new(
|
1585
1639
|
:security_profile_summary_list,
|
1586
1640
|
:next_token)
|
1641
|
+
SENSITIVE = []
|
1587
1642
|
include Aws::Structure
|
1588
1643
|
end
|
1589
1644
|
|
@@ -1602,6 +1657,7 @@ module Aws::Connect
|
|
1602
1657
|
#
|
1603
1658
|
class ListTagsForResourceRequest < Struct.new(
|
1604
1659
|
:resource_arn)
|
1660
|
+
SENSITIVE = []
|
1605
1661
|
include Aws::Structure
|
1606
1662
|
end
|
1607
1663
|
|
@@ -1613,6 +1669,7 @@ module Aws::Connect
|
|
1613
1669
|
#
|
1614
1670
|
class ListTagsForResourceResponse < Struct.new(
|
1615
1671
|
:tags)
|
1672
|
+
SENSITIVE = []
|
1616
1673
|
include Aws::Structure
|
1617
1674
|
end
|
1618
1675
|
|
@@ -1645,6 +1702,7 @@ module Aws::Connect
|
|
1645
1702
|
:instance_id,
|
1646
1703
|
:next_token,
|
1647
1704
|
:max_results)
|
1705
|
+
SENSITIVE = []
|
1648
1706
|
include Aws::Structure
|
1649
1707
|
end
|
1650
1708
|
|
@@ -1662,6 +1720,7 @@ module Aws::Connect
|
|
1662
1720
|
class ListUserHierarchyGroupsResponse < Struct.new(
|
1663
1721
|
:user_hierarchy_group_summary_list,
|
1664
1722
|
:next_token)
|
1723
|
+
SENSITIVE = []
|
1665
1724
|
include Aws::Structure
|
1666
1725
|
end
|
1667
1726
|
|
@@ -1694,6 +1753,7 @@ module Aws::Connect
|
|
1694
1753
|
:instance_id,
|
1695
1754
|
:next_token,
|
1696
1755
|
:max_results)
|
1756
|
+
SENSITIVE = []
|
1697
1757
|
include Aws::Structure
|
1698
1758
|
end
|
1699
1759
|
|
@@ -1711,6 +1771,7 @@ module Aws::Connect
|
|
1711
1771
|
class ListUsersResponse < Struct.new(
|
1712
1772
|
:user_summary_list,
|
1713
1773
|
:next_token)
|
1774
|
+
SENSITIVE = []
|
1714
1775
|
include Aws::Structure
|
1715
1776
|
end
|
1716
1777
|
|
@@ -1724,6 +1785,7 @@ module Aws::Connect
|
|
1724
1785
|
#
|
1725
1786
|
class OutboundContactNotPermittedException < Struct.new(
|
1726
1787
|
:message)
|
1788
|
+
SENSITIVE = []
|
1727
1789
|
include Aws::Structure
|
1728
1790
|
end
|
1729
1791
|
|
@@ -1744,6 +1806,7 @@ module Aws::Connect
|
|
1744
1806
|
#
|
1745
1807
|
class ParticipantDetails < Struct.new(
|
1746
1808
|
:display_name)
|
1809
|
+
SENSITIVE = []
|
1747
1810
|
include Aws::Structure
|
1748
1811
|
end
|
1749
1812
|
|
@@ -1778,6 +1841,7 @@ module Aws::Connect
|
|
1778
1841
|
:phone_number,
|
1779
1842
|
:phone_number_type,
|
1780
1843
|
:phone_number_country_code)
|
1844
|
+
SENSITIVE = []
|
1781
1845
|
include Aws::Structure
|
1782
1846
|
end
|
1783
1847
|
|
@@ -1797,6 +1861,7 @@ module Aws::Connect
|
|
1797
1861
|
class QueueReference < Struct.new(
|
1798
1862
|
:id,
|
1799
1863
|
:arn)
|
1864
|
+
SENSITIVE = []
|
1800
1865
|
include Aws::Structure
|
1801
1866
|
end
|
1802
1867
|
|
@@ -1825,6 +1890,7 @@ module Aws::Connect
|
|
1825
1890
|
:arn,
|
1826
1891
|
:name,
|
1827
1892
|
:queue_type)
|
1893
|
+
SENSITIVE = []
|
1828
1894
|
include Aws::Structure
|
1829
1895
|
end
|
1830
1896
|
|
@@ -1838,6 +1904,7 @@ module Aws::Connect
|
|
1838
1904
|
#
|
1839
1905
|
class ResourceNotFoundException < Struct.new(
|
1840
1906
|
:message)
|
1907
|
+
SENSITIVE = []
|
1841
1908
|
include Aws::Structure
|
1842
1909
|
end
|
1843
1910
|
|
@@ -1861,6 +1928,7 @@ module Aws::Connect
|
|
1861
1928
|
:id,
|
1862
1929
|
:arn,
|
1863
1930
|
:name)
|
1931
|
+
SENSITIVE = []
|
1864
1932
|
include Aws::Structure
|
1865
1933
|
end
|
1866
1934
|
|
@@ -1884,6 +1952,7 @@ module Aws::Connect
|
|
1884
1952
|
:id,
|
1885
1953
|
:arn,
|
1886
1954
|
:name)
|
1955
|
+
SENSITIVE = []
|
1887
1956
|
include Aws::Structure
|
1888
1957
|
end
|
1889
1958
|
|
@@ -1949,6 +2018,7 @@ module Aws::Connect
|
|
1949
2018
|
:participant_details,
|
1950
2019
|
:initial_message,
|
1951
2020
|
:client_token)
|
2021
|
+
SENSITIVE = []
|
1952
2022
|
include Aws::Structure
|
1953
2023
|
end
|
1954
2024
|
|
@@ -1977,6 +2047,7 @@ module Aws::Connect
|
|
1977
2047
|
:contact_id,
|
1978
2048
|
:participant_id,
|
1979
2049
|
:participant_token)
|
2050
|
+
SENSITIVE = []
|
1980
2051
|
include Aws::Structure
|
1981
2052
|
end
|
1982
2053
|
|
@@ -2051,6 +2122,7 @@ module Aws::Connect
|
|
2051
2122
|
:source_phone_number,
|
2052
2123
|
:queue_id,
|
2053
2124
|
:attributes)
|
2125
|
+
SENSITIVE = []
|
2054
2126
|
include Aws::Structure
|
2055
2127
|
end
|
2056
2128
|
|
@@ -2062,6 +2134,7 @@ module Aws::Connect
|
|
2062
2134
|
#
|
2063
2135
|
class StartOutboundVoiceContactResponse < Struct.new(
|
2064
2136
|
:contact_id)
|
2137
|
+
SENSITIVE = []
|
2065
2138
|
include Aws::Structure
|
2066
2139
|
end
|
2067
2140
|
|
@@ -2086,6 +2159,7 @@ module Aws::Connect
|
|
2086
2159
|
class StopContactRequest < Struct.new(
|
2087
2160
|
:contact_id,
|
2088
2161
|
:instance_id)
|
2162
|
+
SENSITIVE = []
|
2089
2163
|
include Aws::Structure
|
2090
2164
|
end
|
2091
2165
|
|
@@ -2117,6 +2191,7 @@ module Aws::Connect
|
|
2117
2191
|
class TagResourceRequest < Struct.new(
|
2118
2192
|
:resource_arn,
|
2119
2193
|
:tags)
|
2194
|
+
SENSITIVE = []
|
2120
2195
|
include Aws::Structure
|
2121
2196
|
end
|
2122
2197
|
|
@@ -2144,6 +2219,7 @@ module Aws::Connect
|
|
2144
2219
|
class Threshold < Struct.new(
|
2145
2220
|
:comparison,
|
2146
2221
|
:threshold_value)
|
2222
|
+
SENSITIVE = []
|
2147
2223
|
include Aws::Structure
|
2148
2224
|
end
|
2149
2225
|
|
@@ -2156,6 +2232,7 @@ module Aws::Connect
|
|
2156
2232
|
#
|
2157
2233
|
class ThrottlingException < Struct.new(
|
2158
2234
|
:message)
|
2235
|
+
SENSITIVE = []
|
2159
2236
|
include Aws::Structure
|
2160
2237
|
end
|
2161
2238
|
|
@@ -2180,6 +2257,7 @@ module Aws::Connect
|
|
2180
2257
|
class UntagResourceRequest < Struct.new(
|
2181
2258
|
:resource_arn,
|
2182
2259
|
:tag_keys)
|
2260
|
+
SENSITIVE = []
|
2183
2261
|
include Aws::Structure
|
2184
2262
|
end
|
2185
2263
|
|
@@ -2218,6 +2296,7 @@ module Aws::Connect
|
|
2218
2296
|
:initial_contact_id,
|
2219
2297
|
:instance_id,
|
2220
2298
|
:attributes)
|
2299
|
+
SENSITIVE = []
|
2221
2300
|
include Aws::Structure
|
2222
2301
|
end
|
2223
2302
|
|
@@ -2252,6 +2331,7 @@ module Aws::Connect
|
|
2252
2331
|
:hierarchy_group_id,
|
2253
2332
|
:user_id,
|
2254
2333
|
:instance_id)
|
2334
|
+
SENSITIVE = []
|
2255
2335
|
include Aws::Structure
|
2256
2336
|
end
|
2257
2337
|
|
@@ -2286,6 +2366,7 @@ module Aws::Connect
|
|
2286
2366
|
:identity_info,
|
2287
2367
|
:user_id,
|
2288
2368
|
:instance_id)
|
2369
|
+
SENSITIVE = []
|
2289
2370
|
include Aws::Structure
|
2290
2371
|
end
|
2291
2372
|
|
@@ -2321,6 +2402,7 @@ module Aws::Connect
|
|
2321
2402
|
:phone_config,
|
2322
2403
|
:user_id,
|
2323
2404
|
:instance_id)
|
2405
|
+
SENSITIVE = []
|
2324
2406
|
include Aws::Structure
|
2325
2407
|
end
|
2326
2408
|
|
@@ -2351,6 +2433,7 @@ module Aws::Connect
|
|
2351
2433
|
:routing_profile_id,
|
2352
2434
|
:user_id,
|
2353
2435
|
:instance_id)
|
2436
|
+
SENSITIVE = []
|
2354
2437
|
include Aws::Structure
|
2355
2438
|
end
|
2356
2439
|
|
@@ -2381,6 +2464,7 @@ module Aws::Connect
|
|
2381
2464
|
:security_profile_ids,
|
2382
2465
|
:user_id,
|
2383
2466
|
:instance_id)
|
2467
|
+
SENSITIVE = []
|
2384
2468
|
include Aws::Structure
|
2385
2469
|
end
|
2386
2470
|
|
@@ -2441,6 +2525,7 @@ module Aws::Connect
|
|
2441
2525
|
:routing_profile_id,
|
2442
2526
|
:hierarchy_group_id,
|
2443
2527
|
:tags)
|
2528
|
+
SENSITIVE = []
|
2444
2529
|
include Aws::Structure
|
2445
2530
|
end
|
2446
2531
|
|
@@ -2476,6 +2561,7 @@ module Aws::Connect
|
|
2476
2561
|
:first_name,
|
2477
2562
|
:last_name,
|
2478
2563
|
:email)
|
2564
|
+
SENSITIVE = []
|
2479
2565
|
include Aws::Structure
|
2480
2566
|
end
|
2481
2567
|
|
@@ -2489,6 +2575,7 @@ module Aws::Connect
|
|
2489
2575
|
#
|
2490
2576
|
class UserNotFoundException < Struct.new(
|
2491
2577
|
:message)
|
2578
|
+
SENSITIVE = []
|
2492
2579
|
include Aws::Structure
|
2493
2580
|
end
|
2494
2581
|
|
@@ -2528,6 +2615,7 @@ module Aws::Connect
|
|
2528
2615
|
:auto_accept,
|
2529
2616
|
:after_contact_work_time_limit,
|
2530
2617
|
:desk_phone_number)
|
2618
|
+
SENSITIVE = []
|
2531
2619
|
include Aws::Structure
|
2532
2620
|
end
|
2533
2621
|
|
@@ -2551,6 +2639,7 @@ module Aws::Connect
|
|
2551
2639
|
:id,
|
2552
2640
|
:arn,
|
2553
2641
|
:username)
|
2642
|
+
SENSITIVE = []
|
2554
2643
|
include Aws::Structure
|
2555
2644
|
end
|
2556
2645
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.27.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Amazon Connect
|