aws-sdk-configservice 1.40.0 → 1.42.1
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/lib/aws-sdk-configservice.rb +1 -1
- data/lib/aws-sdk-configservice/client.rb +91 -30
- data/lib/aws-sdk-configservice/client_api.rb +143 -7
- data/lib/aws-sdk-configservice/errors.rb +561 -0
- data/lib/aws-sdk-configservice/types.rb +477 -23
- metadata +2 -2
@@ -10,5 +10,566 @@ module Aws::ConfigService
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class ConformancePackTemplateValidationException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::ConfigService::Types::ConformancePackTemplateValidationException] data
|
18
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
19
|
+
super(context, message, data)
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
|
24
|
+
class InsufficientDeliveryPolicyException < ServiceError
|
25
|
+
|
26
|
+
# @param [Seahorse::Client::RequestContext] context
|
27
|
+
# @param [String] message
|
28
|
+
# @param [Aws::ConfigService::Types::InsufficientDeliveryPolicyException] data
|
29
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
30
|
+
super(context, message, data)
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
class InsufficientPermissionsException < ServiceError
|
36
|
+
|
37
|
+
# @param [Seahorse::Client::RequestContext] context
|
38
|
+
# @param [String] message
|
39
|
+
# @param [Aws::ConfigService::Types::InsufficientPermissionsException] data
|
40
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
41
|
+
super(context, message, data)
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
|
46
|
+
class InvalidConfigurationRecorderNameException < ServiceError
|
47
|
+
|
48
|
+
# @param [Seahorse::Client::RequestContext] context
|
49
|
+
# @param [String] message
|
50
|
+
# @param [Aws::ConfigService::Types::InvalidConfigurationRecorderNameException] data
|
51
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
52
|
+
super(context, message, data)
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
56
|
+
|
57
|
+
class InvalidDeliveryChannelNameException < ServiceError
|
58
|
+
|
59
|
+
# @param [Seahorse::Client::RequestContext] context
|
60
|
+
# @param [String] message
|
61
|
+
# @param [Aws::ConfigService::Types::InvalidDeliveryChannelNameException] data
|
62
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
63
|
+
super(context, message, data)
|
64
|
+
end
|
65
|
+
|
66
|
+
end
|
67
|
+
|
68
|
+
class InvalidExpressionException < ServiceError
|
69
|
+
|
70
|
+
# @param [Seahorse::Client::RequestContext] context
|
71
|
+
# @param [String] message
|
72
|
+
# @param [Aws::ConfigService::Types::InvalidExpressionException] data
|
73
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
74
|
+
super(context, message, data)
|
75
|
+
end
|
76
|
+
|
77
|
+
end
|
78
|
+
|
79
|
+
class InvalidLimitException < ServiceError
|
80
|
+
|
81
|
+
# @param [Seahorse::Client::RequestContext] context
|
82
|
+
# @param [String] message
|
83
|
+
# @param [Aws::ConfigService::Types::InvalidLimitException] data
|
84
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
85
|
+
super(context, message, data)
|
86
|
+
end
|
87
|
+
|
88
|
+
end
|
89
|
+
|
90
|
+
class InvalidNextTokenException < ServiceError
|
91
|
+
|
92
|
+
# @param [Seahorse::Client::RequestContext] context
|
93
|
+
# @param [String] message
|
94
|
+
# @param [Aws::ConfigService::Types::InvalidNextTokenException] data
|
95
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
96
|
+
super(context, message, data)
|
97
|
+
end
|
98
|
+
|
99
|
+
end
|
100
|
+
|
101
|
+
class InvalidParameterValueException < ServiceError
|
102
|
+
|
103
|
+
# @param [Seahorse::Client::RequestContext] context
|
104
|
+
# @param [String] message
|
105
|
+
# @param [Aws::ConfigService::Types::InvalidParameterValueException] data
|
106
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
107
|
+
super(context, message, data)
|
108
|
+
end
|
109
|
+
|
110
|
+
end
|
111
|
+
|
112
|
+
class InvalidRecordingGroupException < ServiceError
|
113
|
+
|
114
|
+
# @param [Seahorse::Client::RequestContext] context
|
115
|
+
# @param [String] message
|
116
|
+
# @param [Aws::ConfigService::Types::InvalidRecordingGroupException] data
|
117
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
118
|
+
super(context, message, data)
|
119
|
+
end
|
120
|
+
|
121
|
+
end
|
122
|
+
|
123
|
+
class InvalidResultTokenException < ServiceError
|
124
|
+
|
125
|
+
# @param [Seahorse::Client::RequestContext] context
|
126
|
+
# @param [String] message
|
127
|
+
# @param [Aws::ConfigService::Types::InvalidResultTokenException] data
|
128
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
129
|
+
super(context, message, data)
|
130
|
+
end
|
131
|
+
|
132
|
+
end
|
133
|
+
|
134
|
+
class InvalidRoleException < ServiceError
|
135
|
+
|
136
|
+
# @param [Seahorse::Client::RequestContext] context
|
137
|
+
# @param [String] message
|
138
|
+
# @param [Aws::ConfigService::Types::InvalidRoleException] data
|
139
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
140
|
+
super(context, message, data)
|
141
|
+
end
|
142
|
+
|
143
|
+
end
|
144
|
+
|
145
|
+
class InvalidS3KeyPrefixException < ServiceError
|
146
|
+
|
147
|
+
# @param [Seahorse::Client::RequestContext] context
|
148
|
+
# @param [String] message
|
149
|
+
# @param [Aws::ConfigService::Types::InvalidS3KeyPrefixException] data
|
150
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
151
|
+
super(context, message, data)
|
152
|
+
end
|
153
|
+
|
154
|
+
end
|
155
|
+
|
156
|
+
class InvalidSNSTopicARNException < ServiceError
|
157
|
+
|
158
|
+
# @param [Seahorse::Client::RequestContext] context
|
159
|
+
# @param [String] message
|
160
|
+
# @param [Aws::ConfigService::Types::InvalidSNSTopicARNException] data
|
161
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
162
|
+
super(context, message, data)
|
163
|
+
end
|
164
|
+
|
165
|
+
end
|
166
|
+
|
167
|
+
class InvalidTimeRangeException < ServiceError
|
168
|
+
|
169
|
+
# @param [Seahorse::Client::RequestContext] context
|
170
|
+
# @param [String] message
|
171
|
+
# @param [Aws::ConfigService::Types::InvalidTimeRangeException] data
|
172
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
173
|
+
super(context, message, data)
|
174
|
+
end
|
175
|
+
|
176
|
+
end
|
177
|
+
|
178
|
+
class LastDeliveryChannelDeleteFailedException < ServiceError
|
179
|
+
|
180
|
+
# @param [Seahorse::Client::RequestContext] context
|
181
|
+
# @param [String] message
|
182
|
+
# @param [Aws::ConfigService::Types::LastDeliveryChannelDeleteFailedException] data
|
183
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
184
|
+
super(context, message, data)
|
185
|
+
end
|
186
|
+
|
187
|
+
end
|
188
|
+
|
189
|
+
class LimitExceededException < ServiceError
|
190
|
+
|
191
|
+
# @param [Seahorse::Client::RequestContext] context
|
192
|
+
# @param [String] message
|
193
|
+
# @param [Aws::ConfigService::Types::LimitExceededException] data
|
194
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
195
|
+
super(context, message, data)
|
196
|
+
end
|
197
|
+
|
198
|
+
end
|
199
|
+
|
200
|
+
class MaxActiveResourcesExceededException < ServiceError
|
201
|
+
|
202
|
+
# @param [Seahorse::Client::RequestContext] context
|
203
|
+
# @param [String] message
|
204
|
+
# @param [Aws::ConfigService::Types::MaxActiveResourcesExceededException] data
|
205
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
206
|
+
super(context, message, data)
|
207
|
+
end
|
208
|
+
|
209
|
+
end
|
210
|
+
|
211
|
+
class MaxNumberOfConfigRulesExceededException < ServiceError
|
212
|
+
|
213
|
+
# @param [Seahorse::Client::RequestContext] context
|
214
|
+
# @param [String] message
|
215
|
+
# @param [Aws::ConfigService::Types::MaxNumberOfConfigRulesExceededException] data
|
216
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
217
|
+
super(context, message, data)
|
218
|
+
end
|
219
|
+
|
220
|
+
end
|
221
|
+
|
222
|
+
class MaxNumberOfConfigurationRecordersExceededException < ServiceError
|
223
|
+
|
224
|
+
# @param [Seahorse::Client::RequestContext] context
|
225
|
+
# @param [String] message
|
226
|
+
# @param [Aws::ConfigService::Types::MaxNumberOfConfigurationRecordersExceededException] data
|
227
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
228
|
+
super(context, message, data)
|
229
|
+
end
|
230
|
+
|
231
|
+
end
|
232
|
+
|
233
|
+
class MaxNumberOfConformancePacksExceededException < ServiceError
|
234
|
+
|
235
|
+
# @param [Seahorse::Client::RequestContext] context
|
236
|
+
# @param [String] message
|
237
|
+
# @param [Aws::ConfigService::Types::MaxNumberOfConformancePacksExceededException] data
|
238
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
239
|
+
super(context, message, data)
|
240
|
+
end
|
241
|
+
|
242
|
+
end
|
243
|
+
|
244
|
+
class MaxNumberOfDeliveryChannelsExceededException < ServiceError
|
245
|
+
|
246
|
+
# @param [Seahorse::Client::RequestContext] context
|
247
|
+
# @param [String] message
|
248
|
+
# @param [Aws::ConfigService::Types::MaxNumberOfDeliveryChannelsExceededException] data
|
249
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
250
|
+
super(context, message, data)
|
251
|
+
end
|
252
|
+
|
253
|
+
end
|
254
|
+
|
255
|
+
class MaxNumberOfOrganizationConfigRulesExceededException < ServiceError
|
256
|
+
|
257
|
+
# @param [Seahorse::Client::RequestContext] context
|
258
|
+
# @param [String] message
|
259
|
+
# @param [Aws::ConfigService::Types::MaxNumberOfOrganizationConfigRulesExceededException] data
|
260
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
261
|
+
super(context, message, data)
|
262
|
+
end
|
263
|
+
|
264
|
+
end
|
265
|
+
|
266
|
+
class MaxNumberOfOrganizationConformancePacksExceededException < ServiceError
|
267
|
+
|
268
|
+
# @param [Seahorse::Client::RequestContext] context
|
269
|
+
# @param [String] message
|
270
|
+
# @param [Aws::ConfigService::Types::MaxNumberOfOrganizationConformancePacksExceededException] data
|
271
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
272
|
+
super(context, message, data)
|
273
|
+
end
|
274
|
+
|
275
|
+
end
|
276
|
+
|
277
|
+
class MaxNumberOfRetentionConfigurationsExceededException < ServiceError
|
278
|
+
|
279
|
+
# @param [Seahorse::Client::RequestContext] context
|
280
|
+
# @param [String] message
|
281
|
+
# @param [Aws::ConfigService::Types::MaxNumberOfRetentionConfigurationsExceededException] data
|
282
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
283
|
+
super(context, message, data)
|
284
|
+
end
|
285
|
+
|
286
|
+
end
|
287
|
+
|
288
|
+
class NoAvailableConfigurationRecorderException < ServiceError
|
289
|
+
|
290
|
+
# @param [Seahorse::Client::RequestContext] context
|
291
|
+
# @param [String] message
|
292
|
+
# @param [Aws::ConfigService::Types::NoAvailableConfigurationRecorderException] data
|
293
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
294
|
+
super(context, message, data)
|
295
|
+
end
|
296
|
+
|
297
|
+
end
|
298
|
+
|
299
|
+
class NoAvailableDeliveryChannelException < ServiceError
|
300
|
+
|
301
|
+
# @param [Seahorse::Client::RequestContext] context
|
302
|
+
# @param [String] message
|
303
|
+
# @param [Aws::ConfigService::Types::NoAvailableDeliveryChannelException] data
|
304
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
305
|
+
super(context, message, data)
|
306
|
+
end
|
307
|
+
|
308
|
+
end
|
309
|
+
|
310
|
+
class NoAvailableOrganizationException < ServiceError
|
311
|
+
|
312
|
+
# @param [Seahorse::Client::RequestContext] context
|
313
|
+
# @param [String] message
|
314
|
+
# @param [Aws::ConfigService::Types::NoAvailableOrganizationException] data
|
315
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
316
|
+
super(context, message, data)
|
317
|
+
end
|
318
|
+
|
319
|
+
end
|
320
|
+
|
321
|
+
class NoRunningConfigurationRecorderException < ServiceError
|
322
|
+
|
323
|
+
# @param [Seahorse::Client::RequestContext] context
|
324
|
+
# @param [String] message
|
325
|
+
# @param [Aws::ConfigService::Types::NoRunningConfigurationRecorderException] data
|
326
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
327
|
+
super(context, message, data)
|
328
|
+
end
|
329
|
+
|
330
|
+
end
|
331
|
+
|
332
|
+
class NoSuchBucketException < ServiceError
|
333
|
+
|
334
|
+
# @param [Seahorse::Client::RequestContext] context
|
335
|
+
# @param [String] message
|
336
|
+
# @param [Aws::ConfigService::Types::NoSuchBucketException] data
|
337
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
338
|
+
super(context, message, data)
|
339
|
+
end
|
340
|
+
|
341
|
+
end
|
342
|
+
|
343
|
+
class NoSuchConfigRuleException < ServiceError
|
344
|
+
|
345
|
+
# @param [Seahorse::Client::RequestContext] context
|
346
|
+
# @param [String] message
|
347
|
+
# @param [Aws::ConfigService::Types::NoSuchConfigRuleException] data
|
348
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
349
|
+
super(context, message, data)
|
350
|
+
end
|
351
|
+
|
352
|
+
end
|
353
|
+
|
354
|
+
class NoSuchConfigRuleInConformancePackException < ServiceError
|
355
|
+
|
356
|
+
# @param [Seahorse::Client::RequestContext] context
|
357
|
+
# @param [String] message
|
358
|
+
# @param [Aws::ConfigService::Types::NoSuchConfigRuleInConformancePackException] data
|
359
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
360
|
+
super(context, message, data)
|
361
|
+
end
|
362
|
+
|
363
|
+
end
|
364
|
+
|
365
|
+
class NoSuchConfigurationAggregatorException < ServiceError
|
366
|
+
|
367
|
+
# @param [Seahorse::Client::RequestContext] context
|
368
|
+
# @param [String] message
|
369
|
+
# @param [Aws::ConfigService::Types::NoSuchConfigurationAggregatorException] data
|
370
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
371
|
+
super(context, message, data)
|
372
|
+
end
|
373
|
+
|
374
|
+
end
|
375
|
+
|
376
|
+
class NoSuchConfigurationRecorderException < ServiceError
|
377
|
+
|
378
|
+
# @param [Seahorse::Client::RequestContext] context
|
379
|
+
# @param [String] message
|
380
|
+
# @param [Aws::ConfigService::Types::NoSuchConfigurationRecorderException] data
|
381
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
382
|
+
super(context, message, data)
|
383
|
+
end
|
384
|
+
|
385
|
+
end
|
386
|
+
|
387
|
+
class NoSuchConformancePackException < ServiceError
|
388
|
+
|
389
|
+
# @param [Seahorse::Client::RequestContext] context
|
390
|
+
# @param [String] message
|
391
|
+
# @param [Aws::ConfigService::Types::NoSuchConformancePackException] data
|
392
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
393
|
+
super(context, message, data)
|
394
|
+
end
|
395
|
+
|
396
|
+
end
|
397
|
+
|
398
|
+
class NoSuchDeliveryChannelException < ServiceError
|
399
|
+
|
400
|
+
# @param [Seahorse::Client::RequestContext] context
|
401
|
+
# @param [String] message
|
402
|
+
# @param [Aws::ConfigService::Types::NoSuchDeliveryChannelException] data
|
403
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
404
|
+
super(context, message, data)
|
405
|
+
end
|
406
|
+
|
407
|
+
end
|
408
|
+
|
409
|
+
class NoSuchOrganizationConfigRuleException < ServiceError
|
410
|
+
|
411
|
+
# @param [Seahorse::Client::RequestContext] context
|
412
|
+
# @param [String] message
|
413
|
+
# @param [Aws::ConfigService::Types::NoSuchOrganizationConfigRuleException] data
|
414
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
415
|
+
super(context, message, data)
|
416
|
+
end
|
417
|
+
|
418
|
+
end
|
419
|
+
|
420
|
+
class NoSuchOrganizationConformancePackException < ServiceError
|
421
|
+
|
422
|
+
# @param [Seahorse::Client::RequestContext] context
|
423
|
+
# @param [String] message
|
424
|
+
# @param [Aws::ConfigService::Types::NoSuchOrganizationConformancePackException] data
|
425
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
426
|
+
super(context, message, data)
|
427
|
+
end
|
428
|
+
|
429
|
+
end
|
430
|
+
|
431
|
+
class NoSuchRemediationConfigurationException < ServiceError
|
432
|
+
|
433
|
+
# @param [Seahorse::Client::RequestContext] context
|
434
|
+
# @param [String] message
|
435
|
+
# @param [Aws::ConfigService::Types::NoSuchRemediationConfigurationException] data
|
436
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
437
|
+
super(context, message, data)
|
438
|
+
end
|
439
|
+
|
440
|
+
end
|
441
|
+
|
442
|
+
class NoSuchRemediationExceptionException < ServiceError
|
443
|
+
|
444
|
+
# @param [Seahorse::Client::RequestContext] context
|
445
|
+
# @param [String] message
|
446
|
+
# @param [Aws::ConfigService::Types::NoSuchRemediationExceptionException] data
|
447
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
448
|
+
super(context, message, data)
|
449
|
+
end
|
450
|
+
|
451
|
+
end
|
452
|
+
|
453
|
+
class NoSuchRetentionConfigurationException < ServiceError
|
454
|
+
|
455
|
+
# @param [Seahorse::Client::RequestContext] context
|
456
|
+
# @param [String] message
|
457
|
+
# @param [Aws::ConfigService::Types::NoSuchRetentionConfigurationException] data
|
458
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
459
|
+
super(context, message, data)
|
460
|
+
end
|
461
|
+
|
462
|
+
end
|
463
|
+
|
464
|
+
class OrganizationAccessDeniedException < ServiceError
|
465
|
+
|
466
|
+
# @param [Seahorse::Client::RequestContext] context
|
467
|
+
# @param [String] message
|
468
|
+
# @param [Aws::ConfigService::Types::OrganizationAccessDeniedException] data
|
469
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
470
|
+
super(context, message, data)
|
471
|
+
end
|
472
|
+
|
473
|
+
end
|
474
|
+
|
475
|
+
class OrganizationAllFeaturesNotEnabledException < ServiceError
|
476
|
+
|
477
|
+
# @param [Seahorse::Client::RequestContext] context
|
478
|
+
# @param [String] message
|
479
|
+
# @param [Aws::ConfigService::Types::OrganizationAllFeaturesNotEnabledException] data
|
480
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
481
|
+
super(context, message, data)
|
482
|
+
end
|
483
|
+
|
484
|
+
end
|
485
|
+
|
486
|
+
class OrganizationConformancePackTemplateValidationException < ServiceError
|
487
|
+
|
488
|
+
# @param [Seahorse::Client::RequestContext] context
|
489
|
+
# @param [String] message
|
490
|
+
# @param [Aws::ConfigService::Types::OrganizationConformancePackTemplateValidationException] data
|
491
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
492
|
+
super(context, message, data)
|
493
|
+
end
|
494
|
+
|
495
|
+
end
|
496
|
+
|
497
|
+
class OversizedConfigurationItemException < ServiceError
|
498
|
+
|
499
|
+
# @param [Seahorse::Client::RequestContext] context
|
500
|
+
# @param [String] message
|
501
|
+
# @param [Aws::ConfigService::Types::OversizedConfigurationItemException] data
|
502
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
503
|
+
super(context, message, data)
|
504
|
+
end
|
505
|
+
|
506
|
+
end
|
507
|
+
|
508
|
+
class RemediationInProgressException < ServiceError
|
509
|
+
|
510
|
+
# @param [Seahorse::Client::RequestContext] context
|
511
|
+
# @param [String] message
|
512
|
+
# @param [Aws::ConfigService::Types::RemediationInProgressException] data
|
513
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
514
|
+
super(context, message, data)
|
515
|
+
end
|
516
|
+
|
517
|
+
end
|
518
|
+
|
519
|
+
class ResourceInUseException < ServiceError
|
520
|
+
|
521
|
+
# @param [Seahorse::Client::RequestContext] context
|
522
|
+
# @param [String] message
|
523
|
+
# @param [Aws::ConfigService::Types::ResourceInUseException] data
|
524
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
525
|
+
super(context, message, data)
|
526
|
+
end
|
527
|
+
|
528
|
+
end
|
529
|
+
|
530
|
+
class ResourceNotDiscoveredException < ServiceError
|
531
|
+
|
532
|
+
# @param [Seahorse::Client::RequestContext] context
|
533
|
+
# @param [String] message
|
534
|
+
# @param [Aws::ConfigService::Types::ResourceNotDiscoveredException] data
|
535
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
536
|
+
super(context, message, data)
|
537
|
+
end
|
538
|
+
|
539
|
+
end
|
540
|
+
|
541
|
+
class ResourceNotFoundException < ServiceError
|
542
|
+
|
543
|
+
# @param [Seahorse::Client::RequestContext] context
|
544
|
+
# @param [String] message
|
545
|
+
# @param [Aws::ConfigService::Types::ResourceNotFoundException] data
|
546
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
547
|
+
super(context, message, data)
|
548
|
+
end
|
549
|
+
|
550
|
+
end
|
551
|
+
|
552
|
+
class TooManyTagsException < ServiceError
|
553
|
+
|
554
|
+
# @param [Seahorse::Client::RequestContext] context
|
555
|
+
# @param [String] message
|
556
|
+
# @param [Aws::ConfigService::Types::TooManyTagsException] data
|
557
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
558
|
+
super(context, message, data)
|
559
|
+
end
|
560
|
+
|
561
|
+
end
|
562
|
+
|
563
|
+
class ValidationException < ServiceError
|
564
|
+
|
565
|
+
# @param [Seahorse::Client::RequestContext] context
|
566
|
+
# @param [String] message
|
567
|
+
# @param [Aws::ConfigService::Types::ValidationException] data
|
568
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
569
|
+
super(context, message, data)
|
570
|
+
end
|
571
|
+
|
572
|
+
end
|
573
|
+
|
13
574
|
end
|
14
575
|
end
|