aws-sdk-connect 1.71.0 → 1.74.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +611 -13
- data/lib/aws-sdk-connect/client_api.rb +419 -1
- data/lib/aws-sdk-connect/errors.rb +21 -0
- data/lib/aws-sdk-connect/types.rb +1428 -24
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
@@ -40,6 +40,7 @@ module Aws::Connect
|
|
40
40
|
# * {InvalidRequestException}
|
41
41
|
# * {LimitExceededException}
|
42
42
|
# * {OutboundContactNotPermittedException}
|
43
|
+
# * {PropertyValidationException}
|
43
44
|
# * {ResourceConflictException}
|
44
45
|
# * {ResourceInUseException}
|
45
46
|
# * {ResourceNotFoundException}
|
@@ -248,6 +249,26 @@ module Aws::Connect
|
|
248
249
|
end
|
249
250
|
end
|
250
251
|
|
252
|
+
class PropertyValidationException < ServiceError
|
253
|
+
|
254
|
+
# @param [Seahorse::Client::RequestContext] context
|
255
|
+
# @param [String] message
|
256
|
+
# @param [Aws::Connect::Types::PropertyValidationException] data
|
257
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
258
|
+
super(context, message, data)
|
259
|
+
end
|
260
|
+
|
261
|
+
# @return [String]
|
262
|
+
def message
|
263
|
+
@message || @data[:message]
|
264
|
+
end
|
265
|
+
|
266
|
+
# @return [String]
|
267
|
+
def property_list
|
268
|
+
@data[:property_list]
|
269
|
+
end
|
270
|
+
end
|
271
|
+
|
251
272
|
class ResourceConflictException < ServiceError
|
252
273
|
|
253
274
|
# @param [Seahorse::Client::RequestContext] context
|