aws-sdk-connect 1.69.0 → 1.72.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 +676 -13
- data/lib/aws-sdk-connect/client_api.rb +438 -1
- data/lib/aws-sdk-connect/errors.rb +21 -0
- data/lib/aws-sdk-connect/types.rb +1611 -49
- 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
|