@aws-sdk/client-fsx 3.934.0 → 3.935.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.
Files changed (57) hide show
  1. package/dist-cjs/index.js +398 -389
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +386 -0
  4. package/dist-es/models/errors.js +595 -0
  5. package/dist-es/models/models_0.js +1 -981
  6. package/dist-es/schemas/schemas_0.js +12 -4
  7. package/dist-types/commands/CopyBackupCommand.d.ts +9 -2
  8. package/dist-types/commands/CopySnapshotAndUpdateVolumeCommand.d.ts +8 -0
  9. package/dist-types/commands/CreateBackupCommand.d.ts +9 -2
  10. package/dist-types/commands/CreateFileSystemCommand.d.ts +13 -2
  11. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +13 -2
  12. package/dist-types/commands/CreateSnapshotCommand.d.ts +9 -2
  13. package/dist-types/commands/CreateVolumeCommand.d.ts +9 -2
  14. package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +9 -2
  15. package/dist-types/commands/DescribeBackupsCommand.d.ts +9 -2
  16. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +9 -2
  17. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +9 -2
  18. package/dist-types/commands/DescribeVolumesCommand.d.ts +9 -2
  19. package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +9 -2
  20. package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +8 -0
  21. package/dist-types/commands/StartMisconfiguredStateRecoveryCommand.d.ts +9 -2
  22. package/dist-types/commands/UpdateFileSystemCommand.d.ts +13 -2
  23. package/dist-types/commands/UpdateSnapshotCommand.d.ts +9 -2
  24. package/dist-types/commands/UpdateVolumeCommand.d.ts +9 -2
  25. package/dist-types/index.d.ts +3 -1
  26. package/dist-types/models/enums.d.ts +938 -0
  27. package/dist-types/models/errors.d.ts +782 -0
  28. package/dist-types/models/models_0.d.ts +415 -1761
  29. package/dist-types/schemas/schemas_0.d.ts +1 -0
  30. package/dist-types/ts3.4/commands/CopyBackupCommand.d.ts +1 -2
  31. package/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +1 -2
  32. package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +4 -2
  33. package/dist-types/ts3.4/commands/CreateFileSystemFromBackupCommand.d.ts +4 -2
  34. package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +4 -2
  35. package/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +1 -2
  36. package/dist-types/ts3.4/commands/CreateVolumeFromBackupCommand.d.ts +4 -2
  37. package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +4 -2
  38. package/dist-types/ts3.4/commands/DescribeFileSystemsCommand.d.ts +4 -2
  39. package/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +4 -2
  40. package/dist-types/ts3.4/commands/DescribeVolumesCommand.d.ts +4 -2
  41. package/dist-types/ts3.4/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +4 -2
  42. package/dist-types/ts3.4/commands/StartMisconfiguredStateRecoveryCommand.d.ts +4 -2
  43. package/dist-types/ts3.4/commands/UpdateFileSystemCommand.d.ts +4 -2
  44. package/dist-types/ts3.4/commands/UpdateSnapshotCommand.d.ts +4 -2
  45. package/dist-types/ts3.4/commands/UpdateVolumeCommand.d.ts +1 -2
  46. package/dist-types/ts3.4/index.d.ts +3 -1
  47. package/dist-types/ts3.4/models/enums.d.ts +507 -0
  48. package/dist-types/ts3.4/models/errors.d.ts +319 -0
  49. package/dist-types/ts3.4/models/models_0.d.ts +147 -825
  50. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  51. package/package.json +12 -12
  52. package/dist-es/models/index.js +0 -2
  53. package/dist-es/models/models_1.js +0 -1
  54. package/dist-types/models/index.d.ts +0 -2
  55. package/dist-types/models/models_1.d.ts +0 -332
  56. package/dist-types/ts3.4/models/index.d.ts +0 -2
  57. package/dist-types/ts3.4/models/models_1.d.ts +0 -82
