aws-sdk-frauddetector 1.21.0 → 1.25.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-frauddetector/client.rb +459 -58
- data/lib/aws-sdk-frauddetector/client_api.rb +366 -20
- data/lib/aws-sdk-frauddetector/errors.rb +16 -0
- data/lib/aws-sdk-frauddetector/types.rb +777 -62
- data/lib/aws-sdk-frauddetector.rb +1 -1
- metadata +5 -5
@@ -31,6 +31,7 @@ module Aws::FraudDetector
|
|
31
31
|
# * {ConflictException}
|
32
32
|
# * {InternalServerException}
|
33
33
|
# * {ResourceNotFoundException}
|
34
|
+
# * {ResourceUnavailableException}
|
34
35
|
# * {ThrottlingException}
|
35
36
|
# * {ValidationException}
|
36
37
|
#
|
@@ -100,6 +101,21 @@ module Aws::FraudDetector
|
|
100
101
|
end
|
101
102
|
end
|
102
103
|
|
104
|
+
class ResourceUnavailableException < ServiceError
|
105
|
+
|
106
|
+
# @param [Seahorse::Client::RequestContext] context
|
107
|
+
# @param [String] message
|
108
|
+
# @param [Aws::FraudDetector::Types::ResourceUnavailableException] data
|
109
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
110
|
+
super(context, message, data)
|
111
|
+
end
|
112
|
+
|
113
|
+
# @return [String]
|
114
|
+
def message
|
115
|
+
@message || @data[:message]
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
103
119
|
class ThrottlingException < ServiceError
|
104
120
|
|
105
121
|
# @param [Seahorse::Client::RequestContext] context
|