aws-sdk-mediaconnect 1.76.0 → 1.78.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconnect/client.rb +765 -450
- data/lib/aws-sdk-mediaconnect/client_api.rb +644 -573
- data/lib/aws-sdk-mediaconnect/errors.rb +16 -0
- data/lib/aws-sdk-mediaconnect/types.rb +775 -554
- data/lib/aws-sdk-mediaconnect/waiters.rb +28 -22
- data/lib/aws-sdk-mediaconnect.rb +1 -1
- data/sig/client.rbs +45 -16
- data/sig/types.rbs +36 -16
- metadata +2 -2
@@ -89,6 +89,10 @@ module Aws::MediaConnect
|
|
89
89
|
def message
|
90
90
|
@message || @data[:message]
|
91
91
|
end
|
92
|
+
|
93
|
+
def retryable?
|
94
|
+
true
|
95
|
+
end
|
92
96
|
end
|
93
97
|
|
94
98
|
class CreateBridge420Exception < ServiceError
|
@@ -179,6 +183,10 @@ module Aws::MediaConnect
|
|
179
183
|
def message
|
180
184
|
@message || @data[:message]
|
181
185
|
end
|
186
|
+
|
187
|
+
def retryable?
|
188
|
+
true
|
189
|
+
end
|
182
190
|
end
|
183
191
|
|
184
192
|
class NotFoundException < ServiceError
|
@@ -209,6 +217,10 @@ module Aws::MediaConnect
|
|
209
217
|
def message
|
210
218
|
@message || @data[:message]
|
211
219
|
end
|
220
|
+
|
221
|
+
def retryable?
|
222
|
+
true
|
223
|
+
end
|
212
224
|
end
|
213
225
|
|
214
226
|
class TooManyRequestsException < ServiceError
|
@@ -224,6 +236,10 @@ module Aws::MediaConnect
|
|
224
236
|
def message
|
225
237
|
@message || @data[:message]
|
226
238
|
end
|
239
|
+
|
240
|
+
def retryable?
|
241
|
+
true
|
242
|
+
end
|
227
243
|
end
|
228
244
|
|
229
245
|
end
|