@aws-sdk/client-redshift 3.51.0 → 3.54.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 (32) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/RedshiftServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +1399 -4
  5. package/dist-cjs/models/models_1.js +251 -3
  6. package/dist-cjs/protocols/Aws_query.js +1315 -4522
  7. package/dist-es/index.js +1 -0
  8. package/dist-es/models/RedshiftServiceException.js +12 -0
  9. package/dist-es/models/models_0.js +1287 -1
  10. package/dist-es/models/models_1.js +230 -1
  11. package/dist-es/protocols/Aws_query.js +2680 -4687
  12. package/dist-types/Redshift.d.ts +7 -5
  13. package/dist-types/RedshiftClient.d.ts +2 -2
  14. package/dist-types/commands/CreateSnapshotCopyGrantCommand.d.ts +2 -2
  15. package/dist-types/commands/DisableSnapshotCopyCommand.d.ts +2 -2
  16. package/dist-types/commands/ModifyClusterIamRolesCommand.d.ts +3 -1
  17. package/dist-types/index.d.ts +1 -0
  18. package/dist-types/models/RedshiftServiceException.d.ts +10 -0
  19. package/dist-types/models/models_0.d.ts +771 -438
  20. package/dist-types/models/models_1.d.ts +147 -86
  21. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  22. package/dist-types/runtimeConfig.d.ts +1 -1
  23. package/dist-types/runtimeConfig.native.d.ts +1 -1
  24. package/dist-types/ts3.4/RedshiftClient.d.ts +2 -2
  25. package/dist-types/ts3.4/index.d.ts +1 -0
  26. package/dist-types/ts3.4/models/RedshiftServiceException.d.ts +6 -0
  27. package/dist-types/ts3.4/models/models_0.d.ts +542 -429
  28. package/dist-types/ts3.4/models/models_1.d.ts +99 -77
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  32. package/package.json +34 -34
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { RedshiftServiceException as __BaseException } from "./RedshiftServiceException";
2
3
  export interface AcceptReservedNodeExchangeInputMessage {
3
4
 
4
5
  ReservedNodeId: string | undefined;
@@ -63,58 +64,67 @@ export declare namespace AcceptReservedNodeExchangeOutputMessage {
63
64
  const filterSensitiveLog: (obj: AcceptReservedNodeExchangeOutputMessage) => any;
64
65
  }
65
66
 
66
- export interface DependentServiceUnavailableFault extends __SmithyException, $MetadataBearer {
67
- name: "DependentServiceUnavailableFault";
68
- $fault: "client";
69
- message?: string;
67
+ export declare class DependentServiceUnavailableFault extends __BaseException {
68
+ readonly name: "DependentServiceUnavailableFault";
69
+ readonly $fault: "client";
70
+
71
+ constructor(opts: __ExceptionOptionType<DependentServiceUnavailableFault, __BaseException>);
70
72
  }
71
73
 
72
- export interface InvalidReservedNodeStateFault extends __SmithyException, $MetadataBearer {
73
- name: "InvalidReservedNodeStateFault";
74
- $fault: "client";
75
- message?: string;
74
+ export declare class InvalidReservedNodeStateFault extends __BaseException {
75
+ readonly name: "InvalidReservedNodeStateFault";
76
+ readonly $fault: "client";
77
+
78
+ constructor(opts: __ExceptionOptionType<InvalidReservedNodeStateFault, __BaseException>);
76
79
  }
77
80
 
78
- export interface ReservedNodeAlreadyExistsFault extends __SmithyException, $MetadataBearer {
79
- name: "ReservedNodeAlreadyExistsFault";
80
- $fault: "client";
81
- message?: string;
81
+ export declare class ReservedNodeAlreadyExistsFault extends __BaseException {
82
+ readonly name: "ReservedNodeAlreadyExistsFault";
83
+ readonly $fault: "client";
84
+
85
+ constructor(opts: __ExceptionOptionType<ReservedNodeAlreadyExistsFault, __BaseException>);
82
86
  }
83
87
 
84
- export interface ReservedNodeAlreadyMigratedFault extends __SmithyException, $MetadataBearer {
85
- name: "ReservedNodeAlreadyMigratedFault";
86
- $fault: "client";
87
- message?: string;
88
+ export declare class ReservedNodeAlreadyMigratedFault extends __BaseException {
89
+ readonly name: "ReservedNodeAlreadyMigratedFault";
90
+ readonly $fault: "client";
91
+
92
+ constructor(opts: __ExceptionOptionType<ReservedNodeAlreadyMigratedFault, __BaseException>);
88
93
  }
89
94
 
90
- export interface ReservedNodeNotFoundFault extends __SmithyException, $MetadataBearer {
91
- name: "ReservedNodeNotFoundFault";
92
- $fault: "client";
93
- message?: string;
95
+ export declare class ReservedNodeNotFoundFault extends __BaseException {
96
+ readonly name: "ReservedNodeNotFoundFault";
97
+ readonly $fault: "client";
98
+
99
+ constructor(opts: __ExceptionOptionType<ReservedNodeNotFoundFault, __BaseException>);
94
100
  }
95
101
 
96
- export interface ReservedNodeOfferingNotFoundFault extends __SmithyException, $MetadataBearer {
97
- name: "ReservedNodeOfferingNotFoundFault";
98
- $fault: "client";
99
- message?: string;
102
+ export declare class ReservedNodeOfferingNotFoundFault extends __BaseException {
103
+ readonly name: "ReservedNodeOfferingNotFoundFault";
104
+ readonly $fault: "client";
105
+
106
+ constructor(opts: __ExceptionOptionType<ReservedNodeOfferingNotFoundFault, __BaseException>);
100
107
  }
101
108
 
102
- export interface UnsupportedOperationFault extends __SmithyException, $MetadataBearer {
103
- name: "UnsupportedOperationFault";
104
- $fault: "client";
105
- message?: string;
109
+ export declare class UnsupportedOperationFault extends __BaseException {
110
+ readonly name: "UnsupportedOperationFault";
111
+ readonly $fault: "client";
112
+
113
+ constructor(opts: __ExceptionOptionType<UnsupportedOperationFault, __BaseException>);
106
114
  }
107
115
 
108
- export interface AccessToClusterDeniedFault extends __SmithyException, $MetadataBearer {
109
- name: "AccessToClusterDeniedFault";
110
- $fault: "client";
111
- message?: string;
116
+ export declare class AccessToClusterDeniedFault extends __BaseException {
117
+ readonly name: "AccessToClusterDeniedFault";
118
+ readonly $fault: "client";
119
+
120
+ constructor(opts: __ExceptionOptionType<AccessToClusterDeniedFault, __BaseException>);
112
121
  }
113
122
 
114
- export interface AccessToSnapshotDeniedFault extends __SmithyException, $MetadataBearer {
115
- name: "AccessToSnapshotDeniedFault";
116
- $fault: "client";
117
- message?: string;
123
+ export declare class AccessToSnapshotDeniedFault extends __BaseException {
124
+ readonly name: "AccessToSnapshotDeniedFault";
125
+ readonly $fault: "client";
126
+
127
+ constructor(opts: __ExceptionOptionType<AccessToSnapshotDeniedFault, __BaseException>);
118
128
  }
119
129
 
120
130
  export interface AttributeValueTarget {
@@ -161,10 +171,11 @@ export declare enum ActionType {
161
171
  RESTORE_CLUSTER = "restore-cluster"
162
172
  }
163
173
 
164
- export interface ClusterNotFoundFault extends __SmithyException, $MetadataBearer {
165
- name: "ClusterNotFoundFault";
166
- $fault: "client";
167
- message?: string;
174
+ export declare class ClusterNotFoundFault extends __BaseException {
175
+ readonly name: "ClusterNotFoundFault";
176
+ readonly $fault: "client";
177
+
178
+ constructor(opts: __ExceptionOptionType<ClusterNotFoundFault, __BaseException>);
168
179
  }
169
180
  export interface PartnerIntegrationInputMessage {
170
181
 
@@ -191,16 +202,18 @@ export declare namespace PartnerIntegrationOutputMessage {
191
202
  const filterSensitiveLog: (obj: PartnerIntegrationOutputMessage) => any;
192
203
  }
193
204
 
194
- export interface PartnerNotFoundFault extends __SmithyException, $MetadataBearer {
195
- name: "PartnerNotFoundFault";
196
- $fault: "client";
197
- message?: string;
205
+ export declare class PartnerNotFoundFault extends __BaseException {
206
+ readonly name: "PartnerNotFoundFault";
207
+ readonly $fault: "client";
208
+
209
+ constructor(opts: __ExceptionOptionType<PartnerNotFoundFault, __BaseException>);
198
210
  }
199
211
 
200
- export interface UnauthorizedPartnerIntegrationFault extends __SmithyException, $MetadataBearer {
201
- name: "UnauthorizedPartnerIntegrationFault";
202
- $fault: "client";
203
- message?: string;
212
+ export declare class UnauthorizedPartnerIntegrationFault extends __BaseException {
213
+ readonly name: "UnauthorizedPartnerIntegrationFault";
214
+ readonly $fault: "client";
215
+
216
+ constructor(opts: __ExceptionOptionType<UnauthorizedPartnerIntegrationFault, __BaseException>);
204
217
  }
205
218
  export declare enum AquaConfigurationStatus {
206
219
  AUTO = "auto",
@@ -230,6 +243,8 @@ export interface AssociateDataShareConsumerMessage {
230
243
  AssociateEntireAccount?: boolean;
231
244
 
232
245
  ConsumerArn?: string;
246
+
247
+ ConsumerRegion?: string;
233
248
  }
234
249
  export declare namespace AssociateDataShareConsumerMessage {
235
250
 
@@ -250,6 +265,8 @@ export interface DataShareAssociation {
250
265
 
251
266
  Status?: DataShareStatus | string;
252
267
 
268
+ ConsumerRegion?: string;
269
+
253
270
  CreatedDate?: Date;
254
271
 
255
272
  StatusChangeDate?: Date;
@@ -275,16 +292,18 @@ export declare namespace DataShare {
275
292
  const filterSensitiveLog: (obj: DataShare) => any;
276
293
  }
277
294
 
278
- export interface InvalidDataShareFault extends __SmithyException, $MetadataBearer {
279
- name: "InvalidDataShareFault";
280
- $fault: "client";
281
- message?: string;
295
+ export declare class InvalidDataShareFault extends __BaseException {
296
+ readonly name: "InvalidDataShareFault";
297
+ readonly $fault: "client";
298
+
299
+ constructor(opts: __ExceptionOptionType<InvalidDataShareFault, __BaseException>);
282
300
  }
283
301
 
284
- export interface InvalidNamespaceFault extends __SmithyException, $MetadataBearer {
285
- name: "InvalidNamespaceFault";
286
- $fault: "client";
287
- message?: string;
302
+ export declare class InvalidNamespaceFault extends __BaseException {
303
+ readonly name: "InvalidNamespaceFault";
304
+ readonly $fault: "client";
305
+
306
+ constructor(opts: __ExceptionOptionType<InvalidNamespaceFault, __BaseException>);
288
307
  }
289
308
  export declare type ScheduleState = "ACTIVE" | "FAILED" | "MODIFYING";
290
309
 
@@ -310,40 +329,46 @@ export declare namespace AuthenticationProfile {
310
329
  const filterSensitiveLog: (obj: AuthenticationProfile) => any;
311
330
  }
312
331
 
313
- export interface AuthenticationProfileAlreadyExistsFault extends __SmithyException, $MetadataBearer {
314
- name: "AuthenticationProfileAlreadyExistsFault";
315
- $fault: "client";
316
- message?: string;
332
+ export declare class AuthenticationProfileAlreadyExistsFault extends __BaseException {
333
+ readonly name: "AuthenticationProfileAlreadyExistsFault";
334
+ readonly $fault: "client";
335
+
336
+ constructor(opts: __ExceptionOptionType<AuthenticationProfileAlreadyExistsFault, __BaseException>);
317
337
  }
318
338
 
319
- export interface AuthenticationProfileNotFoundFault extends __SmithyException, $MetadataBearer {
320
- name: "AuthenticationProfileNotFoundFault";
321
- $fault: "client";
322
- message?: string;
339
+ export declare class AuthenticationProfileNotFoundFault extends __BaseException {
340
+ readonly name: "AuthenticationProfileNotFoundFault";
341
+ readonly $fault: "client";
342
+
343
+ constructor(opts: __ExceptionOptionType<AuthenticationProfileNotFoundFault, __BaseException>);
323
344
  }
324
345
 
325
- export interface AuthenticationProfileQuotaExceededFault extends __SmithyException, $MetadataBearer {
326
- name: "AuthenticationProfileQuotaExceededFault";
327
- $fault: "client";
328
- message?: string;
346
+ export declare class AuthenticationProfileQuotaExceededFault extends __BaseException {
347
+ readonly name: "AuthenticationProfileQuotaExceededFault";
348
+ readonly $fault: "client";
349
+
350
+ constructor(opts: __ExceptionOptionType<AuthenticationProfileQuotaExceededFault, __BaseException>);
329
351
  }
330
352
 
331
- export interface AuthorizationAlreadyExistsFault extends __SmithyException, $MetadataBearer {
332
- name: "AuthorizationAlreadyExistsFault";
333
- $fault: "client";
334
- message?: string;
353
+ export declare class AuthorizationAlreadyExistsFault extends __BaseException {
354
+ readonly name: "AuthorizationAlreadyExistsFault";
355
+ readonly $fault: "client";
356
+
357
+ constructor(opts: __ExceptionOptionType<AuthorizationAlreadyExistsFault, __BaseException>);
335
358
  }
336
359
 
337
- export interface AuthorizationNotFoundFault extends __SmithyException, $MetadataBearer {
338
- name: "AuthorizationNotFoundFault";
339
- $fault: "client";
340
- message?: string;
360
+ export declare class AuthorizationNotFoundFault extends __BaseException {
361
+ readonly name: "AuthorizationNotFoundFault";
362
+ readonly $fault: "client";
363
+
364
+ constructor(opts: __ExceptionOptionType<AuthorizationNotFoundFault, __BaseException>);
341
365
  }
342
366
 
343
- export interface AuthorizationQuotaExceededFault extends __SmithyException, $MetadataBearer {
344
- name: "AuthorizationQuotaExceededFault";
345
- $fault: "client";
346
- message?: string;
367
+ export declare class AuthorizationQuotaExceededFault extends __BaseException {
368
+ readonly name: "AuthorizationQuotaExceededFault";
369
+ readonly $fault: "client";
370
+
371
+ constructor(opts: __ExceptionOptionType<AuthorizationQuotaExceededFault, __BaseException>);
347
372
  }
348
373
  export declare enum AuthorizationStatus {
349
374
  AUTHORIZED = "Authorized",
@@ -429,16 +454,18 @@ export declare namespace AuthorizeClusterSecurityGroupIngressResult {
429
454
  const filterSensitiveLog: (obj: AuthorizeClusterSecurityGroupIngressResult) => any;
430
455
  }
431
456
 
432
- export interface ClusterSecurityGroupNotFoundFault extends __SmithyException, $MetadataBearer {
433
- name: "ClusterSecurityGroupNotFoundFault";
434
- $fault: "client";
435
- message?: string;
457
+ export declare class ClusterSecurityGroupNotFoundFault extends __BaseException {
458
+ readonly name: "ClusterSecurityGroupNotFoundFault";
459
+ readonly $fault: "client";
460
+
461
+ constructor(opts: __ExceptionOptionType<ClusterSecurityGroupNotFoundFault, __BaseException>);
436
462
  }
437
463
 
438
- export interface InvalidClusterSecurityGroupStateFault extends __SmithyException, $MetadataBearer {
439
- name: "InvalidClusterSecurityGroupStateFault";
440
- $fault: "client";
441
- message?: string;
464
+ export declare class InvalidClusterSecurityGroupStateFault extends __BaseException {
465
+ readonly name: "InvalidClusterSecurityGroupStateFault";
466
+ readonly $fault: "client";
467
+
468
+ constructor(opts: __ExceptionOptionType<InvalidClusterSecurityGroupStateFault, __BaseException>);
442
469
  }
443
470
  export interface AuthorizeDataShareMessage {
444
471
 
@@ -488,28 +515,32 @@ export declare namespace EndpointAuthorization {
488
515
  const filterSensitiveLog: (obj: EndpointAuthorization) => any;
489
516
  }
490
517
 
491
- export interface EndpointAuthorizationAlreadyExistsFault extends __SmithyException, $MetadataBearer {
492
- name: "EndpointAuthorizationAlreadyExistsFault";
493
- $fault: "client";
494
- message?: string;
518
+ export declare class EndpointAuthorizationAlreadyExistsFault extends __BaseException {
519
+ readonly name: "EndpointAuthorizationAlreadyExistsFault";
520
+ readonly $fault: "client";
521
+
522
+ constructor(opts: __ExceptionOptionType<EndpointAuthorizationAlreadyExistsFault, __BaseException>);
495
523
  }
496
524
 
497
- export interface EndpointAuthorizationsPerClusterLimitExceededFault extends __SmithyException, $MetadataBearer {
498
- name: "EndpointAuthorizationsPerClusterLimitExceededFault";
499
- $fault: "client";
500
- message?: string;
525
+ export declare class EndpointAuthorizationsPerClusterLimitExceededFault extends __BaseException {
526
+ readonly name: "EndpointAuthorizationsPerClusterLimitExceededFault";
527
+ readonly $fault: "client";
528
+
529
+ constructor(opts: __ExceptionOptionType<EndpointAuthorizationsPerClusterLimitExceededFault, __BaseException>);
501
530
  }
502
531
 
503
- export interface InvalidAuthorizationStateFault extends __SmithyException, $MetadataBearer {
504
- name: "InvalidAuthorizationStateFault";
505
- $fault: "client";
506
- message?: string;
532
+ export declare class InvalidAuthorizationStateFault extends __BaseException {
533
+ readonly name: "InvalidAuthorizationStateFault";
534
+ readonly $fault: "client";
535
+
536
+ constructor(opts: __ExceptionOptionType<InvalidAuthorizationStateFault, __BaseException>);
507
537
  }
508
538
 
509
- export interface InvalidClusterStateFault extends __SmithyException, $MetadataBearer {
510
- name: "InvalidClusterStateFault";
511
- $fault: "client";
512
- message?: string;
539
+ export declare class InvalidClusterStateFault extends __BaseException {
540
+ readonly name: "InvalidClusterStateFault";
541
+ readonly $fault: "client";
542
+
543
+ constructor(opts: __ExceptionOptionType<InvalidClusterStateFault, __BaseException>);
513
544
  }
514
545
 
515
546
  export interface AuthorizeSnapshotAccessMessage {
@@ -608,28 +639,32 @@ export declare namespace AuthorizeSnapshotAccessResult {
608
639
  const filterSensitiveLog: (obj: AuthorizeSnapshotAccessResult) => any;
609
640
  }
610
641
 
611
- export interface ClusterSnapshotNotFoundFault extends __SmithyException, $MetadataBearer {
612
- name: "ClusterSnapshotNotFoundFault";
613
- $fault: "client";
614
- message?: string;
642
+ export declare class ClusterSnapshotNotFoundFault extends __BaseException {
643
+ readonly name: "ClusterSnapshotNotFoundFault";
644
+ readonly $fault: "client";
645
+
646
+ constructor(opts: __ExceptionOptionType<ClusterSnapshotNotFoundFault, __BaseException>);
615
647
  }
616
648
 
617
- export interface DependentServiceRequestThrottlingFault extends __SmithyException, $MetadataBearer {
618
- name: "DependentServiceRequestThrottlingFault";
619
- $fault: "client";
620
- message?: string;
649
+ export declare class DependentServiceRequestThrottlingFault extends __BaseException {
650
+ readonly name: "DependentServiceRequestThrottlingFault";
651
+ readonly $fault: "client";
652
+
653
+ constructor(opts: __ExceptionOptionType<DependentServiceRequestThrottlingFault, __BaseException>);
621
654
  }
622
655
 
623
- export interface InvalidClusterSnapshotStateFault extends __SmithyException, $MetadataBearer {
624
- name: "InvalidClusterSnapshotStateFault";
625
- $fault: "client";
626
- message?: string;
656
+ export declare class InvalidClusterSnapshotStateFault extends __BaseException {
657
+ readonly name: "InvalidClusterSnapshotStateFault";
658
+ readonly $fault: "client";
659
+
660
+ constructor(opts: __ExceptionOptionType<InvalidClusterSnapshotStateFault, __BaseException>);
627
661
  }
628
662
 
629
- export interface LimitExceededFault extends __SmithyException, $MetadataBearer {
630
- name: "LimitExceededFault";
631
- $fault: "client";
632
- message?: string;
663
+ export declare class LimitExceededFault extends __BaseException {
664
+ readonly name: "LimitExceededFault";
665
+ readonly $fault: "client";
666
+
667
+ constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
633
668
  }
634
669
 
635
670
  export interface SupportedPlatform {
@@ -696,16 +731,18 @@ export declare namespace BatchDeleteClusterSnapshotsResult {
696
731
  const filterSensitiveLog: (obj: BatchDeleteClusterSnapshotsResult) => any;
697
732
  }
698
733
 
699
- export interface BatchDeleteRequestSizeExceededFault extends __SmithyException, $MetadataBearer {
700
- name: "BatchDeleteRequestSizeExceededFault";
701
- $fault: "client";
702
- message?: string;
734
+ export declare class BatchDeleteRequestSizeExceededFault extends __BaseException {
735
+ readonly name: "BatchDeleteRequestSizeExceededFault";
736
+ readonly $fault: "client";
737
+
738
+ constructor(opts: __ExceptionOptionType<BatchDeleteRequestSizeExceededFault, __BaseException>);
703
739
  }
704
740
 
705
- export interface BatchModifyClusterSnapshotsLimitExceededFault extends __SmithyException, $MetadataBearer {
706
- name: "BatchModifyClusterSnapshotsLimitExceededFault";
707
- $fault: "client";
708
- message?: string;
741
+ export declare class BatchModifyClusterSnapshotsLimitExceededFault extends __BaseException {
742
+ readonly name: "BatchModifyClusterSnapshotsLimitExceededFault";
743
+ readonly $fault: "client";
744
+
745
+ constructor(opts: __ExceptionOptionType<BatchModifyClusterSnapshotsLimitExceededFault, __BaseException>);
709
746
  }
710
747
  export interface BatchModifyClusterSnapshotsMessage {
711
748
 
@@ -730,16 +767,18 @@ export declare namespace BatchModifyClusterSnapshotsOutputMessage {
730
767
  const filterSensitiveLog: (obj: BatchModifyClusterSnapshotsOutputMessage) => any;
731
768
  }
732
769
 
733
- export interface InvalidRetentionPeriodFault extends __SmithyException, $MetadataBearer {
734
- name: "InvalidRetentionPeriodFault";
735
- $fault: "client";
736
- message?: string;
770
+ export declare class InvalidRetentionPeriodFault extends __BaseException {
771
+ readonly name: "InvalidRetentionPeriodFault";
772
+ readonly $fault: "client";
773
+
774
+ constructor(opts: __ExceptionOptionType<InvalidRetentionPeriodFault, __BaseException>);
737
775
  }
738
776
 
739
- export interface BucketNotFoundFault extends __SmithyException, $MetadataBearer {
740
- name: "BucketNotFoundFault";
741
- $fault: "client";
742
- message?: string;
777
+ export declare class BucketNotFoundFault extends __BaseException {
778
+ readonly name: "BucketNotFoundFault";
779
+ readonly $fault: "client";
780
+
781
+ constructor(opts: __ExceptionOptionType<BucketNotFoundFault, __BaseException>);
743
782
  }
744
783
  export interface CancelResizeMessage {
745
784
 
@@ -750,10 +789,11 @@ export declare namespace CancelResizeMessage {
750
789
  const filterSensitiveLog: (obj: CancelResizeMessage) => any;
751
790
  }
752
791
 
753
- export interface ResizeNotFoundFault extends __SmithyException, $MetadataBearer {
754
- name: "ResizeNotFoundFault";
755
- $fault: "client";
756
- message?: string;
792
+ export declare class ResizeNotFoundFault extends __BaseException {
793
+ readonly name: "ResizeNotFoundFault";
794
+ readonly $fault: "client";
795
+
796
+ constructor(opts: __ExceptionOptionType<ResizeNotFoundFault, __BaseException>);
757
797
  }
758
798
 
759
799
  export interface ResizeProgressMessage {
@@ -1182,10 +1222,11 @@ export declare namespace Cluster {
1182
1222
  const filterSensitiveLog: (obj: Cluster) => any;
1183
1223
  }
1184
1224
 
1185
- export interface ClusterAlreadyExistsFault extends __SmithyException, $MetadataBearer {
1186
- name: "ClusterAlreadyExistsFault";
1187
- $fault: "client";
1188
- message?: string;
1225
+ export declare class ClusterAlreadyExistsFault extends __BaseException {
1226
+ readonly name: "ClusterAlreadyExistsFault";
1227
+ readonly $fault: "client";
1228
+
1229
+ constructor(opts: __ExceptionOptionType<ClusterAlreadyExistsFault, __BaseException>);
1189
1230
  }
1190
1231
 
1191
1232
  export interface ClusterCredentials {
@@ -1239,10 +1280,11 @@ export declare namespace ClusterDbRevisionsMessage {
1239
1280
  const filterSensitiveLog: (obj: ClusterDbRevisionsMessage) => any;
1240
1281
  }
1241
1282
 
1242
- export interface ClusterOnLatestRevisionFault extends __SmithyException, $MetadataBearer {
1243
- name: "ClusterOnLatestRevisionFault";
1244
- $fault: "client";
1245
- message?: string;
1283
+ export declare class ClusterOnLatestRevisionFault extends __BaseException {
1284
+ readonly name: "ClusterOnLatestRevisionFault";
1285
+ readonly $fault: "client";
1286
+
1287
+ constructor(opts: __ExceptionOptionType<ClusterOnLatestRevisionFault, __BaseException>);
1246
1288
  }
1247
1289
 
1248
1290
  export interface ClusterParameterGroup {
@@ -1260,10 +1302,11 @@ export declare namespace ClusterParameterGroup {
1260
1302
  const filterSensitiveLog: (obj: ClusterParameterGroup) => any;
1261
1303
  }
1262
1304
 
1263
- export interface ClusterParameterGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
1264
- name: "ClusterParameterGroupAlreadyExistsFault";
1265
- $fault: "client";
1266
- message?: string;
1305
+ export declare class ClusterParameterGroupAlreadyExistsFault extends __BaseException {
1306
+ readonly name: "ClusterParameterGroupAlreadyExistsFault";
1307
+ readonly $fault: "client";
1308
+
1309
+ constructor(opts: __ExceptionOptionType<ClusterParameterGroupAlreadyExistsFault, __BaseException>);
1267
1310
  }
1268
1311
  export declare type ParameterApplyType = "dynamic" | "static";
1269
1312
 
@@ -1314,16 +1357,18 @@ export declare namespace ClusterParameterGroupNameMessage {
1314
1357
  const filterSensitiveLog: (obj: ClusterParameterGroupNameMessage) => any;
1315
1358
  }
1316
1359
 
1317
- export interface ClusterParameterGroupNotFoundFault extends __SmithyException, $MetadataBearer {
1318
- name: "ClusterParameterGroupNotFoundFault";
1319
- $fault: "client";
1320
- message?: string;
1360
+ export declare class ClusterParameterGroupNotFoundFault extends __BaseException {
1361
+ readonly name: "ClusterParameterGroupNotFoundFault";
1362
+ readonly $fault: "client";
1363
+
1364
+ constructor(opts: __ExceptionOptionType<ClusterParameterGroupNotFoundFault, __BaseException>);
1321
1365
  }
1322
1366
 
1323
- export interface ClusterParameterGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
1324
- name: "ClusterParameterGroupQuotaExceededFault";
1325
- $fault: "client";
1326
- message?: string;
1367
+ export declare class ClusterParameterGroupQuotaExceededFault extends __BaseException {
1368
+ readonly name: "ClusterParameterGroupQuotaExceededFault";
1369
+ readonly $fault: "client";
1370
+
1371
+ constructor(opts: __ExceptionOptionType<ClusterParameterGroupQuotaExceededFault, __BaseException>);
1327
1372
  }
1328
1373
 
1329
1374
  export interface ClusterParameterGroupsMessage {
@@ -1337,16 +1382,18 @@ export declare namespace ClusterParameterGroupsMessage {
1337
1382
  const filterSensitiveLog: (obj: ClusterParameterGroupsMessage) => any;
1338
1383
  }
1339
1384
 
1340
- export interface ClusterQuotaExceededFault extends __SmithyException, $MetadataBearer {
1341
- name: "ClusterQuotaExceededFault";
1342
- $fault: "client";
1343
- message?: string;
1385
+ export declare class ClusterQuotaExceededFault extends __BaseException {
1386
+ readonly name: "ClusterQuotaExceededFault";
1387
+ readonly $fault: "client";
1388
+
1389
+ constructor(opts: __ExceptionOptionType<ClusterQuotaExceededFault, __BaseException>);
1344
1390
  }
1345
1391
 
1346
- export interface ClusterSecurityGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
1347
- name: "ClusterSecurityGroupAlreadyExistsFault";
1348
- $fault: "client";
1349
- message?: string;
1392
+ export declare class ClusterSecurityGroupAlreadyExistsFault extends __BaseException {
1393
+ readonly name: "ClusterSecurityGroupAlreadyExistsFault";
1394
+ readonly $fault: "client";
1395
+
1396
+ constructor(opts: __ExceptionOptionType<ClusterSecurityGroupAlreadyExistsFault, __BaseException>);
1350
1397
  }
1351
1398
 
1352
1399
  export interface ClusterSecurityGroupMessage {
@@ -1360,10 +1407,11 @@ export declare namespace ClusterSecurityGroupMessage {
1360
1407
  const filterSensitiveLog: (obj: ClusterSecurityGroupMessage) => any;
1361
1408
  }
1362
1409
 
1363
- export interface ClusterSecurityGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
1364
- name: "ClusterSecurityGroupQuotaExceededFault";
1365
- $fault: "client";
1366
- message?: string;
1410
+ export declare class ClusterSecurityGroupQuotaExceededFault extends __BaseException {
1411
+ readonly name: "ClusterSecurityGroupQuotaExceededFault";
1412
+ readonly $fault: "client";
1413
+
1414
+ constructor(opts: __ExceptionOptionType<ClusterSecurityGroupQuotaExceededFault, __BaseException>);
1367
1415
  }
1368
1416
 
1369
1417
  export interface ClustersMessage {
@@ -1377,16 +1425,18 @@ export declare namespace ClustersMessage {
1377
1425
  const filterSensitiveLog: (obj: ClustersMessage) => any;
1378
1426
  }
1379
1427
 
1380
- export interface ClusterSnapshotAlreadyExistsFault extends __SmithyException, $MetadataBearer {
1381
- name: "ClusterSnapshotAlreadyExistsFault";
1382
- $fault: "client";
1383
- message?: string;
1428
+ export declare class ClusterSnapshotAlreadyExistsFault extends __BaseException {
1429
+ readonly name: "ClusterSnapshotAlreadyExistsFault";
1430
+ readonly $fault: "client";
1431
+
1432
+ constructor(opts: __ExceptionOptionType<ClusterSnapshotAlreadyExistsFault, __BaseException>);
1384
1433
  }
1385
1434
 
1386
- export interface ClusterSnapshotQuotaExceededFault extends __SmithyException, $MetadataBearer {
1387
- name: "ClusterSnapshotQuotaExceededFault";
1388
- $fault: "client";
1389
- message?: string;
1435
+ export declare class ClusterSnapshotQuotaExceededFault extends __BaseException {
1436
+ readonly name: "ClusterSnapshotQuotaExceededFault";
1437
+ readonly $fault: "client";
1438
+
1439
+ constructor(opts: __ExceptionOptionType<ClusterSnapshotQuotaExceededFault, __BaseException>);
1390
1440
  }
1391
1441
 
1392
1442
  export interface Subnet {
@@ -1421,10 +1471,11 @@ export declare namespace ClusterSubnetGroup {
1421
1471
  const filterSensitiveLog: (obj: ClusterSubnetGroup) => any;
1422
1472
  }
1423
1473
 
1424
- export interface ClusterSubnetGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
1425
- name: "ClusterSubnetGroupAlreadyExistsFault";
1426
- $fault: "client";
1427
- message?: string;
1474
+ export declare class ClusterSubnetGroupAlreadyExistsFault extends __BaseException {
1475
+ readonly name: "ClusterSubnetGroupAlreadyExistsFault";
1476
+ readonly $fault: "client";
1477
+
1478
+ constructor(opts: __ExceptionOptionType<ClusterSubnetGroupAlreadyExistsFault, __BaseException>);
1428
1479
  }
1429
1480
 
1430
1481
  export interface ClusterSubnetGroupMessage {
@@ -1438,22 +1489,25 @@ export declare namespace ClusterSubnetGroupMessage {
1438
1489
  const filterSensitiveLog: (obj: ClusterSubnetGroupMessage) => any;
1439
1490
  }
1440
1491
 
1441
- export interface ClusterSubnetGroupNotFoundFault extends __SmithyException, $MetadataBearer {
1442
- name: "ClusterSubnetGroupNotFoundFault";
1443
- $fault: "client";
1444
- message?: string;
1492
+ export declare class ClusterSubnetGroupNotFoundFault extends __BaseException {
1493
+ readonly name: "ClusterSubnetGroupNotFoundFault";
1494
+ readonly $fault: "client";
1495
+
1496
+ constructor(opts: __ExceptionOptionType<ClusterSubnetGroupNotFoundFault, __BaseException>);
1445
1497
  }
1446
1498
 
1447
- export interface ClusterSubnetGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
1448
- name: "ClusterSubnetGroupQuotaExceededFault";
1449
- $fault: "client";
1450
- message?: string;
1499
+ export declare class ClusterSubnetGroupQuotaExceededFault extends __BaseException {
1500
+ readonly name: "ClusterSubnetGroupQuotaExceededFault";
1501
+ readonly $fault: "client";
1502
+
1503
+ constructor(opts: __ExceptionOptionType<ClusterSubnetGroupQuotaExceededFault, __BaseException>);
1451
1504
  }
1452
1505
 
1453
- export interface ClusterSubnetQuotaExceededFault extends __SmithyException, $MetadataBearer {
1454
- name: "ClusterSubnetQuotaExceededFault";
1455
- $fault: "client";
1456
- message?: string;
1506
+ export declare class ClusterSubnetQuotaExceededFault extends __BaseException {
1507
+ readonly name: "ClusterSubnetQuotaExceededFault";
1508
+ readonly $fault: "client";
1509
+
1510
+ constructor(opts: __ExceptionOptionType<ClusterSubnetQuotaExceededFault, __BaseException>);
1457
1511
  }
1458
1512
 
1459
1513
  export interface ClusterVersion {
@@ -1503,10 +1557,11 @@ export declare namespace CopyClusterSnapshotResult {
1503
1557
  const filterSensitiveLog: (obj: CopyClusterSnapshotResult) => any;
1504
1558
  }
1505
1559
 
1506
- export interface CopyToRegionDisabledFault extends __SmithyException, $MetadataBearer {
1507
- name: "CopyToRegionDisabledFault";
1508
- $fault: "client";
1509
- message?: string;
1560
+ export declare class CopyToRegionDisabledFault extends __BaseException {
1561
+ readonly name: "CopyToRegionDisabledFault";
1562
+ readonly $fault: "client";
1563
+
1564
+ constructor(opts: __ExceptionOptionType<CopyToRegionDisabledFault, __BaseException>);
1510
1565
  }
1511
1566
  export interface CreateAuthenticationProfileMessage {
1512
1567
 
@@ -1529,10 +1584,11 @@ export declare namespace CreateAuthenticationProfileResult {
1529
1584
  const filterSensitiveLog: (obj: CreateAuthenticationProfileResult) => any;
1530
1585
  }
1531
1586
 
1532
- export interface InvalidAuthenticationProfileRequestFault extends __SmithyException, $MetadataBearer {
1533
- name: "InvalidAuthenticationProfileRequestFault";
1534
- $fault: "client";
1535
- message?: string;
1587
+ export declare class InvalidAuthenticationProfileRequestFault extends __BaseException {
1588
+ readonly name: "InvalidAuthenticationProfileRequestFault";
1589
+ readonly $fault: "client";
1590
+
1591
+ constructor(opts: __ExceptionOptionType<InvalidAuthenticationProfileRequestFault, __BaseException>);
1536
1592
  }
1537
1593
 
1538
1594
  export interface CreateClusterMessage {
@@ -1616,88 +1672,102 @@ export declare namespace CreateClusterResult {
1616
1672
  const filterSensitiveLog: (obj: CreateClusterResult) => any;
1617
1673
  }
1618
1674
 
1619
- export interface HsmClientCertificateNotFoundFault extends __SmithyException, $MetadataBearer {
1620
- name: "HsmClientCertificateNotFoundFault";
1621
- $fault: "client";
1622
- message?: string;
1675
+ export declare class HsmClientCertificateNotFoundFault extends __BaseException {
1676
+ readonly name: "HsmClientCertificateNotFoundFault";
1677
+ readonly $fault: "client";
1678
+
1679
+ constructor(opts: __ExceptionOptionType<HsmClientCertificateNotFoundFault, __BaseException>);
1623
1680
  }
1624
1681
 
1625
- export interface HsmConfigurationNotFoundFault extends __SmithyException, $MetadataBearer {
1626
- name: "HsmConfigurationNotFoundFault";
1627
- $fault: "client";
1628
- message?: string;
1682
+ export declare class HsmConfigurationNotFoundFault extends __BaseException {
1683
+ readonly name: "HsmConfigurationNotFoundFault";
1684
+ readonly $fault: "client";
1685
+
1686
+ constructor(opts: __ExceptionOptionType<HsmConfigurationNotFoundFault, __BaseException>);
1629
1687
  }
1630
1688
 
1631
- export interface InsufficientClusterCapacityFault extends __SmithyException, $MetadataBearer {
1632
- name: "InsufficientClusterCapacityFault";
1633
- $fault: "client";
1634
- message?: string;
1689
+ export declare class InsufficientClusterCapacityFault extends __BaseException {
1690
+ readonly name: "InsufficientClusterCapacityFault";
1691
+ readonly $fault: "client";
1692
+
1693
+ constructor(opts: __ExceptionOptionType<InsufficientClusterCapacityFault, __BaseException>);
1635
1694
  }
1636
1695
 
1637
- export interface InvalidClusterSubnetGroupStateFault extends __SmithyException, $MetadataBearer {
1638
- name: "InvalidClusterSubnetGroupStateFault";
1639
- $fault: "client";
1640
- message?: string;
1696
+ export declare class InvalidClusterSubnetGroupStateFault extends __BaseException {
1697
+ readonly name: "InvalidClusterSubnetGroupStateFault";
1698
+ readonly $fault: "client";
1699
+
1700
+ constructor(opts: __ExceptionOptionType<InvalidClusterSubnetGroupStateFault, __BaseException>);
1641
1701
  }
1642
1702
 
1643
- export interface InvalidClusterTrackFault extends __SmithyException, $MetadataBearer {
1644
- name: "InvalidClusterTrackFault";
1645
- $fault: "client";
1646
- message?: string;
1703
+ export declare class InvalidClusterTrackFault extends __BaseException {
1704
+ readonly name: "InvalidClusterTrackFault";
1705
+ readonly $fault: "client";
1706
+
1707
+ constructor(opts: __ExceptionOptionType<InvalidClusterTrackFault, __BaseException>);
1647
1708
  }
1648
1709
 
1649
- export interface InvalidElasticIpFault extends __SmithyException, $MetadataBearer {
1650
- name: "InvalidElasticIpFault";
1651
- $fault: "client";
1652
- message?: string;
1710
+ export declare class InvalidElasticIpFault extends __BaseException {
1711
+ readonly name: "InvalidElasticIpFault";
1712
+ readonly $fault: "client";
1713
+
1714
+ constructor(opts: __ExceptionOptionType<InvalidElasticIpFault, __BaseException>);
1653
1715
  }
1654
1716
 
1655
- export interface InvalidSubnet extends __SmithyException, $MetadataBearer {
1656
- name: "InvalidSubnet";
1657
- $fault: "client";
1658
- message?: string;
1717
+ export declare class InvalidSubnet extends __BaseException {
1718
+ readonly name: "InvalidSubnet";
1719
+ readonly $fault: "client";
1720
+
1721
+ constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
1659
1722
  }
1660
1723
 
1661
- export interface InvalidTagFault extends __SmithyException, $MetadataBearer {
1662
- name: "InvalidTagFault";
1663
- $fault: "client";
1664
- message?: string;
1724
+ export declare class InvalidTagFault extends __BaseException {
1725
+ readonly name: "InvalidTagFault";
1726
+ readonly $fault: "client";
1727
+
1728
+ constructor(opts: __ExceptionOptionType<InvalidTagFault, __BaseException>);
1665
1729
  }
1666
1730
 
1667
- export interface InvalidVPCNetworkStateFault extends __SmithyException, $MetadataBearer {
1668
- name: "InvalidVPCNetworkStateFault";
1669
- $fault: "client";
1670
- message?: string;
1731
+ export declare class InvalidVPCNetworkStateFault extends __BaseException {
1732
+ readonly name: "InvalidVPCNetworkStateFault";
1733
+ readonly $fault: "client";
1734
+
1735
+ constructor(opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>);
1671
1736
  }
1672
1737
 
1673
- export interface NumberOfNodesPerClusterLimitExceededFault extends __SmithyException, $MetadataBearer {
1674
- name: "NumberOfNodesPerClusterLimitExceededFault";
1675
- $fault: "client";
1676
- message?: string;
1738
+ export declare class NumberOfNodesPerClusterLimitExceededFault extends __BaseException {
1739
+ readonly name: "NumberOfNodesPerClusterLimitExceededFault";
1740
+ readonly $fault: "client";
1741
+
1742
+ constructor(opts: __ExceptionOptionType<NumberOfNodesPerClusterLimitExceededFault, __BaseException>);
1677
1743
  }
1678
1744
 
1679
- export interface NumberOfNodesQuotaExceededFault extends __SmithyException, $MetadataBearer {
1680
- name: "NumberOfNodesQuotaExceededFault";
1681
- $fault: "client";
1682
- message?: string;
1745
+ export declare class NumberOfNodesQuotaExceededFault extends __BaseException {
1746
+ readonly name: "NumberOfNodesQuotaExceededFault";
1747
+ readonly $fault: "client";
1748
+
1749
+ constructor(opts: __ExceptionOptionType<NumberOfNodesQuotaExceededFault, __BaseException>);
1683
1750
  }
1684
1751
 
1685
- export interface SnapshotScheduleNotFoundFault extends __SmithyException, $MetadataBearer {
1686
- name: "SnapshotScheduleNotFoundFault";
1687
- $fault: "client";
1688
- message?: string;
1752
+ export declare class SnapshotScheduleNotFoundFault extends __BaseException {
1753
+ readonly name: "SnapshotScheduleNotFoundFault";
1754
+ readonly $fault: "client";
1755
+
1756
+ constructor(opts: __ExceptionOptionType<SnapshotScheduleNotFoundFault, __BaseException>);
1689
1757
  }
1690
1758
 
1691
- export interface TagLimitExceededFault extends __SmithyException, $MetadataBearer {
1692
- name: "TagLimitExceededFault";
1693
- $fault: "client";
1694
- message?: string;
1759
+ export declare class TagLimitExceededFault extends __BaseException {
1760
+ readonly name: "TagLimitExceededFault";
1761
+ readonly $fault: "client";
1762
+
1763
+ constructor(opts: __ExceptionOptionType<TagLimitExceededFault, __BaseException>);
1695
1764
  }
1696
1765
 
1697
- export interface UnauthorizedOperation extends __SmithyException, $MetadataBearer {
1698
- name: "UnauthorizedOperation";
1699
- $fault: "client";
1700
- message?: string;
1766
+ export declare class UnauthorizedOperation extends __BaseException {
1767
+ readonly name: "UnauthorizedOperation";
1768
+ readonly $fault: "client";
1769
+
1770
+ constructor(opts: __ExceptionOptionType<UnauthorizedOperation, __BaseException>);
1701
1771
  }
1702
1772
 
1703
1773
  export interface CreateClusterParameterGroupMessage {
@@ -1833,22 +1903,25 @@ export declare namespace EndpointAccess {
1833
1903
  const filterSensitiveLog: (obj: EndpointAccess) => any;
1834
1904
  }
1835
1905
 
1836
- export interface EndpointAlreadyExistsFault extends __SmithyException, $MetadataBearer {
1837
- name: "EndpointAlreadyExistsFault";
1838
- $fault: "client";
1839
- message?: string;
1906
+ export declare class EndpointAlreadyExistsFault extends __BaseException {
1907
+ readonly name: "EndpointAlreadyExistsFault";
1908
+ readonly $fault: "client";
1909
+
1910
+ constructor(opts: __ExceptionOptionType<EndpointAlreadyExistsFault, __BaseException>);
1840
1911
  }
1841
1912
 
1842
- export interface EndpointsPerAuthorizationLimitExceededFault extends __SmithyException, $MetadataBearer {
1843
- name: "EndpointsPerAuthorizationLimitExceededFault";
1844
- $fault: "client";
1845
- message?: string;
1913
+ export declare class EndpointsPerAuthorizationLimitExceededFault extends __BaseException {
1914
+ readonly name: "EndpointsPerAuthorizationLimitExceededFault";
1915
+ readonly $fault: "client";
1916
+
1917
+ constructor(opts: __ExceptionOptionType<EndpointsPerAuthorizationLimitExceededFault, __BaseException>);
1846
1918
  }
1847
1919
 
1848
- export interface EndpointsPerClusterLimitExceededFault extends __SmithyException, $MetadataBearer {
1849
- name: "EndpointsPerClusterLimitExceededFault";
1850
- $fault: "client";
1851
- message?: string;
1920
+ export declare class EndpointsPerClusterLimitExceededFault extends __BaseException {
1921
+ readonly name: "EndpointsPerClusterLimitExceededFault";
1922
+ readonly $fault: "client";
1923
+
1924
+ constructor(opts: __ExceptionOptionType<EndpointsPerClusterLimitExceededFault, __BaseException>);
1852
1925
  }
1853
1926
 
1854
1927
  export interface CreateEventSubscriptionMessage {
@@ -1911,58 +1984,67 @@ export declare namespace CreateEventSubscriptionResult {
1911
1984
  const filterSensitiveLog: (obj: CreateEventSubscriptionResult) => any;
1912
1985
  }
1913
1986
 
1914
- export interface EventSubscriptionQuotaExceededFault extends __SmithyException, $MetadataBearer {
1915
- name: "EventSubscriptionQuotaExceededFault";
1916
- $fault: "client";
1917
- message?: string;
1987
+ export declare class EventSubscriptionQuotaExceededFault extends __BaseException {
1988
+ readonly name: "EventSubscriptionQuotaExceededFault";
1989
+ readonly $fault: "client";
1990
+
1991
+ constructor(opts: __ExceptionOptionType<EventSubscriptionQuotaExceededFault, __BaseException>);
1918
1992
  }
1919
1993
 
1920
- export interface SNSInvalidTopicFault extends __SmithyException, $MetadataBearer {
1921
- name: "SNSInvalidTopicFault";
1922
- $fault: "client";
1923
- message?: string;
1994
+ export declare class SNSInvalidTopicFault extends __BaseException {
1995
+ readonly name: "SNSInvalidTopicFault";
1996
+ readonly $fault: "client";
1997
+
1998
+ constructor(opts: __ExceptionOptionType<SNSInvalidTopicFault, __BaseException>);
1924
1999
  }
1925
2000
 
1926
- export interface SNSNoAuthorizationFault extends __SmithyException, $MetadataBearer {
1927
- name: "SNSNoAuthorizationFault";
1928
- $fault: "client";
1929
- message?: string;
2001
+ export declare class SNSNoAuthorizationFault extends __BaseException {
2002
+ readonly name: "SNSNoAuthorizationFault";
2003
+ readonly $fault: "client";
2004
+
2005
+ constructor(opts: __ExceptionOptionType<SNSNoAuthorizationFault, __BaseException>);
1930
2006
  }
1931
2007
 
1932
- export interface SNSTopicArnNotFoundFault extends __SmithyException, $MetadataBearer {
1933
- name: "SNSTopicArnNotFoundFault";
1934
- $fault: "client";
1935
- message?: string;
2008
+ export declare class SNSTopicArnNotFoundFault extends __BaseException {
2009
+ readonly name: "SNSTopicArnNotFoundFault";
2010
+ readonly $fault: "client";
2011
+
2012
+ constructor(opts: __ExceptionOptionType<SNSTopicArnNotFoundFault, __BaseException>);
1936
2013
  }
1937
2014
 
1938
- export interface SourceNotFoundFault extends __SmithyException, $MetadataBearer {
1939
- name: "SourceNotFoundFault";
1940
- $fault: "client";
1941
- message?: string;
2015
+ export declare class SourceNotFoundFault extends __BaseException {
2016
+ readonly name: "SourceNotFoundFault";
2017
+ readonly $fault: "client";
2018
+
2019
+ constructor(opts: __ExceptionOptionType<SourceNotFoundFault, __BaseException>);
1942
2020
  }
1943
2021
 
1944
- export interface SubscriptionAlreadyExistFault extends __SmithyException, $MetadataBearer {
1945
- name: "SubscriptionAlreadyExistFault";
1946
- $fault: "client";
1947
- message?: string;
2022
+ export declare class SubscriptionAlreadyExistFault extends __BaseException {
2023
+ readonly name: "SubscriptionAlreadyExistFault";
2024
+ readonly $fault: "client";
2025
+
2026
+ constructor(opts: __ExceptionOptionType<SubscriptionAlreadyExistFault, __BaseException>);
1948
2027
  }
1949
2028
 
1950
- export interface SubscriptionCategoryNotFoundFault extends __SmithyException, $MetadataBearer {
1951
- name: "SubscriptionCategoryNotFoundFault";
1952
- $fault: "client";
1953
- message?: string;
2029
+ export declare class SubscriptionCategoryNotFoundFault extends __BaseException {
2030
+ readonly name: "SubscriptionCategoryNotFoundFault";
2031
+ readonly $fault: "client";
2032
+
2033
+ constructor(opts: __ExceptionOptionType<SubscriptionCategoryNotFoundFault, __BaseException>);
1954
2034
  }
1955
2035
 
1956
- export interface SubscriptionEventIdNotFoundFault extends __SmithyException, $MetadataBearer {
1957
- name: "SubscriptionEventIdNotFoundFault";
1958
- $fault: "client";
1959
- message?: string;
2036
+ export declare class SubscriptionEventIdNotFoundFault extends __BaseException {
2037
+ readonly name: "SubscriptionEventIdNotFoundFault";
2038
+ readonly $fault: "client";
2039
+
2040
+ constructor(opts: __ExceptionOptionType<SubscriptionEventIdNotFoundFault, __BaseException>);
1960
2041
  }
1961
2042
 
1962
- export interface SubscriptionSeverityNotFoundFault extends __SmithyException, $MetadataBearer {
1963
- name: "SubscriptionSeverityNotFoundFault";
1964
- $fault: "client";
1965
- message?: string;
2043
+ export declare class SubscriptionSeverityNotFoundFault extends __BaseException {
2044
+ readonly name: "SubscriptionSeverityNotFoundFault";
2045
+ readonly $fault: "client";
2046
+
2047
+ constructor(opts: __ExceptionOptionType<SubscriptionSeverityNotFoundFault, __BaseException>);
1966
2048
  }
1967
2049
 
1968
2050
  export interface CreateHsmClientCertificateMessage {
@@ -1997,16 +2079,18 @@ export declare namespace CreateHsmClientCertificateResult {
1997
2079
  const filterSensitiveLog: (obj: CreateHsmClientCertificateResult) => any;
1998
2080
  }
1999
2081
 
2000
- export interface HsmClientCertificateAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2001
- name: "HsmClientCertificateAlreadyExistsFault";
2002
- $fault: "client";
2003
- message?: string;
2082
+ export declare class HsmClientCertificateAlreadyExistsFault extends __BaseException {
2083
+ readonly name: "HsmClientCertificateAlreadyExistsFault";
2084
+ readonly $fault: "client";
2085
+
2086
+ constructor(opts: __ExceptionOptionType<HsmClientCertificateAlreadyExistsFault, __BaseException>);
2004
2087
  }
2005
2088
 
2006
- export interface HsmClientCertificateQuotaExceededFault extends __SmithyException, $MetadataBearer {
2007
- name: "HsmClientCertificateQuotaExceededFault";
2008
- $fault: "client";
2009
- message?: string;
2089
+ export declare class HsmClientCertificateQuotaExceededFault extends __BaseException {
2090
+ readonly name: "HsmClientCertificateQuotaExceededFault";
2091
+ readonly $fault: "client";
2092
+
2093
+ constructor(opts: __ExceptionOptionType<HsmClientCertificateQuotaExceededFault, __BaseException>);
2010
2094
  }
2011
2095
 
2012
2096
  export interface CreateHsmConfigurationMessage {
@@ -2055,16 +2139,18 @@ export declare namespace CreateHsmConfigurationResult {
2055
2139
  const filterSensitiveLog: (obj: CreateHsmConfigurationResult) => any;
2056
2140
  }
2057
2141
 
2058
- export interface HsmConfigurationAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2059
- name: "HsmConfigurationAlreadyExistsFault";
2060
- $fault: "client";
2061
- message?: string;
2142
+ export declare class HsmConfigurationAlreadyExistsFault extends __BaseException {
2143
+ readonly name: "HsmConfigurationAlreadyExistsFault";
2144
+ readonly $fault: "client";
2145
+
2146
+ constructor(opts: __ExceptionOptionType<HsmConfigurationAlreadyExistsFault, __BaseException>);
2062
2147
  }
2063
2148
 
2064
- export interface HsmConfigurationQuotaExceededFault extends __SmithyException, $MetadataBearer {
2065
- name: "HsmConfigurationQuotaExceededFault";
2066
- $fault: "client";
2067
- message?: string;
2149
+ export declare class HsmConfigurationQuotaExceededFault extends __BaseException {
2150
+ readonly name: "HsmConfigurationQuotaExceededFault";
2151
+ readonly $fault: "client";
2152
+
2153
+ constructor(opts: __ExceptionOptionType<HsmConfigurationQuotaExceededFault, __BaseException>);
2068
2154
  }
2069
2155
 
2070
2156
  export interface PauseClusterMessage {
@@ -2141,16 +2227,18 @@ export declare namespace CreateScheduledActionMessage {
2141
2227
  const filterSensitiveLog: (obj: CreateScheduledActionMessage) => any;
2142
2228
  }
2143
2229
 
2144
- export interface InvalidScheduledActionFault extends __SmithyException, $MetadataBearer {
2145
- name: "InvalidScheduledActionFault";
2146
- $fault: "client";
2147
- message?: string;
2230
+ export declare class InvalidScheduledActionFault extends __BaseException {
2231
+ readonly name: "InvalidScheduledActionFault";
2232
+ readonly $fault: "client";
2233
+
2234
+ constructor(opts: __ExceptionOptionType<InvalidScheduledActionFault, __BaseException>);
2148
2235
  }
2149
2236
 
2150
- export interface InvalidScheduleFault extends __SmithyException, $MetadataBearer {
2151
- name: "InvalidScheduleFault";
2152
- $fault: "client";
2153
- message?: string;
2237
+ export declare class InvalidScheduleFault extends __BaseException {
2238
+ readonly name: "InvalidScheduleFault";
2239
+ readonly $fault: "client";
2240
+
2241
+ constructor(opts: __ExceptionOptionType<InvalidScheduleFault, __BaseException>);
2154
2242
  }
2155
2243
  export declare enum ScheduledActionState {
2156
2244
  ACTIVE = "ACTIVE",
@@ -2182,22 +2270,25 @@ export declare namespace ScheduledAction {
2182
2270
  const filterSensitiveLog: (obj: ScheduledAction) => any;
2183
2271
  }
2184
2272
 
2185
- export interface ScheduledActionAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2186
- name: "ScheduledActionAlreadyExistsFault";
2187
- $fault: "client";
2188
- message?: string;
2273
+ export declare class ScheduledActionAlreadyExistsFault extends __BaseException {
2274
+ readonly name: "ScheduledActionAlreadyExistsFault";
2275
+ readonly $fault: "client";
2276
+
2277
+ constructor(opts: __ExceptionOptionType<ScheduledActionAlreadyExistsFault, __BaseException>);
2189
2278
  }
2190
2279
 
2191
- export interface ScheduledActionQuotaExceededFault extends __SmithyException, $MetadataBearer {
2192
- name: "ScheduledActionQuotaExceededFault";
2193
- $fault: "client";
2194
- message?: string;
2280
+ export declare class ScheduledActionQuotaExceededFault extends __BaseException {
2281
+ readonly name: "ScheduledActionQuotaExceededFault";
2282
+ readonly $fault: "client";
2283
+
2284
+ constructor(opts: __ExceptionOptionType<ScheduledActionQuotaExceededFault, __BaseException>);
2195
2285
  }
2196
2286
 
2197
- export interface ScheduledActionTypeUnsupportedFault extends __SmithyException, $MetadataBearer {
2198
- name: "ScheduledActionTypeUnsupportedFault";
2199
- $fault: "client";
2200
- message?: string;
2287
+ export declare class ScheduledActionTypeUnsupportedFault extends __BaseException {
2288
+ readonly name: "ScheduledActionTypeUnsupportedFault";
2289
+ readonly $fault: "client";
2290
+
2291
+ constructor(opts: __ExceptionOptionType<ScheduledActionTypeUnsupportedFault, __BaseException>);
2201
2292
  }
2202
2293
 
2203
2294
  export interface CreateSnapshotCopyGrantMessage {
@@ -2234,16 +2325,18 @@ export declare namespace CreateSnapshotCopyGrantResult {
2234
2325
  const filterSensitiveLog: (obj: CreateSnapshotCopyGrantResult) => any;
2235
2326
  }
2236
2327
 
2237
- export interface SnapshotCopyGrantAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2238
- name: "SnapshotCopyGrantAlreadyExistsFault";
2239
- $fault: "client";
2240
- message?: string;
2328
+ export declare class SnapshotCopyGrantAlreadyExistsFault extends __BaseException {
2329
+ readonly name: "SnapshotCopyGrantAlreadyExistsFault";
2330
+ readonly $fault: "client";
2331
+
2332
+ constructor(opts: __ExceptionOptionType<SnapshotCopyGrantAlreadyExistsFault, __BaseException>);
2241
2333
  }
2242
2334
 
2243
- export interface SnapshotCopyGrantQuotaExceededFault extends __SmithyException, $MetadataBearer {
2244
- name: "SnapshotCopyGrantQuotaExceededFault";
2245
- $fault: "client";
2246
- message?: string;
2335
+ export declare class SnapshotCopyGrantQuotaExceededFault extends __BaseException {
2336
+ readonly name: "SnapshotCopyGrantQuotaExceededFault";
2337
+ readonly $fault: "client";
2338
+
2339
+ constructor(opts: __ExceptionOptionType<SnapshotCopyGrantQuotaExceededFault, __BaseException>);
2247
2340
  }
2248
2341
  export interface CreateSnapshotScheduleMessage {
2249
2342
 
@@ -2264,10 +2357,11 @@ export declare namespace CreateSnapshotScheduleMessage {
2264
2357
  const filterSensitiveLog: (obj: CreateSnapshotScheduleMessage) => any;
2265
2358
  }
2266
2359
 
2267
- export interface ScheduleDefinitionTypeUnsupportedFault extends __SmithyException, $MetadataBearer {
2268
- name: "ScheduleDefinitionTypeUnsupportedFault";
2269
- $fault: "client";
2270
- message?: string;
2360
+ export declare class ScheduleDefinitionTypeUnsupportedFault extends __BaseException {
2361
+ readonly name: "ScheduleDefinitionTypeUnsupportedFault";
2362
+ readonly $fault: "client";
2363
+
2364
+ constructor(opts: __ExceptionOptionType<ScheduleDefinitionTypeUnsupportedFault, __BaseException>);
2271
2365
  }
2272
2366
 
2273
2367
  export interface SnapshotSchedule {
@@ -2291,16 +2385,18 @@ export declare namespace SnapshotSchedule {
2291
2385
  const filterSensitiveLog: (obj: SnapshotSchedule) => any;
2292
2386
  }
2293
2387
 
2294
- export interface SnapshotScheduleAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2295
- name: "SnapshotScheduleAlreadyExistsFault";
2296
- $fault: "client";
2297
- message?: string;
2388
+ export declare class SnapshotScheduleAlreadyExistsFault extends __BaseException {
2389
+ readonly name: "SnapshotScheduleAlreadyExistsFault";
2390
+ readonly $fault: "client";
2391
+
2392
+ constructor(opts: __ExceptionOptionType<SnapshotScheduleAlreadyExistsFault, __BaseException>);
2298
2393
  }
2299
2394
 
2300
- export interface SnapshotScheduleQuotaExceededFault extends __SmithyException, $MetadataBearer {
2301
- name: "SnapshotScheduleQuotaExceededFault";
2302
- $fault: "client";
2303
- message?: string;
2395
+ export declare class SnapshotScheduleQuotaExceededFault extends __BaseException {
2396
+ readonly name: "SnapshotScheduleQuotaExceededFault";
2397
+ readonly $fault: "client";
2398
+
2399
+ constructor(opts: __ExceptionOptionType<SnapshotScheduleQuotaExceededFault, __BaseException>);
2304
2400
  }
2305
2401
 
2306
2402
  export interface CreateTagsMessage {
@@ -2314,10 +2410,11 @@ export declare namespace CreateTagsMessage {
2314
2410
  const filterSensitiveLog: (obj: CreateTagsMessage) => any;
2315
2411
  }
2316
2412
 
2317
- export interface ResourceNotFoundFault extends __SmithyException, $MetadataBearer {
2318
- name: "ResourceNotFoundFault";
2319
- $fault: "client";
2320
- message?: string;
2413
+ export declare class ResourceNotFoundFault extends __BaseException {
2414
+ readonly name: "ResourceNotFoundFault";
2415
+ readonly $fault: "client";
2416
+
2417
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundFault, __BaseException>);
2321
2418
  }
2322
2419
  export declare enum UsageLimitBreachAction {
2323
2420
  DISABLE = "disable",
@@ -2326,6 +2423,7 @@ export declare enum UsageLimitBreachAction {
2326
2423
  }
2327
2424
  export declare enum UsageLimitFeatureType {
2328
2425
  CONCURRENCY_SCALING = "concurrency-scaling",
2426
+ CROSS_REGION_DATASHARING = "cross-region-datasharing",
2329
2427
  SPECTRUM = "spectrum"
2330
2428
  }
2331
2429
  export declare enum UsageLimitLimitType {
@@ -2358,10 +2456,11 @@ export declare namespace CreateUsageLimitMessage {
2358
2456
  const filterSensitiveLog: (obj: CreateUsageLimitMessage) => any;
2359
2457
  }
2360
2458
 
2361
- export interface InvalidUsageLimitFault extends __SmithyException, $MetadataBearer {
2362
- name: "InvalidUsageLimitFault";
2363
- $fault: "client";
2364
- message?: string;
2459
+ export declare class InvalidUsageLimitFault extends __BaseException {
2460
+ readonly name: "InvalidUsageLimitFault";
2461
+ readonly $fault: "client";
2462
+
2463
+ constructor(opts: __ExceptionOptionType<InvalidUsageLimitFault, __BaseException>);
2365
2464
  }
2366
2465
 
2367
2466
  export interface UsageLimit {
@@ -2387,10 +2486,11 @@ export declare namespace UsageLimit {
2387
2486
  const filterSensitiveLog: (obj: UsageLimit) => any;
2388
2487
  }
2389
2488
 
2390
- export interface UsageLimitAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2391
- name: "UsageLimitAlreadyExistsFault";
2392
- $fault: "client";
2393
- message?: string;
2489
+ export declare class UsageLimitAlreadyExistsFault extends __BaseException {
2490
+ readonly name: "UsageLimitAlreadyExistsFault";
2491
+ readonly $fault: "client";
2492
+
2493
+ constructor(opts: __ExceptionOptionType<UsageLimitAlreadyExistsFault, __BaseException>);
2394
2494
  }
2395
2495
  export interface CustomerStorageMessage {
2396
2496
 
@@ -2485,10 +2585,11 @@ export declare namespace DeleteClusterParameterGroupMessage {
2485
2585
  const filterSensitiveLog: (obj: DeleteClusterParameterGroupMessage) => any;
2486
2586
  }
2487
2587
 
2488
- export interface InvalidClusterParameterGroupStateFault extends __SmithyException, $MetadataBearer {
2489
- name: "InvalidClusterParameterGroupStateFault";
2490
- $fault: "client";
2491
- message?: string;
2588
+ export declare class InvalidClusterParameterGroupStateFault extends __BaseException {
2589
+ readonly name: "InvalidClusterParameterGroupStateFault";
2590
+ readonly $fault: "client";
2591
+
2592
+ constructor(opts: __ExceptionOptionType<InvalidClusterParameterGroupStateFault, __BaseException>);
2492
2593
  }
2493
2594
 
2494
2595
  export interface DeleteClusterSecurityGroupMessage {
@@ -2517,10 +2618,11 @@ export declare namespace DeleteClusterSubnetGroupMessage {
2517
2618
  const filterSensitiveLog: (obj: DeleteClusterSubnetGroupMessage) => any;
2518
2619
  }
2519
2620
 
2520
- export interface InvalidClusterSubnetStateFault extends __SmithyException, $MetadataBearer {
2521
- name: "InvalidClusterSubnetStateFault";
2522
- $fault: "client";
2523
- message?: string;
2621
+ export declare class InvalidClusterSubnetStateFault extends __BaseException {
2622
+ readonly name: "InvalidClusterSubnetStateFault";
2623
+ readonly $fault: "client";
2624
+
2625
+ constructor(opts: __ExceptionOptionType<InvalidClusterSubnetStateFault, __BaseException>);
2524
2626
  }
2525
2627
  export interface DeleteEndpointAccessMessage {
2526
2628
 
@@ -2531,16 +2633,18 @@ export declare namespace DeleteEndpointAccessMessage {
2531
2633
  const filterSensitiveLog: (obj: DeleteEndpointAccessMessage) => any;
2532
2634
  }
2533
2635
 
2534
- export interface EndpointNotFoundFault extends __SmithyException, $MetadataBearer {
2535
- name: "EndpointNotFoundFault";
2536
- $fault: "client";
2537
- message?: string;
2636
+ export declare class EndpointNotFoundFault extends __BaseException {
2637
+ readonly name: "EndpointNotFoundFault";
2638
+ readonly $fault: "client";
2639
+
2640
+ constructor(opts: __ExceptionOptionType<EndpointNotFoundFault, __BaseException>);
2538
2641
  }
2539
2642
 
2540
- export interface InvalidEndpointStateFault extends __SmithyException, $MetadataBearer {
2541
- name: "InvalidEndpointStateFault";
2542
- $fault: "client";
2543
- message?: string;
2643
+ export declare class InvalidEndpointStateFault extends __BaseException {
2644
+ readonly name: "InvalidEndpointStateFault";
2645
+ readonly $fault: "client";
2646
+
2647
+ constructor(opts: __ExceptionOptionType<InvalidEndpointStateFault, __BaseException>);
2544
2648
  }
2545
2649
 
2546
2650
  export interface DeleteEventSubscriptionMessage {
@@ -2552,16 +2656,18 @@ export declare namespace DeleteEventSubscriptionMessage {
2552
2656
  const filterSensitiveLog: (obj: DeleteEventSubscriptionMessage) => any;
2553
2657
  }
2554
2658
 
2555
- export interface InvalidSubscriptionStateFault extends __SmithyException, $MetadataBearer {
2556
- name: "InvalidSubscriptionStateFault";
2557
- $fault: "client";
2558
- message?: string;
2659
+ export declare class InvalidSubscriptionStateFault extends __BaseException {
2660
+ readonly name: "InvalidSubscriptionStateFault";
2661
+ readonly $fault: "client";
2662
+
2663
+ constructor(opts: __ExceptionOptionType<InvalidSubscriptionStateFault, __BaseException>);
2559
2664
  }
2560
2665
 
2561
- export interface SubscriptionNotFoundFault extends __SmithyException, $MetadataBearer {
2562
- name: "SubscriptionNotFoundFault";
2563
- $fault: "client";
2564
- message?: string;
2666
+ export declare class SubscriptionNotFoundFault extends __BaseException {
2667
+ readonly name: "SubscriptionNotFoundFault";
2668
+ readonly $fault: "client";
2669
+
2670
+ constructor(opts: __ExceptionOptionType<SubscriptionNotFoundFault, __BaseException>);
2565
2671
  }
2566
2672
 
2567
2673
  export interface DeleteHsmClientCertificateMessage {
@@ -2573,10 +2679,11 @@ export declare namespace DeleteHsmClientCertificateMessage {
2573
2679
  const filterSensitiveLog: (obj: DeleteHsmClientCertificateMessage) => any;
2574
2680
  }
2575
2681
 
2576
- export interface InvalidHsmClientCertificateStateFault extends __SmithyException, $MetadataBearer {
2577
- name: "InvalidHsmClientCertificateStateFault";
2578
- $fault: "client";
2579
- message?: string;
2682
+ export declare class InvalidHsmClientCertificateStateFault extends __BaseException {
2683
+ readonly name: "InvalidHsmClientCertificateStateFault";
2684
+ readonly $fault: "client";
2685
+
2686
+ constructor(opts: __ExceptionOptionType<InvalidHsmClientCertificateStateFault, __BaseException>);
2580
2687
  }
2581
2688
 
2582
2689
  export interface DeleteHsmConfigurationMessage {
@@ -2588,10 +2695,11 @@ export declare namespace DeleteHsmConfigurationMessage {
2588
2695
  const filterSensitiveLog: (obj: DeleteHsmConfigurationMessage) => any;
2589
2696
  }
2590
2697
 
2591
- export interface InvalidHsmConfigurationStateFault extends __SmithyException, $MetadataBearer {
2592
- name: "InvalidHsmConfigurationStateFault";
2593
- $fault: "client";
2594
- message?: string;
2698
+ export declare class InvalidHsmConfigurationStateFault extends __BaseException {
2699
+ readonly name: "InvalidHsmConfigurationStateFault";
2700
+ readonly $fault: "client";
2701
+
2702
+ constructor(opts: __ExceptionOptionType<InvalidHsmConfigurationStateFault, __BaseException>);
2595
2703
  }
2596
2704
  export interface DeleteScheduledActionMessage {
2597
2705
 
@@ -2602,10 +2710,11 @@ export declare namespace DeleteScheduledActionMessage {
2602
2710
  const filterSensitiveLog: (obj: DeleteScheduledActionMessage) => any;
2603
2711
  }
2604
2712
 
2605
- export interface ScheduledActionNotFoundFault extends __SmithyException, $MetadataBearer {
2606
- name: "ScheduledActionNotFoundFault";
2607
- $fault: "client";
2608
- message?: string;
2713
+ export declare class ScheduledActionNotFoundFault extends __BaseException {
2714
+ readonly name: "ScheduledActionNotFoundFault";
2715
+ readonly $fault: "client";
2716
+
2717
+ constructor(opts: __ExceptionOptionType<ScheduledActionNotFoundFault, __BaseException>);
2609
2718
  }
2610
2719
 
2611
2720
  export interface DeleteSnapshotCopyGrantMessage {
@@ -2617,16 +2726,18 @@ export declare namespace DeleteSnapshotCopyGrantMessage {
2617
2726
  const filterSensitiveLog: (obj: DeleteSnapshotCopyGrantMessage) => any;
2618
2727
  }
2619
2728
 
2620
- export interface InvalidSnapshotCopyGrantStateFault extends __SmithyException, $MetadataBearer {
2621
- name: "InvalidSnapshotCopyGrantStateFault";
2622
- $fault: "client";
2623
- message?: string;
2729
+ export declare class InvalidSnapshotCopyGrantStateFault extends __BaseException {
2730
+ readonly name: "InvalidSnapshotCopyGrantStateFault";
2731
+ readonly $fault: "client";
2732
+
2733
+ constructor(opts: __ExceptionOptionType<InvalidSnapshotCopyGrantStateFault, __BaseException>);
2624
2734
  }
2625
2735
 
2626
- export interface SnapshotCopyGrantNotFoundFault extends __SmithyException, $MetadataBearer {
2627
- name: "SnapshotCopyGrantNotFoundFault";
2628
- $fault: "client";
2629
- message?: string;
2736
+ export declare class SnapshotCopyGrantNotFoundFault extends __BaseException {
2737
+ readonly name: "SnapshotCopyGrantNotFoundFault";
2738
+ readonly $fault: "client";
2739
+
2740
+ constructor(opts: __ExceptionOptionType<SnapshotCopyGrantNotFoundFault, __BaseException>);
2630
2741
  }
2631
2742
  export interface DeleteSnapshotScheduleMessage {
2632
2743
 
@@ -2637,10 +2748,11 @@ export declare namespace DeleteSnapshotScheduleMessage {
2637
2748
  const filterSensitiveLog: (obj: DeleteSnapshotScheduleMessage) => any;
2638
2749
  }
2639
2750
 
2640
- export interface InvalidClusterSnapshotScheduleStateFault extends __SmithyException, $MetadataBearer {
2641
- name: "InvalidClusterSnapshotScheduleStateFault";
2642
- $fault: "client";
2643
- message?: string;
2751
+ export declare class InvalidClusterSnapshotScheduleStateFault extends __BaseException {
2752
+ readonly name: "InvalidClusterSnapshotScheduleStateFault";
2753
+ readonly $fault: "client";
2754
+
2755
+ constructor(opts: __ExceptionOptionType<InvalidClusterSnapshotScheduleStateFault, __BaseException>);
2644
2756
  }
2645
2757
 
2646
2758
  export interface DeleteTagsMessage {
@@ -2662,10 +2774,11 @@ export declare namespace DeleteUsageLimitMessage {
2662
2774
  const filterSensitiveLog: (obj: DeleteUsageLimitMessage) => any;
2663
2775
  }
2664
2776
 
2665
- export interface UsageLimitNotFoundFault extends __SmithyException, $MetadataBearer {
2666
- name: "UsageLimitNotFoundFault";
2667
- $fault: "client";
2668
- message?: string;
2777
+ export declare class UsageLimitNotFoundFault extends __BaseException {
2778
+ readonly name: "UsageLimitNotFoundFault";
2779
+ readonly $fault: "client";
2780
+
2781
+ constructor(opts: __ExceptionOptionType<UsageLimitNotFoundFault, __BaseException>);
2669
2782
  }
2670
2783
  export interface DescribeAccountAttributesMessage {
2671
2784