aws-sdk-connect 1.236.0 → 1.237.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +652 -1
- data/lib/aws-sdk-connect/client_api.rb +417 -0
- data/lib/aws-sdk-connect/errors.rb +16 -0
- data/lib/aws-sdk-connect/types.rb +938 -63
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +213 -0
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +244 -0
- metadata +1 -1
|
@@ -41,6 +41,7 @@ module Aws::Connect
|
|
|
41
41
|
# * {InvalidContactFlowModuleException}
|
|
42
42
|
# * {InvalidParameterException}
|
|
43
43
|
# * {InvalidRequestException}
|
|
44
|
+
# * {InvalidTestCaseException}
|
|
44
45
|
# * {LimitExceededException}
|
|
45
46
|
# * {MaximumResultReturnedException}
|
|
46
47
|
# * {OutboundContactNotPermittedException}
|
|
@@ -276,6 +277,21 @@ module Aws::Connect
|
|
|
276
277
|
end
|
|
277
278
|
end
|
|
278
279
|
|
|
280
|
+
class InvalidTestCaseException < ServiceError
|
|
281
|
+
|
|
282
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
283
|
+
# @param [String] message
|
|
284
|
+
# @param [Aws::Connect::Types::InvalidTestCaseException] data
|
|
285
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
286
|
+
super(context, message, data)
|
|
287
|
+
end
|
|
288
|
+
|
|
289
|
+
# @return [String]
|
|
290
|
+
def problems
|
|
291
|
+
@data[:problems]
|
|
292
|
+
end
|
|
293
|
+
end
|
|
294
|
+
|
|
279
295
|
class LimitExceededException < ServiceError
|
|
280
296
|
|
|
281
297
|
# @param [Seahorse::Client::RequestContext] context
|