@@ -0,0 +1,595 @@
1
+ import { FSxServiceException as __BaseException } from "./FSxServiceException";
2
+ export class AccessPointAlreadyOwnedByYou extends __BaseException {
3
+ name = "AccessPointAlreadyOwnedByYou";
4
+ $fault = "client";
5
+ ErrorCode;
6
+ Message;
7
+ constructor(opts) {
8
+ super({
9
+ name: "AccessPointAlreadyOwnedByYou",
10
+ $fault: "client",
11
+ ...opts,
12
+ });
13
+ Object.setPrototypeOf(this, AccessPointAlreadyOwnedByYou.prototype);
14
+ this.ErrorCode = opts.ErrorCode;
15
+ this.Message = opts.Message;
16
+ }
17
+ }
18
+ export class ActiveDirectoryError extends __BaseException {
19
+ name = "ActiveDirectoryError";
20
+ $fault = "client";
21
+ ActiveDirectoryId;
22
+ Type;
23
+ Message;
24
+ constructor(opts) {
25
+ super({
26
+ name: "ActiveDirectoryError",
27
+ $fault: "client",
28
+ ...opts,
29
+ });
30
+ Object.setPrototypeOf(this, ActiveDirectoryError.prototype);
31
+ this.ActiveDirectoryId = opts.ActiveDirectoryId;
32
+ this.Type = opts.Type;
33
+ this.Message = opts.Message;
34
+ }
35
+ }
36
+ export class BadRequest extends __BaseException {
37
+ name = "BadRequest";
38
+ $fault = "client";
39
+ Message;
40
+ constructor(opts) {
41
+ super({
42
+ name: "BadRequest",
43
+ $fault: "client",
44
+ ...opts,
45
+ });
46
+ Object.setPrototypeOf(this, BadRequest.prototype);
47
+ this.Message = opts.Message;
48
+ }
49
+ }
50
+ export class FileSystemNotFound extends __BaseException {
51
+ name = "FileSystemNotFound";
52
+ $fault = "client";
53
+ Message;
54
+ constructor(opts) {
55
+ super({
56
+ name: "FileSystemNotFound",
57
+ $fault: "client",
58
+ ...opts,
59
+ });
60
+ Object.setPrototypeOf(this, FileSystemNotFound.prototype);
61
+ this.Message = opts.Message;
62
+ }
63
+ }
64
+ export class InternalServerError extends __BaseException {
65
+ name = "InternalServerError";
66
+ $fault = "server";
67
+ Message;
68
+ constructor(opts) {
69
+ super({
70
+ name: "InternalServerError",
71
+ $fault: "server",
72
+ ...opts,
73
+ });
74
+ Object.setPrototypeOf(this, InternalServerError.prototype);
75
+ this.Message = opts.Message;
76
+ }
77
+ }
78
+ export class DataRepositoryTaskEnded extends __BaseException {
79
+ name = "DataRepositoryTaskEnded";
80
+ $fault = "client";
81
+ Message;
82
+ constructor(opts) {
83
+ super({
84
+ name: "DataRepositoryTaskEnded",
85
+ $fault: "client",
86
+ ...opts,
87
+ });
88
+ Object.setPrototypeOf(this, DataRepositoryTaskEnded.prototype);
89
+ this.Message = opts.Message;
90
+ }
91
+ }
92
+ export class DataRepositoryTaskNotFound extends __BaseException {
93
+ name = "DataRepositoryTaskNotFound";
94
+ $fault = "client";
95
+ Message;
96
+ constructor(opts) {
97
+ super({
98
+ name: "DataRepositoryTaskNotFound",
99
+ $fault: "client",
100
+ ...opts,
101
+ });
102
+ Object.setPrototypeOf(this, DataRepositoryTaskNotFound.prototype);
103
+ this.Message = opts.Message;
104
+ }
105
+ }
106
+ export class UnsupportedOperation extends __BaseException {
107
+ name = "UnsupportedOperation";
108
+ $fault = "client";
109
+ Message;
110
+ constructor(opts) {
111
+ super({
112
+ name: "UnsupportedOperation",
113
+ $fault: "client",
114
+ ...opts,
115
+ });
116
+ Object.setPrototypeOf(this, UnsupportedOperation.prototype);
117
+ this.Message = opts.Message;
118
+ }
119
+ }
120
+ export class BackupNotFound extends __BaseException {
121
+ name = "BackupNotFound";
122
+ $fault = "client";
123
+ Message;
124
+ constructor(opts) {
125
+ super({
126
+ name: "BackupNotFound",
127
+ $fault: "client",
128
+ ...opts,
129
+ });
130
+ Object.setPrototypeOf(this, BackupNotFound.prototype);
131
+ this.Message = opts.Message;
132
+ }
133
+ }
134
+ export class IncompatibleParameterError extends __BaseException {
135
+ name = "IncompatibleParameterError";
136
+ $fault = "client";
137
+ Parameter;
138
+ Message;
139
+ constructor(opts) {
140
+ super({
141
+ name: "IncompatibleParameterError",
142
+ $fault: "client",
143
+ ...opts,
144
+ });
145
+ Object.setPrototypeOf(this, IncompatibleParameterError.prototype);
146
+ this.Parameter = opts.Parameter;
147
+ this.Message = opts.Message;
148
+ }
149
+ }
150
+ export class IncompatibleRegionForMultiAZ extends __BaseException {
151
+ name = "IncompatibleRegionForMultiAZ";
152
+ $fault = "client";
153
+ Message;
154
+ constructor(opts) {
155
+ super({
156
+ name: "IncompatibleRegionForMultiAZ",
157
+ $fault: "client",
158
+ ...opts,
159
+ });
160
+ Object.setPrototypeOf(this, IncompatibleRegionForMultiAZ.prototype);
161
+ this.Message = opts.Message;
162
+ }
163
+ }
164
+ export class InvalidDestinationKmsKey extends __BaseException {
165
+ name = "InvalidDestinationKmsKey";
166
+ $fault = "client";
167
+ Message;
168
+ constructor(opts) {
169
+ super({
170
+ name: "InvalidDestinationKmsKey",
171
+ $fault: "client",
172
+ ...opts,
173
+ });
174
+ Object.setPrototypeOf(this, InvalidDestinationKmsKey.prototype);
175
+ this.Message = opts.Message;
176
+ }
177
+ }
178
+ export class InvalidRegion extends __BaseException {
179
+ name = "InvalidRegion";
180
+ $fault = "client";
181
+ Message;
182
+ constructor(opts) {
183
+ super({
184
+ name: "InvalidRegion",
185
+ $fault: "client",
186
+ ...opts,
187
+ });
188
+ Object.setPrototypeOf(this, InvalidRegion.prototype);
189
+ this.Message = opts.Message;
190
+ }
191
+ }
192
+ export class InvalidSourceKmsKey extends __BaseException {
193
+ name = "InvalidSourceKmsKey";
194
+ $fault = "client";
195
+ Message;
196
+ constructor(opts) {
197
+ super({
198
+ name: "InvalidSourceKmsKey",
199
+ $fault: "client",
200
+ ...opts,
201
+ });
202
+ Object.setPrototypeOf(this, InvalidSourceKmsKey.prototype);
203
+ this.Message = opts.Message;
204
+ }
205
+ }
206
+ export class ServiceLimitExceeded extends __BaseException {
207
+ name = "ServiceLimitExceeded";
208
+ $fault = "client";
209
+ Limit;
210
+ Message;
211
+ constructor(opts) {
212
+ super({
213
+ name: "ServiceLimitExceeded",
214
+ $fault: "client",
215
+ ...opts,
216
+ });
217
+ Object.setPrototypeOf(this, ServiceLimitExceeded.prototype);
218
+ this.Limit = opts.Limit;
219
+ this.Message = opts.Message;
220
+ }
221
+ }
222
+ export class SourceBackupUnavailable extends __BaseException {
223
+ name = "SourceBackupUnavailable";
224
+ $fault = "client";
225
+ Message;
226
+ BackupId;
227
+ constructor(opts) {
228
+ super({
229
+ name: "SourceBackupUnavailable",
230
+ $fault: "client",
231
+ ...opts,
232
+ });
233
+ Object.setPrototypeOf(this, SourceBackupUnavailable.prototype);
234
+ this.Message = opts.Message;
235
+ this.BackupId = opts.BackupId;
236
+ }
237
+ }
238
+ export class InvalidAccessPoint extends __BaseException {
239
+ name = "InvalidAccessPoint";
240
+ $fault = "client";
241
+ ErrorCode;
242
+ Message;
243
+ constructor(opts) {
244
+ super({
245
+ name: "InvalidAccessPoint",
246
+ $fault: "client",
247
+ ...opts,
248
+ });
249
+ Object.setPrototypeOf(this, InvalidAccessPoint.prototype);
250
+ this.ErrorCode = opts.ErrorCode;
251
+ this.Message = opts.Message;
252
+ }
253
+ }
254
+ export class InvalidRequest extends __BaseException {
255
+ name = "InvalidRequest";
256
+ $fault = "client";
257
+ ErrorCode;
258
+ Message;
259
+ constructor(opts) {
260
+ super({
261
+ name: "InvalidRequest",
262
+ $fault: "client",
263
+ ...opts,
264
+ });
265
+ Object.setPrototypeOf(this, InvalidRequest.prototype);
266
+ this.ErrorCode = opts.ErrorCode;
267
+ this.Message = opts.Message;
268
+ }
269
+ }
270
+ export class TooManyAccessPoints extends __BaseException {
271
+ name = "TooManyAccessPoints";
272
+ $fault = "client";
273
+ ErrorCode;
274
+ Message;
275
+ constructor(opts) {
276
+ super({
277
+ name: "TooManyAccessPoints",
278
+ $fault: "client",
279
+ ...opts,
280
+ });
281
+ Object.setPrototypeOf(this, TooManyAccessPoints.prototype);
282
+ this.ErrorCode = opts.ErrorCode;
283
+ this.Message = opts.Message;
284
+ }
285
+ }
286
+ export class VolumeNotFound extends __BaseException {
287
+ name = "VolumeNotFound";
288
+ $fault = "client";
289
+ Message;
290
+ constructor(opts) {
291
+ super({
292
+ name: "VolumeNotFound",
293
+ $fault: "client",
294
+ ...opts,
295
+ });
296
+ Object.setPrototypeOf(this, VolumeNotFound.prototype);
297
+ this.Message = opts.Message;
298
+ }
299
+ }
300
+ export class BackupInProgress extends __BaseException {
301
+ name = "BackupInProgress";
302
+ $fault = "client";
303
+ Message;
304
+ constructor(opts) {
305
+ super({
306
+ name: "BackupInProgress",
307
+ $fault: "client",
308
+ ...opts,
309
+ });
310
+ Object.setPrototypeOf(this, BackupInProgress.prototype);
311
+ this.Message = opts.Message;
312
+ }
313
+ }
314
+ export class DataRepositoryTaskExecuting extends __BaseException {
315
+ name = "DataRepositoryTaskExecuting";
316
+ $fault = "client";
317
+ Message;
318
+ constructor(opts) {
319
+ super({
320
+ name: "DataRepositoryTaskExecuting",
321
+ $fault: "client",
322
+ ...opts,
323
+ });
324
+ Object.setPrototypeOf(this, DataRepositoryTaskExecuting.prototype);
325
+ this.Message = opts.Message;
326
+ }
327
+ }
328
+ export class InvalidNetworkSettings extends __BaseException {
329
+ name = "InvalidNetworkSettings";
330
+ $fault = "client";
331
+ Message;
332
+ InvalidSubnetId;
333
+ InvalidSecurityGroupId;
334
+ InvalidRouteTableId;
335
+ constructor(opts) {
336
+ super({
337
+ name: "InvalidNetworkSettings",
338
+ $fault: "client",
339
+ ...opts,
340
+ });
341
+ Object.setPrototypeOf(this, InvalidNetworkSettings.prototype);
342
+ this.Message = opts.Message;
343
+ this.InvalidSubnetId = opts.InvalidSubnetId;
344
+ this.InvalidSecurityGroupId = opts.InvalidSecurityGroupId;
345
+ this.InvalidRouteTableId = opts.InvalidRouteTableId;
346
+ }
347
+ }
348
+ export class InvalidPerUnitStorageThroughput extends __BaseException {
349
+ name = "InvalidPerUnitStorageThroughput";
350
+ $fault = "client";
351
+ Message;
352
+ constructor(opts) {
353
+ super({
354
+ name: "InvalidPerUnitStorageThroughput",
355
+ $fault: "client",
356
+ ...opts,
357
+ });
358
+ Object.setPrototypeOf(this, InvalidPerUnitStorageThroughput.prototype);
359
+ this.Message = opts.Message;
360
+ }
361
+ }
362
+ export class MissingFileCacheConfiguration extends __BaseException {
363
+ name = "MissingFileCacheConfiguration";
364
+ $fault = "client";
365
+ Message;
366
+ constructor(opts) {
367
+ super({
368
+ name: "MissingFileCacheConfiguration",
369
+ $fault: "client",
370
+ ...opts,
371
+ });
372
+ Object.setPrototypeOf(this, MissingFileCacheConfiguration.prototype);
373
+ this.Message = opts.Message;
374
+ }
375
+ }
376
+ export class InvalidExportPath extends __BaseException {
377
+ name = "InvalidExportPath";
378
+ $fault = "client";
379
+ Message;
380
+ constructor(opts) {
381
+ super({
382
+ name: "InvalidExportPath",
383
+ $fault: "client",
384
+ ...opts,
385
+ });
386
+ Object.setPrototypeOf(this, InvalidExportPath.prototype);
387
+ this.Message = opts.Message;
388
+ }
389
+ }
390
+ export class InvalidImportPath extends __BaseException {
391
+ name = "InvalidImportPath";
392
+ $fault = "client";
393
+ Message;
394
+ constructor(opts) {
395
+ super({
396
+ name: "InvalidImportPath",
397
+ $fault: "client",
398
+ ...opts,
399
+ });
400
+ Object.setPrototypeOf(this, InvalidImportPath.prototype);
401
+ this.Message = opts.Message;
402
+ }
403
+ }
404
+ export class MissingFileSystemConfiguration extends __BaseException {
405
+ name = "MissingFileSystemConfiguration";
406
+ $fault = "client";
407
+ Message;
408
+ constructor(opts) {
409
+ super({
410
+ name: "MissingFileSystemConfiguration",
411
+ $fault: "client",
412
+ ...opts,
413
+ });
414
+ Object.setPrototypeOf(this, MissingFileSystemConfiguration.prototype);
415
+ this.Message = opts.Message;
416
+ }
417
+ }
418
+ export class MissingVolumeConfiguration extends __BaseException {
419
+ name = "MissingVolumeConfiguration";
420
+ $fault = "client";
421
+ Message;
422
+ constructor(opts) {
423
+ super({
424
+ name: "MissingVolumeConfiguration",
425
+ $fault: "client",
426
+ ...opts,
427
+ });
428
+ Object.setPrototypeOf(this, MissingVolumeConfiguration.prototype);
429
+ this.Message = opts.Message;
430
+ }
431
+ }
432
+ export class StorageVirtualMachineNotFound extends __BaseException {
433
+ name = "StorageVirtualMachineNotFound";
434
+ $fault = "client";
435
+ Message;
436
+ constructor(opts) {
437
+ super({
438
+ name: "StorageVirtualMachineNotFound",
439
+ $fault: "client",
440
+ ...opts,
441
+ });
442
+ Object.setPrototypeOf(this, StorageVirtualMachineNotFound.prototype);
443
+ this.Message = opts.Message;
444
+ }
445
+ }
446
+ export class BackupBeingCopied extends __BaseException {
447
+ name = "BackupBeingCopied";
448
+ $fault = "client";
449
+ Message;
450
+ BackupId;
451
+ constructor(opts) {
452
+ super({
453
+ name: "BackupBeingCopied",
454
+ $fault: "client",
455
+ ...opts,
456
+ });
457
+ Object.setPrototypeOf(this, BackupBeingCopied.prototype);
458
+ this.Message = opts.Message;
459
+ this.BackupId = opts.BackupId;
460
+ }
461
+ }
462
+ export class BackupRestoring extends __BaseException {
463
+ name = "BackupRestoring";
464
+ $fault = "client";
465
+ Message;
466
+ FileSystemId;
467
+ constructor(opts) {
468
+ super({
469
+ name: "BackupRestoring",
470
+ $fault: "client",
471
+ ...opts,
472
+ });
473
+ Object.setPrototypeOf(this, BackupRestoring.prototype);
474
+ this.Message = opts.Message;
475
+ this.FileSystemId = opts.FileSystemId;
476
+ }
477
+ }
478
+ export class DataRepositoryAssociationNotFound extends __BaseException {
479
+ name = "DataRepositoryAssociationNotFound";
480
+ $fault = "client";
481
+ Message;
482
+ constructor(opts) {
483
+ super({
484
+ name: "DataRepositoryAssociationNotFound",
485
+ $fault: "client",
486
+ ...opts,
487
+ });
488
+ Object.setPrototypeOf(this, DataRepositoryAssociationNotFound.prototype);
489
+ this.Message = opts.Message;
490
+ }
491
+ }
492
+ export class FileCacheNotFound extends __BaseException {
493
+ name = "FileCacheNotFound";
494
+ $fault = "client";
495
+ Message;
496
+ constructor(opts) {
497
+ super({
498
+ name: "FileCacheNotFound",
499
+ $fault: "client",
500
+ ...opts,
501
+ });
502
+ Object.setPrototypeOf(this, FileCacheNotFound.prototype);
503
+ this.Message = opts.Message;
504
+ }
505
+ }
506
+ export class SnapshotNotFound extends __BaseException {
507
+ name = "SnapshotNotFound";
508
+ $fault = "client";
509
+ Message;
510
+ constructor(opts) {
511
+ super({
512
+ name: "SnapshotNotFound",
513
+ $fault: "client",
514
+ ...opts,
515
+ });
516
+ Object.setPrototypeOf(this, SnapshotNotFound.prototype);
517
+ this.Message = opts.Message;
518
+ }
519
+ }
520
+ export class InvalidDataRepositoryType extends __BaseException {
521
+ name = "InvalidDataRepositoryType";
522
+ $fault = "client";
523
+ Message;
524
+ constructor(opts) {
525
+ super({
526
+ name: "InvalidDataRepositoryType",
527
+ $fault: "client",
528
+ ...opts,
529
+ });
530
+ Object.setPrototypeOf(this, InvalidDataRepositoryType.prototype);
531
+ this.Message = opts.Message;
532
+ }
533
+ }
534
+ export class S3AccessPointAttachmentNotFound extends __BaseException {
535
+ name = "S3AccessPointAttachmentNotFound";
536
+ $fault = "client";
537
+ Message;
538
+ constructor(opts) {
539
+ super({
540
+ name: "S3AccessPointAttachmentNotFound",
541
+ $fault: "client",
542
+ ...opts,
543
+ });
544
+ Object.setPrototypeOf(this, S3AccessPointAttachmentNotFound.prototype);
545
+ this.Message = opts.Message;
546
+ }
547
+ }
548
+ export class NotServiceResourceError extends __BaseException {
549
+ name = "NotServiceResourceError";
550
+ $fault = "client";
551
+ ResourceARN;
552
+ Message;
553
+ constructor(opts) {
554
+ super({
555
+ name: "NotServiceResourceError",
556
+ $fault: "client",
557
+ ...opts,
558
+ });
559
+ Object.setPrototypeOf(this, NotServiceResourceError.prototype);
560
+ this.ResourceARN = opts.ResourceARN;
561
+ this.Message = opts.Message;
562
+ }
563
+ }
564
+ export class ResourceDoesNotSupportTagging extends __BaseException {
565
+ name = "ResourceDoesNotSupportTagging";
566
+ $fault = "client";
567
+ ResourceARN;
568
+ Message;
569
+ constructor(opts) {
570
+ super({
571
+ name: "ResourceDoesNotSupportTagging",
572
+ $fault: "client",
573
+ ...opts,
574
+ });
575
+ Object.setPrototypeOf(this, ResourceDoesNotSupportTagging.prototype);
576
+ this.ResourceARN = opts.ResourceARN;
577
+ this.Message = opts.Message;
578
+ }
579
+ }
580
+ export class ResourceNotFound extends __BaseException {
581
+ name = "ResourceNotFound";
582
+ $fault = "client";
583
+ ResourceARN;
584
+ Message;
585
+ constructor(opts) {
586
+ super({
587
+ name: "ResourceNotFound",
588
+ $fault: "client",
589
+ ...opts,
590
+ });
591
+ Object.setPrototypeOf(this, ResourceNotFound.prototype);
592
+ this.ResourceARN = opts.ResourceARN;
593
+ this.Message = opts.Message;
594
+ }
595
+ }