@aws-sdk/client-redshift 3.52.0 → 3.53.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.
@@ -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
  * <p>A string representing the node identifier of the DC1 Reserved Node to be
@@ -142,75 +143,102 @@ export declare namespace AcceptReservedNodeExchangeOutputMessage {
142
143
  * <p>Your request cannot be completed because a dependent internal service is
143
144
  * temporarily unavailable. Wait 30 to 60 seconds and try again.</p>
144
145
  */
145
- export interface DependentServiceUnavailableFault extends __SmithyException, $MetadataBearer {
146
- name: "DependentServiceUnavailableFault";
147
- $fault: "client";
148
- message?: string;
146
+ export declare class DependentServiceUnavailableFault extends __BaseException {
147
+ readonly name: "DependentServiceUnavailableFault";
148
+ readonly $fault: "client";
149
+ /**
150
+ * @internal
151
+ */
152
+ constructor(opts: __ExceptionOptionType<DependentServiceUnavailableFault, __BaseException>);
149
153
  }
150
154
  /**
151
155
  * <p>Indicates that the Reserved Node being exchanged is not in an active state.</p>
152
156
  */
153
- export interface InvalidReservedNodeStateFault extends __SmithyException, $MetadataBearer {
154
- name: "InvalidReservedNodeStateFault";
155
- $fault: "client";
156
- message?: string;
157
+ export declare class InvalidReservedNodeStateFault extends __BaseException {
158
+ readonly name: "InvalidReservedNodeStateFault";
159
+ readonly $fault: "client";
160
+ /**
161
+ * @internal
162
+ */
163
+ constructor(opts: __ExceptionOptionType<InvalidReservedNodeStateFault, __BaseException>);
157
164
  }
158
165
  /**
159
166
  * <p>User already has a reservation with the given identifier.</p>
160
167
  */
161
- export interface ReservedNodeAlreadyExistsFault extends __SmithyException, $MetadataBearer {
162
- name: "ReservedNodeAlreadyExistsFault";
163
- $fault: "client";
164
- message?: string;
168
+ export declare class ReservedNodeAlreadyExistsFault extends __BaseException {
169
+ readonly name: "ReservedNodeAlreadyExistsFault";
170
+ readonly $fault: "client";
171
+ /**
172
+ * @internal
173
+ */
174
+ constructor(opts: __ExceptionOptionType<ReservedNodeAlreadyExistsFault, __BaseException>);
165
175
  }
166
176
  /**
167
177
  * <p>Indicates that the reserved node has already been exchanged.</p>
168
178
  */
169
- export interface ReservedNodeAlreadyMigratedFault extends __SmithyException, $MetadataBearer {
170
- name: "ReservedNodeAlreadyMigratedFault";
171
- $fault: "client";
172
- message?: string;
179
+ export declare class ReservedNodeAlreadyMigratedFault extends __BaseException {
180
+ readonly name: "ReservedNodeAlreadyMigratedFault";
181
+ readonly $fault: "client";
182
+ /**
183
+ * @internal
184
+ */
185
+ constructor(opts: __ExceptionOptionType<ReservedNodeAlreadyMigratedFault, __BaseException>);
173
186
  }
174
187
  /**
175
188
  * <p>The specified reserved compute node not found.</p>
176
189
  */
177
- export interface ReservedNodeNotFoundFault extends __SmithyException, $MetadataBearer {
178
- name: "ReservedNodeNotFoundFault";
179
- $fault: "client";
180
- message?: string;
190
+ export declare class ReservedNodeNotFoundFault extends __BaseException {
191
+ readonly name: "ReservedNodeNotFoundFault";
192
+ readonly $fault: "client";
193
+ /**
194
+ * @internal
195
+ */
196
+ constructor(opts: __ExceptionOptionType<ReservedNodeNotFoundFault, __BaseException>);
181
197
  }
182
198
  /**
183
199
  * <p>Specified offering does not exist.</p>
184
200
  */
185
- export interface ReservedNodeOfferingNotFoundFault extends __SmithyException, $MetadataBearer {
186
- name: "ReservedNodeOfferingNotFoundFault";
187
- $fault: "client";
188
- message?: string;
201
+ export declare class ReservedNodeOfferingNotFoundFault extends __BaseException {
202
+ readonly name: "ReservedNodeOfferingNotFoundFault";
203
+ readonly $fault: "client";
204
+ /**
205
+ * @internal
206
+ */
207
+ constructor(opts: __ExceptionOptionType<ReservedNodeOfferingNotFoundFault, __BaseException>);
189
208
  }
190
209
  /**
191
210
  * <p>The requested operation isn't supported.</p>
192
211
  */
193
- export interface UnsupportedOperationFault extends __SmithyException, $MetadataBearer {
194
- name: "UnsupportedOperationFault";
195
- $fault: "client";
196
- message?: string;
212
+ export declare class UnsupportedOperationFault extends __BaseException {
213
+ readonly name: "UnsupportedOperationFault";
214
+ readonly $fault: "client";
215
+ /**
216
+ * @internal
217
+ */
218
+ constructor(opts: __ExceptionOptionType<UnsupportedOperationFault, __BaseException>);
197
219
  }
198
220
  /**
199
221
  * <p>You are not authorized to access the cluster.</p>
200
222
  */
201
- export interface AccessToClusterDeniedFault extends __SmithyException, $MetadataBearer {
202
- name: "AccessToClusterDeniedFault";
203
- $fault: "client";
204
- message?: string;
223
+ export declare class AccessToClusterDeniedFault extends __BaseException {
224
+ readonly name: "AccessToClusterDeniedFault";
225
+ readonly $fault: "client";
226
+ /**
227
+ * @internal
228
+ */
229
+ constructor(opts: __ExceptionOptionType<AccessToClusterDeniedFault, __BaseException>);
205
230
  }
206
231
  /**
207
232
  * <p>The owner of the specified snapshot has not authorized your account to access the
208
233
  * snapshot.</p>
209
234
  */
210
- export interface AccessToSnapshotDeniedFault extends __SmithyException, $MetadataBearer {
211
- name: "AccessToSnapshotDeniedFault";
212
- $fault: "client";
213
- message?: string;
235
+ export declare class AccessToSnapshotDeniedFault extends __BaseException {
236
+ readonly name: "AccessToSnapshotDeniedFault";
237
+ readonly $fault: "client";
238
+ /**
239
+ * @internal
240
+ */
241
+ constructor(opts: __ExceptionOptionType<AccessToSnapshotDeniedFault, __BaseException>);
214
242
  }
215
243
  /**
216
244
  * <p>Describes an attribute value.</p>
@@ -288,10 +316,13 @@ export declare enum ActionType {
288
316
  * <p>The <code>ClusterIdentifier</code> parameter does not refer to an existing cluster.
289
317
  * </p>
290
318
  */
291
- export interface ClusterNotFoundFault extends __SmithyException, $MetadataBearer {
292
- name: "ClusterNotFoundFault";
293
- $fault: "client";
294
- message?: string;
319
+ export declare class ClusterNotFoundFault extends __BaseException {
320
+ readonly name: "ClusterNotFoundFault";
321
+ readonly $fault: "client";
322
+ /**
323
+ * @internal
324
+ */
325
+ constructor(opts: __ExceptionOptionType<ClusterNotFoundFault, __BaseException>);
295
326
  }
296
327
  export interface PartnerIntegrationInputMessage {
297
328
  /**
@@ -336,18 +367,24 @@ export declare namespace PartnerIntegrationOutputMessage {
336
367
  /**
337
368
  * <p>The name of the partner was not found.</p>
338
369
  */
339
- export interface PartnerNotFoundFault extends __SmithyException, $MetadataBearer {
340
- name: "PartnerNotFoundFault";
341
- $fault: "client";
342
- message?: string;
370
+ export declare class PartnerNotFoundFault extends __BaseException {
371
+ readonly name: "PartnerNotFoundFault";
372
+ readonly $fault: "client";
373
+ /**
374
+ * @internal
375
+ */
376
+ constructor(opts: __ExceptionOptionType<PartnerNotFoundFault, __BaseException>);
343
377
  }
344
378
  /**
345
379
  * <p>The partner integration is not authorized.</p>
346
380
  */
347
- export interface UnauthorizedPartnerIntegrationFault extends __SmithyException, $MetadataBearer {
348
- name: "UnauthorizedPartnerIntegrationFault";
349
- $fault: "client";
350
- message?: string;
381
+ export declare class UnauthorizedPartnerIntegrationFault extends __BaseException {
382
+ readonly name: "UnauthorizedPartnerIntegrationFault";
383
+ readonly $fault: "client";
384
+ /**
385
+ * @internal
386
+ */
387
+ constructor(opts: __ExceptionOptionType<UnauthorizedPartnerIntegrationFault, __BaseException>);
351
388
  }
352
389
  export declare enum AquaConfigurationStatus {
353
390
  AUTO = "auto",
@@ -497,18 +534,24 @@ export declare namespace DataShare {
497
534
  /**
498
535
  * <p>There is an error with the datashare.</p>
499
536
  */
500
- export interface InvalidDataShareFault extends __SmithyException, $MetadataBearer {
501
- name: "InvalidDataShareFault";
502
- $fault: "client";
503
- message?: string;
537
+ export declare class InvalidDataShareFault extends __BaseException {
538
+ readonly name: "InvalidDataShareFault";
539
+ readonly $fault: "client";
540
+ /**
541
+ * @internal
542
+ */
543
+ constructor(opts: __ExceptionOptionType<InvalidDataShareFault, __BaseException>);
504
544
  }
505
545
  /**
506
546
  * <p>The namespace isn't valid because the namespace doesn't exist. Provide a valid namespace.</p>
507
547
  */
508
- export interface InvalidNamespaceFault extends __SmithyException, $MetadataBearer {
509
- name: "InvalidNamespaceFault";
510
- $fault: "client";
511
- message?: string;
548
+ export declare class InvalidNamespaceFault extends __BaseException {
549
+ readonly name: "InvalidNamespaceFault";
550
+ readonly $fault: "client";
551
+ /**
552
+ * @internal
553
+ */
554
+ constructor(opts: __ExceptionOptionType<InvalidNamespaceFault, __BaseException>);
512
555
  }
513
556
  export declare type ScheduleState = "ACTIVE" | "FAILED" | "MODIFYING";
514
557
  /**
@@ -553,53 +596,71 @@ export declare namespace AuthenticationProfile {
553
596
  /**
554
597
  * <p>The authentication profile already exists.</p>
555
598
  */
556
- export interface AuthenticationProfileAlreadyExistsFault extends __SmithyException, $MetadataBearer {
557
- name: "AuthenticationProfileAlreadyExistsFault";
558
- $fault: "client";
559
- message?: string;
599
+ export declare class AuthenticationProfileAlreadyExistsFault extends __BaseException {
600
+ readonly name: "AuthenticationProfileAlreadyExistsFault";
601
+ readonly $fault: "client";
602
+ /**
603
+ * @internal
604
+ */
605
+ constructor(opts: __ExceptionOptionType<AuthenticationProfileAlreadyExistsFault, __BaseException>);
560
606
  }
561
607
  /**
562
608
  * <p>The authentication profile can't be found.</p>
563
609
  */
564
- export interface AuthenticationProfileNotFoundFault extends __SmithyException, $MetadataBearer {
565
- name: "AuthenticationProfileNotFoundFault";
566
- $fault: "client";
567
- message?: string;
610
+ export declare class AuthenticationProfileNotFoundFault extends __BaseException {
611
+ readonly name: "AuthenticationProfileNotFoundFault";
612
+ readonly $fault: "client";
613
+ /**
614
+ * @internal
615
+ */
616
+ constructor(opts: __ExceptionOptionType<AuthenticationProfileNotFoundFault, __BaseException>);
568
617
  }
569
618
  /**
570
619
  * <p>The size or number of authentication profiles has exceeded the quota.
571
620
  * The maximum length of the JSON string and maximum number of authentication profiles is determined by a quota for your account.</p>
572
621
  */
573
- export interface AuthenticationProfileQuotaExceededFault extends __SmithyException, $MetadataBearer {
574
- name: "AuthenticationProfileQuotaExceededFault";
575
- $fault: "client";
576
- message?: string;
622
+ export declare class AuthenticationProfileQuotaExceededFault extends __BaseException {
623
+ readonly name: "AuthenticationProfileQuotaExceededFault";
624
+ readonly $fault: "client";
625
+ /**
626
+ * @internal
627
+ */
628
+ constructor(opts: __ExceptionOptionType<AuthenticationProfileQuotaExceededFault, __BaseException>);
577
629
  }
578
630
  /**
579
631
  * <p>The specified CIDR block or EC2 security group is already authorized for the
580
632
  * specified cluster security group.</p>
581
633
  */
582
- export interface AuthorizationAlreadyExistsFault extends __SmithyException, $MetadataBearer {
583
- name: "AuthorizationAlreadyExistsFault";
584
- $fault: "client";
585
- message?: string;
634
+ export declare class AuthorizationAlreadyExistsFault extends __BaseException {
635
+ readonly name: "AuthorizationAlreadyExistsFault";
636
+ readonly $fault: "client";
637
+ /**
638
+ * @internal
639
+ */
640
+ constructor(opts: __ExceptionOptionType<AuthorizationAlreadyExistsFault, __BaseException>);
586
641
  }
587
642
  /**
588
643
  * <p>The specified CIDR IP range or EC2 security group is not authorized for the
589
644
  * specified cluster security group.</p>
590
645
  */
591
- export interface AuthorizationNotFoundFault extends __SmithyException, $MetadataBearer {
592
- name: "AuthorizationNotFoundFault";
593
- $fault: "client";
594
- message?: string;
646
+ export declare class AuthorizationNotFoundFault extends __BaseException {
647
+ readonly name: "AuthorizationNotFoundFault";
648
+ readonly $fault: "client";
649
+ /**
650
+ * @internal
651
+ */
652
+ constructor(opts: __ExceptionOptionType<AuthorizationNotFoundFault, __BaseException>);
595
653
  }
596
654
  /**
597
655
  * <p>The authorization quota for the cluster security group has been reached.</p>
598
656
  */
599
- export interface AuthorizationQuotaExceededFault extends __SmithyException, $MetadataBearer {
600
- name: "AuthorizationQuotaExceededFault";
601
- $fault: "client";
602
- message?: string;
657
+ export declare class AuthorizationQuotaExceededFault extends __BaseException {
658
+ readonly name: "AuthorizationQuotaExceededFault";
659
+ readonly $fault: "client";
660
+ /**
661
+ * @internal
662
+ */
663
+ constructor(opts: __ExceptionOptionType<AuthorizationQuotaExceededFault, __BaseException>);
603
664
  }
604
665
  export declare enum AuthorizationStatus {
605
666
  AUTHORIZED = "Authorized",
@@ -756,18 +817,24 @@ export declare namespace AuthorizeClusterSecurityGroupIngressResult {
756
817
  * <p>The cluster security group name does not refer to an existing cluster security
757
818
  * group.</p>
758
819
  */
759
- export interface ClusterSecurityGroupNotFoundFault extends __SmithyException, $MetadataBearer {
760
- name: "ClusterSecurityGroupNotFoundFault";
761
- $fault: "client";
762
- message?: string;
820
+ export declare class ClusterSecurityGroupNotFoundFault extends __BaseException {
821
+ readonly name: "ClusterSecurityGroupNotFoundFault";
822
+ readonly $fault: "client";
823
+ /**
824
+ * @internal
825
+ */
826
+ constructor(opts: __ExceptionOptionType<ClusterSecurityGroupNotFoundFault, __BaseException>);
763
827
  }
764
828
  /**
765
829
  * <p>The state of the cluster security group is not <code>available</code>. </p>
766
830
  */
767
- export interface InvalidClusterSecurityGroupStateFault extends __SmithyException, $MetadataBearer {
768
- name: "InvalidClusterSecurityGroupStateFault";
769
- $fault: "client";
770
- message?: string;
831
+ export declare class InvalidClusterSecurityGroupStateFault extends __BaseException {
832
+ readonly name: "InvalidClusterSecurityGroupStateFault";
833
+ readonly $fault: "client";
834
+ /**
835
+ * @internal
836
+ */
837
+ constructor(opts: __ExceptionOptionType<InvalidClusterSecurityGroupStateFault, __BaseException>);
771
838
  }
772
839
  export interface AuthorizeDataShareMessage {
773
840
  /**
@@ -856,34 +923,46 @@ export declare namespace EndpointAuthorization {
856
923
  /**
857
924
  * <p>The authorization already exists for this endpoint.</p>
858
925
  */
859
- export interface EndpointAuthorizationAlreadyExistsFault extends __SmithyException, $MetadataBearer {
860
- name: "EndpointAuthorizationAlreadyExistsFault";
861
- $fault: "client";
862
- message?: string;
926
+ export declare class EndpointAuthorizationAlreadyExistsFault extends __BaseException {
927
+ readonly name: "EndpointAuthorizationAlreadyExistsFault";
928
+ readonly $fault: "client";
929
+ /**
930
+ * @internal
931
+ */
932
+ constructor(opts: __ExceptionOptionType<EndpointAuthorizationAlreadyExistsFault, __BaseException>);
863
933
  }
864
934
  /**
865
935
  * <p>The number of endpoint authorizations per cluster has exceeded its limit.</p>
866
936
  */
867
- export interface EndpointAuthorizationsPerClusterLimitExceededFault extends __SmithyException, $MetadataBearer {
868
- name: "EndpointAuthorizationsPerClusterLimitExceededFault";
869
- $fault: "client";
870
- message?: string;
937
+ export declare class EndpointAuthorizationsPerClusterLimitExceededFault extends __BaseException {
938
+ readonly name: "EndpointAuthorizationsPerClusterLimitExceededFault";
939
+ readonly $fault: "client";
940
+ /**
941
+ * @internal
942
+ */
943
+ constructor(opts: __ExceptionOptionType<EndpointAuthorizationsPerClusterLimitExceededFault, __BaseException>);
871
944
  }
872
945
  /**
873
946
  * <p>The status of the authorization is not valid.</p>
874
947
  */
875
- export interface InvalidAuthorizationStateFault extends __SmithyException, $MetadataBearer {
876
- name: "InvalidAuthorizationStateFault";
877
- $fault: "client";
878
- message?: string;
948
+ export declare class InvalidAuthorizationStateFault extends __BaseException {
949
+ readonly name: "InvalidAuthorizationStateFault";
950
+ readonly $fault: "client";
951
+ /**
952
+ * @internal
953
+ */
954
+ constructor(opts: __ExceptionOptionType<InvalidAuthorizationStateFault, __BaseException>);
879
955
  }
880
956
  /**
881
957
  * <p>The specified cluster is not in the <code>available</code> state. </p>
882
958
  */
883
- export interface InvalidClusterStateFault extends __SmithyException, $MetadataBearer {
884
- name: "InvalidClusterStateFault";
885
- $fault: "client";
886
- message?: string;
959
+ export declare class InvalidClusterStateFault extends __BaseException {
960
+ readonly name: "InvalidClusterStateFault";
961
+ readonly $fault: "client";
962
+ /**
963
+ * @internal
964
+ */
965
+ constructor(opts: __ExceptionOptionType<InvalidClusterStateFault, __BaseException>);
887
966
  }
888
967
  /**
889
968
  * <p></p>
@@ -1113,36 +1192,48 @@ export declare namespace AuthorizeSnapshotAccessResult {
1113
1192
  /**
1114
1193
  * <p>The snapshot identifier does not refer to an existing cluster snapshot.</p>
1115
1194
  */
1116
- export interface ClusterSnapshotNotFoundFault extends __SmithyException, $MetadataBearer {
1117
- name: "ClusterSnapshotNotFoundFault";
1118
- $fault: "client";
1119
- message?: string;
1195
+ export declare class ClusterSnapshotNotFoundFault extends __BaseException {
1196
+ readonly name: "ClusterSnapshotNotFoundFault";
1197
+ readonly $fault: "client";
1198
+ /**
1199
+ * @internal
1200
+ */
1201
+ constructor(opts: __ExceptionOptionType<ClusterSnapshotNotFoundFault, __BaseException>);
1120
1202
  }
1121
1203
  /**
1122
1204
  * <p>The request cannot be completed because a dependent service is throttling requests
1123
1205
  * made by Amazon Redshift on your behalf. Wait and retry the request.</p>
1124
1206
  */
1125
- export interface DependentServiceRequestThrottlingFault extends __SmithyException, $MetadataBearer {
1126
- name: "DependentServiceRequestThrottlingFault";
1127
- $fault: "client";
1128
- message?: string;
1207
+ export declare class DependentServiceRequestThrottlingFault extends __BaseException {
1208
+ readonly name: "DependentServiceRequestThrottlingFault";
1209
+ readonly $fault: "client";
1210
+ /**
1211
+ * @internal
1212
+ */
1213
+ constructor(opts: __ExceptionOptionType<DependentServiceRequestThrottlingFault, __BaseException>);
1129
1214
  }
1130
1215
  /**
1131
1216
  * <p>The specified cluster snapshot is not in the <code>available</code> state, or other
1132
1217
  * accounts are authorized to access the snapshot. </p>
1133
1218
  */
1134
- export interface InvalidClusterSnapshotStateFault extends __SmithyException, $MetadataBearer {
1135
- name: "InvalidClusterSnapshotStateFault";
1136
- $fault: "client";
1137
- message?: string;
1219
+ export declare class InvalidClusterSnapshotStateFault extends __BaseException {
1220
+ readonly name: "InvalidClusterSnapshotStateFault";
1221
+ readonly $fault: "client";
1222
+ /**
1223
+ * @internal
1224
+ */
1225
+ constructor(opts: __ExceptionOptionType<InvalidClusterSnapshotStateFault, __BaseException>);
1138
1226
  }
1139
1227
  /**
1140
1228
  * <p>The encryption key has exceeded its grant limit in Amazon Web Services KMS.</p>
1141
1229
  */
1142
- export interface LimitExceededFault extends __SmithyException, $MetadataBearer {
1143
- name: "LimitExceededFault";
1144
- $fault: "client";
1145
- message?: string;
1230
+ export declare class LimitExceededFault extends __BaseException {
1231
+ readonly name: "LimitExceededFault";
1232
+ readonly $fault: "client";
1233
+ /**
1234
+ * @internal
1235
+ */
1236
+ constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
1146
1237
  }
1147
1238
  /**
1148
1239
  * <p>A list of supported platforms for orderable clusters.</p>
@@ -1262,19 +1353,25 @@ export declare namespace BatchDeleteClusterSnapshotsResult {
1262
1353
  * <p>The maximum number for a batch delete of snapshots has been reached. The limit is
1263
1354
  * 100. </p>
1264
1355
  */
1265
- export interface BatchDeleteRequestSizeExceededFault extends __SmithyException, $MetadataBearer {
1266
- name: "BatchDeleteRequestSizeExceededFault";
1267
- $fault: "client";
1268
- message?: string;
1356
+ export declare class BatchDeleteRequestSizeExceededFault extends __BaseException {
1357
+ readonly name: "BatchDeleteRequestSizeExceededFault";
1358
+ readonly $fault: "client";
1359
+ /**
1360
+ * @internal
1361
+ */
1362
+ constructor(opts: __ExceptionOptionType<BatchDeleteRequestSizeExceededFault, __BaseException>);
1269
1363
  }
1270
1364
  /**
1271
1365
  * <p>The maximum number for snapshot identifiers has been reached. The limit is 100.
1272
1366
  * </p>
1273
1367
  */
1274
- export interface BatchModifyClusterSnapshotsLimitExceededFault extends __SmithyException, $MetadataBearer {
1275
- name: "BatchModifyClusterSnapshotsLimitExceededFault";
1276
- $fault: "client";
1277
- message?: string;
1368
+ export declare class BatchModifyClusterSnapshotsLimitExceededFault extends __BaseException {
1369
+ readonly name: "BatchModifyClusterSnapshotsLimitExceededFault";
1370
+ readonly $fault: "client";
1371
+ /**
1372
+ * @internal
1373
+ */
1374
+ constructor(opts: __ExceptionOptionType<BatchModifyClusterSnapshotsLimitExceededFault, __BaseException>);
1278
1375
  }
1279
1376
  export interface BatchModifyClusterSnapshotsMessage {
1280
1377
  /**
@@ -1322,18 +1419,24 @@ export declare namespace BatchModifyClusterSnapshotsOutputMessage {
1322
1419
  * <p>The retention period specified is either in the past or is not a valid value.</p>
1323
1420
  * <p>The value must be either -1 or an integer between 1 and 3,653.</p>
1324
1421
  */
1325
- export interface InvalidRetentionPeriodFault extends __SmithyException, $MetadataBearer {
1326
- name: "InvalidRetentionPeriodFault";
1327
- $fault: "client";
1328
- message?: string;
1422
+ export declare class InvalidRetentionPeriodFault extends __BaseException {
1423
+ readonly name: "InvalidRetentionPeriodFault";
1424
+ readonly $fault: "client";
1425
+ /**
1426
+ * @internal
1427
+ */
1428
+ constructor(opts: __ExceptionOptionType<InvalidRetentionPeriodFault, __BaseException>);
1329
1429
  }
1330
1430
  /**
1331
1431
  * <p>Could not find the specified S3 bucket.</p>
1332
1432
  */
1333
- export interface BucketNotFoundFault extends __SmithyException, $MetadataBearer {
1334
- name: "BucketNotFoundFault";
1335
- $fault: "client";
1336
- message?: string;
1433
+ export declare class BucketNotFoundFault extends __BaseException {
1434
+ readonly name: "BucketNotFoundFault";
1435
+ readonly $fault: "client";
1436
+ /**
1437
+ * @internal
1438
+ */
1439
+ constructor(opts: __ExceptionOptionType<BucketNotFoundFault, __BaseException>);
1337
1440
  }
1338
1441
  export interface CancelResizeMessage {
1339
1442
  /**
@@ -1351,10 +1454,13 @@ export declare namespace CancelResizeMessage {
1351
1454
  /**
1352
1455
  * <p>A resize operation for the specified cluster is not found.</p>
1353
1456
  */
1354
- export interface ResizeNotFoundFault extends __SmithyException, $MetadataBearer {
1355
- name: "ResizeNotFoundFault";
1356
- $fault: "client";
1357
- message?: string;
1457
+ export declare class ResizeNotFoundFault extends __BaseException {
1458
+ readonly name: "ResizeNotFoundFault";
1459
+ readonly $fault: "client";
1460
+ /**
1461
+ * @internal
1462
+ */
1463
+ constructor(opts: __ExceptionOptionType<ResizeNotFoundFault, __BaseException>);
1358
1464
  }
1359
1465
  /**
1360
1466
  * <p>Describes the result of a cluster resize operation.</p>
@@ -2438,10 +2544,13 @@ export declare namespace Cluster {
2438
2544
  /**
2439
2545
  * <p>The account already has a cluster with the given identifier.</p>
2440
2546
  */
2441
- export interface ClusterAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2442
- name: "ClusterAlreadyExistsFault";
2443
- $fault: "client";
2444
- message?: string;
2547
+ export declare class ClusterAlreadyExistsFault extends __BaseException {
2548
+ readonly name: "ClusterAlreadyExistsFault";
2549
+ readonly $fault: "client";
2550
+ /**
2551
+ * @internal
2552
+ */
2553
+ constructor(opts: __ExceptionOptionType<ClusterAlreadyExistsFault, __BaseException>);
2445
2554
  }
2446
2555
  /**
2447
2556
  * <p>Temporary credentials with authorization to log on to an Amazon Redshift database.
@@ -2548,10 +2657,13 @@ export declare namespace ClusterDbRevisionsMessage {
2548
2657
  /**
2549
2658
  * <p>Cluster is already on the latest database revision.</p>
2550
2659
  */
2551
- export interface ClusterOnLatestRevisionFault extends __SmithyException, $MetadataBearer {
2552
- name: "ClusterOnLatestRevisionFault";
2553
- $fault: "client";
2554
- message?: string;
2660
+ export declare class ClusterOnLatestRevisionFault extends __BaseException {
2661
+ readonly name: "ClusterOnLatestRevisionFault";
2662
+ readonly $fault: "client";
2663
+ /**
2664
+ * @internal
2665
+ */
2666
+ constructor(opts: __ExceptionOptionType<ClusterOnLatestRevisionFault, __BaseException>);
2555
2667
  }
2556
2668
  /**
2557
2669
  * <p>Describes a parameter group.</p>
@@ -2584,10 +2696,13 @@ export declare namespace ClusterParameterGroup {
2584
2696
  /**
2585
2697
  * <p>A cluster parameter group with the same name already exists.</p>
2586
2698
  */
2587
- export interface ClusterParameterGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2588
- name: "ClusterParameterGroupAlreadyExistsFault";
2589
- $fault: "client";
2590
- message?: string;
2699
+ export declare class ClusterParameterGroupAlreadyExistsFault extends __BaseException {
2700
+ readonly name: "ClusterParameterGroupAlreadyExistsFault";
2701
+ readonly $fault: "client";
2702
+ /**
2703
+ * @internal
2704
+ */
2705
+ constructor(opts: __ExceptionOptionType<ClusterParameterGroupAlreadyExistsFault, __BaseException>);
2591
2706
  }
2592
2707
  export declare type ParameterApplyType = "dynamic" | "static";
2593
2708
  /**
@@ -2693,10 +2808,13 @@ export declare namespace ClusterParameterGroupNameMessage {
2693
2808
  /**
2694
2809
  * <p>The parameter group name does not refer to an existing parameter group.</p>
2695
2810
  */
2696
- export interface ClusterParameterGroupNotFoundFault extends __SmithyException, $MetadataBearer {
2697
- name: "ClusterParameterGroupNotFoundFault";
2698
- $fault: "client";
2699
- message?: string;
2811
+ export declare class ClusterParameterGroupNotFoundFault extends __BaseException {
2812
+ readonly name: "ClusterParameterGroupNotFoundFault";
2813
+ readonly $fault: "client";
2814
+ /**
2815
+ * @internal
2816
+ */
2817
+ constructor(opts: __ExceptionOptionType<ClusterParameterGroupNotFoundFault, __BaseException>);
2700
2818
  }
2701
2819
  /**
2702
2820
  * <p>The request would result in the user exceeding the allowed number of cluster
@@ -2705,10 +2823,13 @@ export interface ClusterParameterGroupNotFoundFault extends __SmithyException, $
2705
2823
  * in the <i>Amazon Redshift Cluster Management Guide</i>.
2706
2824
  * </p>
2707
2825
  */
2708
- export interface ClusterParameterGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
2709
- name: "ClusterParameterGroupQuotaExceededFault";
2710
- $fault: "client";
2711
- message?: string;
2826
+ export declare class ClusterParameterGroupQuotaExceededFault extends __BaseException {
2827
+ readonly name: "ClusterParameterGroupQuotaExceededFault";
2828
+ readonly $fault: "client";
2829
+ /**
2830
+ * @internal
2831
+ */
2832
+ constructor(opts: __ExceptionOptionType<ClusterParameterGroupQuotaExceededFault, __BaseException>);
2712
2833
  }
2713
2834
  /**
2714
2835
  * <p>Contains the output from the <a>DescribeClusterParameterGroups</a>
@@ -2742,18 +2863,24 @@ export declare namespace ClusterParameterGroupsMessage {
2742
2863
  * in the <i>Amazon Redshift Cluster Management Guide</i>.
2743
2864
  * </p>
2744
2865
  */
2745
- export interface ClusterQuotaExceededFault extends __SmithyException, $MetadataBearer {
2746
- name: "ClusterQuotaExceededFault";
2747
- $fault: "client";
2748
- message?: string;
2866
+ export declare class ClusterQuotaExceededFault extends __BaseException {
2867
+ readonly name: "ClusterQuotaExceededFault";
2868
+ readonly $fault: "client";
2869
+ /**
2870
+ * @internal
2871
+ */
2872
+ constructor(opts: __ExceptionOptionType<ClusterQuotaExceededFault, __BaseException>);
2749
2873
  }
2750
2874
  /**
2751
2875
  * <p>A cluster security group with the same name already exists.</p>
2752
2876
  */
2753
- export interface ClusterSecurityGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2754
- name: "ClusterSecurityGroupAlreadyExistsFault";
2755
- $fault: "client";
2756
- message?: string;
2877
+ export declare class ClusterSecurityGroupAlreadyExistsFault extends __BaseException {
2878
+ readonly name: "ClusterSecurityGroupAlreadyExistsFault";
2879
+ readonly $fault: "client";
2880
+ /**
2881
+ * @internal
2882
+ */
2883
+ constructor(opts: __ExceptionOptionType<ClusterSecurityGroupAlreadyExistsFault, __BaseException>);
2757
2884
  }
2758
2885
  /**
2759
2886
  * <p></p>
@@ -2785,10 +2912,13 @@ export declare namespace ClusterSecurityGroupMessage {
2785
2912
  * in the <i>Amazon Redshift Cluster Management Guide</i>.
2786
2913
  * </p>
2787
2914
  */
2788
- export interface ClusterSecurityGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
2789
- name: "ClusterSecurityGroupQuotaExceededFault";
2790
- $fault: "client";
2791
- message?: string;
2915
+ export declare class ClusterSecurityGroupQuotaExceededFault extends __BaseException {
2916
+ readonly name: "ClusterSecurityGroupQuotaExceededFault";
2917
+ readonly $fault: "client";
2918
+ /**
2919
+ * @internal
2920
+ */
2921
+ constructor(opts: __ExceptionOptionType<ClusterSecurityGroupQuotaExceededFault, __BaseException>);
2792
2922
  }
2793
2923
  /**
2794
2924
  * <p>Contains the output from the <a>DescribeClusters</a> action. </p>
@@ -2818,19 +2948,25 @@ export declare namespace ClustersMessage {
2818
2948
  * <p>The value specified as a snapshot identifier is already used by an existing
2819
2949
  * snapshot.</p>
2820
2950
  */
2821
- export interface ClusterSnapshotAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2822
- name: "ClusterSnapshotAlreadyExistsFault";
2823
- $fault: "client";
2824
- message?: string;
2951
+ export declare class ClusterSnapshotAlreadyExistsFault extends __BaseException {
2952
+ readonly name: "ClusterSnapshotAlreadyExistsFault";
2953
+ readonly $fault: "client";
2954
+ /**
2955
+ * @internal
2956
+ */
2957
+ constructor(opts: __ExceptionOptionType<ClusterSnapshotAlreadyExistsFault, __BaseException>);
2825
2958
  }
2826
2959
  /**
2827
2960
  * <p>The request would result in the user exceeding the allowed number of cluster
2828
2961
  * snapshots.</p>
2829
2962
  */
2830
- export interface ClusterSnapshotQuotaExceededFault extends __SmithyException, $MetadataBearer {
2831
- name: "ClusterSnapshotQuotaExceededFault";
2832
- $fault: "client";
2833
- message?: string;
2963
+ export declare class ClusterSnapshotQuotaExceededFault extends __BaseException {
2964
+ readonly name: "ClusterSnapshotQuotaExceededFault";
2965
+ readonly $fault: "client";
2966
+ /**
2967
+ * @internal
2968
+ */
2969
+ constructor(opts: __ExceptionOptionType<ClusterSnapshotQuotaExceededFault, __BaseException>);
2834
2970
  }
2835
2971
  /**
2836
2972
  * <p>Describes a subnet.</p>
@@ -2895,10 +3031,13 @@ export declare namespace ClusterSubnetGroup {
2895
3031
  * <p>A <i>ClusterSubnetGroupName</i> is already used by an existing
2896
3032
  * cluster subnet group. </p>
2897
3033
  */
2898
- export interface ClusterSubnetGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
2899
- name: "ClusterSubnetGroupAlreadyExistsFault";
2900
- $fault: "client";
2901
- message?: string;
3034
+ export declare class ClusterSubnetGroupAlreadyExistsFault extends __BaseException {
3035
+ readonly name: "ClusterSubnetGroupAlreadyExistsFault";
3036
+ readonly $fault: "client";
3037
+ /**
3038
+ * @internal
3039
+ */
3040
+ constructor(opts: __ExceptionOptionType<ClusterSubnetGroupAlreadyExistsFault, __BaseException>);
2902
3041
  }
2903
3042
  /**
2904
3043
  * <p>Contains the output from the <a>DescribeClusterSubnetGroups</a> action.
@@ -2928,10 +3067,13 @@ export declare namespace ClusterSubnetGroupMessage {
2928
3067
  * <p>The cluster subnet group name does not refer to an existing cluster subnet
2929
3068
  * group.</p>
2930
3069
  */
2931
- export interface ClusterSubnetGroupNotFoundFault extends __SmithyException, $MetadataBearer {
2932
- name: "ClusterSubnetGroupNotFoundFault";
2933
- $fault: "client";
2934
- message?: string;
3070
+ export declare class ClusterSubnetGroupNotFoundFault extends __BaseException {
3071
+ readonly name: "ClusterSubnetGroupNotFoundFault";
3072
+ readonly $fault: "client";
3073
+ /**
3074
+ * @internal
3075
+ */
3076
+ constructor(opts: __ExceptionOptionType<ClusterSubnetGroupNotFoundFault, __BaseException>);
2935
3077
  }
2936
3078
  /**
2937
3079
  * <p>The request would result in user exceeding the allowed number of cluster subnet
@@ -2940,10 +3082,13 @@ export interface ClusterSubnetGroupNotFoundFault extends __SmithyException, $Met
2940
3082
  * in the <i>Amazon Redshift Cluster Management Guide</i>.
2941
3083
  * </p>
2942
3084
  */
2943
- export interface ClusterSubnetGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
2944
- name: "ClusterSubnetGroupQuotaExceededFault";
2945
- $fault: "client";
2946
- message?: string;
3085
+ export declare class ClusterSubnetGroupQuotaExceededFault extends __BaseException {
3086
+ readonly name: "ClusterSubnetGroupQuotaExceededFault";
3087
+ readonly $fault: "client";
3088
+ /**
3089
+ * @internal
3090
+ */
3091
+ constructor(opts: __ExceptionOptionType<ClusterSubnetGroupQuotaExceededFault, __BaseException>);
2947
3092
  }
2948
3093
  /**
2949
3094
  * <p>The request would result in user exceeding the allowed number of subnets in a
@@ -2952,10 +3097,13 @@ export interface ClusterSubnetGroupQuotaExceededFault extends __SmithyException,
2952
3097
  * in the <i>Amazon Redshift Cluster Management Guide</i>.
2953
3098
  * </p>
2954
3099
  */
2955
- export interface ClusterSubnetQuotaExceededFault extends __SmithyException, $MetadataBearer {
2956
- name: "ClusterSubnetQuotaExceededFault";
2957
- $fault: "client";
2958
- message?: string;
3100
+ export declare class ClusterSubnetQuotaExceededFault extends __BaseException {
3101
+ readonly name: "ClusterSubnetQuotaExceededFault";
3102
+ readonly $fault: "client";
3103
+ /**
3104
+ * @internal
3105
+ */
3106
+ constructor(opts: __ExceptionOptionType<ClusterSubnetQuotaExceededFault, __BaseException>);
2959
3107
  }
2960
3108
  /**
2961
3109
  * <p>Describes a cluster version, including the parameter group family and description
@@ -3084,10 +3232,13 @@ export declare namespace CopyClusterSnapshotResult {
3084
3232
  * <p>Cross-region snapshot copy was temporarily disabled. Try your request
3085
3233
  * again.</p>
3086
3234
  */
3087
- export interface CopyToRegionDisabledFault extends __SmithyException, $MetadataBearer {
3088
- name: "CopyToRegionDisabledFault";
3089
- $fault: "client";
3090
- message?: string;
3235
+ export declare class CopyToRegionDisabledFault extends __BaseException {
3236
+ readonly name: "CopyToRegionDisabledFault";
3237
+ readonly $fault: "client";
3238
+ /**
3239
+ * @internal
3240
+ */
3241
+ constructor(opts: __ExceptionOptionType<CopyToRegionDisabledFault, __BaseException>);
3091
3242
  }
3092
3243
  export interface CreateAuthenticationProfileMessage {
3093
3244
  /**
@@ -3126,10 +3277,13 @@ export declare namespace CreateAuthenticationProfileResult {
3126
3277
  * <p>The authentication profile request is not valid. The profile name can't be null or empty.
3127
3278
  * The authentication profile API operation must be available in the Amazon Web Services Region.</p>
3128
3279
  */
3129
- export interface InvalidAuthenticationProfileRequestFault extends __SmithyException, $MetadataBearer {
3130
- name: "InvalidAuthenticationProfileRequestFault";
3131
- $fault: "client";
3132
- message?: string;
3280
+ export declare class InvalidAuthenticationProfileRequestFault extends __BaseException {
3281
+ readonly name: "InvalidAuthenticationProfileRequestFault";
3282
+ readonly $fault: "client";
3283
+ /**
3284
+ * @internal
3285
+ */
3286
+ constructor(opts: __ExceptionOptionType<InvalidAuthenticationProfileRequestFault, __BaseException>);
3133
3287
  }
3134
3288
  /**
3135
3289
  * <p></p>
@@ -3499,84 +3653,114 @@ export declare namespace CreateClusterResult {
3499
3653
  * <p>There is no Amazon Redshift HSM client certificate with the specified
3500
3654
  * identifier.</p>
3501
3655
  */
3502
- export interface HsmClientCertificateNotFoundFault extends __SmithyException, $MetadataBearer {
3503
- name: "HsmClientCertificateNotFoundFault";
3504
- $fault: "client";
3505
- message?: string;
3656
+ export declare class HsmClientCertificateNotFoundFault extends __BaseException {
3657
+ readonly name: "HsmClientCertificateNotFoundFault";
3658
+ readonly $fault: "client";
3659
+ /**
3660
+ * @internal
3661
+ */
3662
+ constructor(opts: __ExceptionOptionType<HsmClientCertificateNotFoundFault, __BaseException>);
3506
3663
  }
3507
3664
  /**
3508
3665
  * <p>There is no Amazon Redshift HSM configuration with the specified identifier.</p>
3509
3666
  */
3510
- export interface HsmConfigurationNotFoundFault extends __SmithyException, $MetadataBearer {
3511
- name: "HsmConfigurationNotFoundFault";
3512
- $fault: "client";
3513
- message?: string;
3667
+ export declare class HsmConfigurationNotFoundFault extends __BaseException {
3668
+ readonly name: "HsmConfigurationNotFoundFault";
3669
+ readonly $fault: "client";
3670
+ /**
3671
+ * @internal
3672
+ */
3673
+ constructor(opts: __ExceptionOptionType<HsmConfigurationNotFoundFault, __BaseException>);
3514
3674
  }
3515
3675
  /**
3516
3676
  * <p>The number of nodes specified exceeds the allotted capacity of the
3517
3677
  * cluster.</p>
3518
3678
  */
3519
- export interface InsufficientClusterCapacityFault extends __SmithyException, $MetadataBearer {
3520
- name: "InsufficientClusterCapacityFault";
3521
- $fault: "client";
3522
- message?: string;
3679
+ export declare class InsufficientClusterCapacityFault extends __BaseException {
3680
+ readonly name: "InsufficientClusterCapacityFault";
3681
+ readonly $fault: "client";
3682
+ /**
3683
+ * @internal
3684
+ */
3685
+ constructor(opts: __ExceptionOptionType<InsufficientClusterCapacityFault, __BaseException>);
3523
3686
  }
3524
3687
  /**
3525
3688
  * <p>The cluster subnet group cannot be deleted because it is in use.</p>
3526
3689
  */
3527
- export interface InvalidClusterSubnetGroupStateFault extends __SmithyException, $MetadataBearer {
3528
- name: "InvalidClusterSubnetGroupStateFault";
3529
- $fault: "client";
3530
- message?: string;
3690
+ export declare class InvalidClusterSubnetGroupStateFault extends __BaseException {
3691
+ readonly name: "InvalidClusterSubnetGroupStateFault";
3692
+ readonly $fault: "client";
3693
+ /**
3694
+ * @internal
3695
+ */
3696
+ constructor(opts: __ExceptionOptionType<InvalidClusterSubnetGroupStateFault, __BaseException>);
3531
3697
  }
3532
3698
  /**
3533
3699
  * <p>The provided cluster track name is not valid.</p>
3534
3700
  */
3535
- export interface InvalidClusterTrackFault extends __SmithyException, $MetadataBearer {
3536
- name: "InvalidClusterTrackFault";
3537
- $fault: "client";
3538
- message?: string;
3701
+ export declare class InvalidClusterTrackFault extends __BaseException {
3702
+ readonly name: "InvalidClusterTrackFault";
3703
+ readonly $fault: "client";
3704
+ /**
3705
+ * @internal
3706
+ */
3707
+ constructor(opts: __ExceptionOptionType<InvalidClusterTrackFault, __BaseException>);
3539
3708
  }
3540
3709
  /**
3541
3710
  * <p>The Elastic IP (EIP) is invalid or cannot be found.</p>
3542
3711
  */
3543
- export interface InvalidElasticIpFault extends __SmithyException, $MetadataBearer {
3544
- name: "InvalidElasticIpFault";
3545
- $fault: "client";
3546
- message?: string;
3712
+ export declare class InvalidElasticIpFault extends __BaseException {
3713
+ readonly name: "InvalidElasticIpFault";
3714
+ readonly $fault: "client";
3715
+ /**
3716
+ * @internal
3717
+ */
3718
+ constructor(opts: __ExceptionOptionType<InvalidElasticIpFault, __BaseException>);
3547
3719
  }
3548
3720
  /**
3549
3721
  * <p>The requested subnet is not valid, or not all of the subnets are in the same
3550
3722
  * VPC.</p>
3551
3723
  */
3552
- export interface InvalidSubnet extends __SmithyException, $MetadataBearer {
3553
- name: "InvalidSubnet";
3554
- $fault: "client";
3555
- message?: string;
3724
+ export declare class InvalidSubnet extends __BaseException {
3725
+ readonly name: "InvalidSubnet";
3726
+ readonly $fault: "client";
3727
+ /**
3728
+ * @internal
3729
+ */
3730
+ constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
3556
3731
  }
3557
3732
  /**
3558
3733
  * <p>The tag is invalid.</p>
3559
3734
  */
3560
- export interface InvalidTagFault extends __SmithyException, $MetadataBearer {
3561
- name: "InvalidTagFault";
3562
- $fault: "client";
3563
- message?: string;
3735
+ export declare class InvalidTagFault extends __BaseException {
3736
+ readonly name: "InvalidTagFault";
3737
+ readonly $fault: "client";
3738
+ /**
3739
+ * @internal
3740
+ */
3741
+ constructor(opts: __ExceptionOptionType<InvalidTagFault, __BaseException>);
3564
3742
  }
3565
3743
  /**
3566
3744
  * <p>The cluster subnet group does not cover all Availability Zones.</p>
3567
3745
  */
3568
- export interface InvalidVPCNetworkStateFault extends __SmithyException, $MetadataBearer {
3569
- name: "InvalidVPCNetworkStateFault";
3570
- $fault: "client";
3571
- message?: string;
3746
+ export declare class InvalidVPCNetworkStateFault extends __BaseException {
3747
+ readonly name: "InvalidVPCNetworkStateFault";
3748
+ readonly $fault: "client";
3749
+ /**
3750
+ * @internal
3751
+ */
3752
+ constructor(opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>);
3572
3753
  }
3573
3754
  /**
3574
3755
  * <p>The operation would exceed the number of nodes allowed for a cluster.</p>
3575
3756
  */
3576
- export interface NumberOfNodesPerClusterLimitExceededFault extends __SmithyException, $MetadataBearer {
3577
- name: "NumberOfNodesPerClusterLimitExceededFault";
3578
- $fault: "client";
3579
- message?: string;
3757
+ export declare class NumberOfNodesPerClusterLimitExceededFault extends __BaseException {
3758
+ readonly name: "NumberOfNodesPerClusterLimitExceededFault";
3759
+ readonly $fault: "client";
3760
+ /**
3761
+ * @internal
3762
+ */
3763
+ constructor(opts: __ExceptionOptionType<NumberOfNodesPerClusterLimitExceededFault, __BaseException>);
3580
3764
  }
3581
3765
  /**
3582
3766
  * <p>The operation would exceed the number of nodes allotted to the account.
@@ -3585,34 +3769,46 @@ export interface NumberOfNodesPerClusterLimitExceededFault extends __SmithyExcep
3585
3769
  * in the <i>Amazon Redshift Cluster Management Guide</i>.
3586
3770
  * </p>
3587
3771
  */
3588
- export interface NumberOfNodesQuotaExceededFault extends __SmithyException, $MetadataBearer {
3589
- name: "NumberOfNodesQuotaExceededFault";
3590
- $fault: "client";
3591
- message?: string;
3772
+ export declare class NumberOfNodesQuotaExceededFault extends __BaseException {
3773
+ readonly name: "NumberOfNodesQuotaExceededFault";
3774
+ readonly $fault: "client";
3775
+ /**
3776
+ * @internal
3777
+ */
3778
+ constructor(opts: __ExceptionOptionType<NumberOfNodesQuotaExceededFault, __BaseException>);
3592
3779
  }
3593
3780
  /**
3594
3781
  * <p>We could not find the specified snapshot schedule. </p>
3595
3782
  */
3596
- export interface SnapshotScheduleNotFoundFault extends __SmithyException, $MetadataBearer {
3597
- name: "SnapshotScheduleNotFoundFault";
3598
- $fault: "client";
3599
- message?: string;
3783
+ export declare class SnapshotScheduleNotFoundFault extends __BaseException {
3784
+ readonly name: "SnapshotScheduleNotFoundFault";
3785
+ readonly $fault: "client";
3786
+ /**
3787
+ * @internal
3788
+ */
3789
+ constructor(opts: __ExceptionOptionType<SnapshotScheduleNotFoundFault, __BaseException>);
3600
3790
  }
3601
3791
  /**
3602
3792
  * <p>You have exceeded the number of tags allowed.</p>
3603
3793
  */
3604
- export interface TagLimitExceededFault extends __SmithyException, $MetadataBearer {
3605
- name: "TagLimitExceededFault";
3606
- $fault: "client";
3607
- message?: string;
3794
+ export declare class TagLimitExceededFault extends __BaseException {
3795
+ readonly name: "TagLimitExceededFault";
3796
+ readonly $fault: "client";
3797
+ /**
3798
+ * @internal
3799
+ */
3800
+ constructor(opts: __ExceptionOptionType<TagLimitExceededFault, __BaseException>);
3608
3801
  }
3609
3802
  /**
3610
3803
  * <p>Your account is not authorized to perform the requested operation.</p>
3611
3804
  */
3612
- export interface UnauthorizedOperation extends __SmithyException, $MetadataBearer {
3613
- name: "UnauthorizedOperation";
3614
- $fault: "client";
3615
- message?: string;
3805
+ export declare class UnauthorizedOperation extends __BaseException {
3806
+ readonly name: "UnauthorizedOperation";
3807
+ readonly $fault: "client";
3808
+ /**
3809
+ * @internal
3810
+ */
3811
+ constructor(opts: __ExceptionOptionType<UnauthorizedOperation, __BaseException>);
3616
3812
  }
3617
3813
  /**
3618
3814
  * <p></p>
@@ -3930,26 +4126,35 @@ export declare namespace EndpointAccess {
3930
4126
  /**
3931
4127
  * <p>The account already has a Redshift-managed VPC endpoint with the given identifier.</p>
3932
4128
  */
3933
- export interface EndpointAlreadyExistsFault extends __SmithyException, $MetadataBearer {
3934
- name: "EndpointAlreadyExistsFault";
3935
- $fault: "client";
3936
- message?: string;
4129
+ export declare class EndpointAlreadyExistsFault extends __BaseException {
4130
+ readonly name: "EndpointAlreadyExistsFault";
4131
+ readonly $fault: "client";
4132
+ /**
4133
+ * @internal
4134
+ */
4135
+ constructor(opts: __ExceptionOptionType<EndpointAlreadyExistsFault, __BaseException>);
3937
4136
  }
3938
4137
  /**
3939
4138
  * <p>The number of Redshift-managed VPC endpoints per authorization has exceeded its limit.</p>
3940
4139
  */
3941
- export interface EndpointsPerAuthorizationLimitExceededFault extends __SmithyException, $MetadataBearer {
3942
- name: "EndpointsPerAuthorizationLimitExceededFault";
3943
- $fault: "client";
3944
- message?: string;
4140
+ export declare class EndpointsPerAuthorizationLimitExceededFault extends __BaseException {
4141
+ readonly name: "EndpointsPerAuthorizationLimitExceededFault";
4142
+ readonly $fault: "client";
4143
+ /**
4144
+ * @internal
4145
+ */
4146
+ constructor(opts: __ExceptionOptionType<EndpointsPerAuthorizationLimitExceededFault, __BaseException>);
3945
4147
  }
3946
4148
  /**
3947
4149
  * <p>The number of Redshift-managed VPC endpoints per cluster has exceeded its limit.</p>
3948
4150
  */
3949
- export interface EndpointsPerClusterLimitExceededFault extends __SmithyException, $MetadataBearer {
3950
- name: "EndpointsPerClusterLimitExceededFault";
3951
- $fault: "client";
3952
- message?: string;
4151
+ export declare class EndpointsPerClusterLimitExceededFault extends __BaseException {
4152
+ readonly name: "EndpointsPerClusterLimitExceededFault";
4153
+ readonly $fault: "client";
4154
+ /**
4155
+ * @internal
4156
+ */
4157
+ constructor(opts: __ExceptionOptionType<EndpointsPerClusterLimitExceededFault, __BaseException>);
3953
4158
  }
3954
4159
  /**
3955
4160
  * <p></p>
@@ -4123,81 +4328,108 @@ export declare namespace CreateEventSubscriptionResult {
4123
4328
  * in the <i>Amazon Redshift Cluster Management Guide</i>.
4124
4329
  * </p>
4125
4330
  */
4126
- export interface EventSubscriptionQuotaExceededFault extends __SmithyException, $MetadataBearer {
4127
- name: "EventSubscriptionQuotaExceededFault";
4128
- $fault: "client";
4129
- message?: string;
4331
+ export declare class EventSubscriptionQuotaExceededFault extends __BaseException {
4332
+ readonly name: "EventSubscriptionQuotaExceededFault";
4333
+ readonly $fault: "client";
4334
+ /**
4335
+ * @internal
4336
+ */
4337
+ constructor(opts: __ExceptionOptionType<EventSubscriptionQuotaExceededFault, __BaseException>);
4130
4338
  }
4131
4339
  /**
4132
4340
  * <p>Amazon SNS has responded that there is a problem with the specified Amazon SNS
4133
4341
  * topic.</p>
4134
4342
  */
4135
- export interface SNSInvalidTopicFault extends __SmithyException, $MetadataBearer {
4136
- name: "SNSInvalidTopicFault";
4137
- $fault: "client";
4138
- message?: string;
4343
+ export declare class SNSInvalidTopicFault extends __BaseException {
4344
+ readonly name: "SNSInvalidTopicFault";
4345
+ readonly $fault: "client";
4346
+ /**
4347
+ * @internal
4348
+ */
4349
+ constructor(opts: __ExceptionOptionType<SNSInvalidTopicFault, __BaseException>);
4139
4350
  }
4140
4351
  /**
4141
4352
  * <p>You do not have permission to publish to the specified Amazon SNS topic.</p>
4142
4353
  */
4143
- export interface SNSNoAuthorizationFault extends __SmithyException, $MetadataBearer {
4144
- name: "SNSNoAuthorizationFault";
4145
- $fault: "client";
4146
- message?: string;
4354
+ export declare class SNSNoAuthorizationFault extends __BaseException {
4355
+ readonly name: "SNSNoAuthorizationFault";
4356
+ readonly $fault: "client";
4357
+ /**
4358
+ * @internal
4359
+ */
4360
+ constructor(opts: __ExceptionOptionType<SNSNoAuthorizationFault, __BaseException>);
4147
4361
  }
4148
4362
  /**
4149
4363
  * <p>An Amazon SNS topic with the specified Amazon Resource Name (ARN) does not
4150
4364
  * exist.</p>
4151
4365
  */
4152
- export interface SNSTopicArnNotFoundFault extends __SmithyException, $MetadataBearer {
4153
- name: "SNSTopicArnNotFoundFault";
4154
- $fault: "client";
4155
- message?: string;
4366
+ export declare class SNSTopicArnNotFoundFault extends __BaseException {
4367
+ readonly name: "SNSTopicArnNotFoundFault";
4368
+ readonly $fault: "client";
4369
+ /**
4370
+ * @internal
4371
+ */
4372
+ constructor(opts: __ExceptionOptionType<SNSTopicArnNotFoundFault, __BaseException>);
4156
4373
  }
4157
4374
  /**
4158
4375
  * <p>The specified Amazon Redshift event source could not be found.</p>
4159
4376
  */
4160
- export interface SourceNotFoundFault extends __SmithyException, $MetadataBearer {
4161
- name: "SourceNotFoundFault";
4162
- $fault: "client";
4163
- message?: string;
4377
+ export declare class SourceNotFoundFault extends __BaseException {
4378
+ readonly name: "SourceNotFoundFault";
4379
+ readonly $fault: "client";
4380
+ /**
4381
+ * @internal
4382
+ */
4383
+ constructor(opts: __ExceptionOptionType<SourceNotFoundFault, __BaseException>);
4164
4384
  }
4165
4385
  /**
4166
4386
  * <p>There is already an existing event notification subscription with the specified
4167
4387
  * name.</p>
4168
4388
  */
4169
- export interface SubscriptionAlreadyExistFault extends __SmithyException, $MetadataBearer {
4170
- name: "SubscriptionAlreadyExistFault";
4171
- $fault: "client";
4172
- message?: string;
4389
+ export declare class SubscriptionAlreadyExistFault extends __BaseException {
4390
+ readonly name: "SubscriptionAlreadyExistFault";
4391
+ readonly $fault: "client";
4392
+ /**
4393
+ * @internal
4394
+ */
4395
+ constructor(opts: __ExceptionOptionType<SubscriptionAlreadyExistFault, __BaseException>);
4173
4396
  }
4174
4397
  /**
4175
4398
  * <p>The value specified for the event category was not one of the allowed values, or it
4176
4399
  * specified a category that does not apply to the specified source type. The allowed
4177
4400
  * values are Configuration, Management, Monitoring, and Security.</p>
4178
4401
  */
4179
- export interface SubscriptionCategoryNotFoundFault extends __SmithyException, $MetadataBearer {
4180
- name: "SubscriptionCategoryNotFoundFault";
4181
- $fault: "client";
4182
- message?: string;
4402
+ export declare class SubscriptionCategoryNotFoundFault extends __BaseException {
4403
+ readonly name: "SubscriptionCategoryNotFoundFault";
4404
+ readonly $fault: "client";
4405
+ /**
4406
+ * @internal
4407
+ */
4408
+ constructor(opts: __ExceptionOptionType<SubscriptionCategoryNotFoundFault, __BaseException>);
4183
4409
  }
4184
4410
  /**
4185
4411
  * <p>An Amazon Redshift event with the specified event ID does not exist.</p>
4186
4412
  */
4187
- export interface SubscriptionEventIdNotFoundFault extends __SmithyException, $MetadataBearer {
4188
- name: "SubscriptionEventIdNotFoundFault";
4189
- $fault: "client";
4190
- message?: string;
4413
+ export declare class SubscriptionEventIdNotFoundFault extends __BaseException {
4414
+ readonly name: "SubscriptionEventIdNotFoundFault";
4415
+ readonly $fault: "client";
4416
+ /**
4417
+ * @internal
4418
+ */
4419
+ constructor(opts: __ExceptionOptionType<SubscriptionEventIdNotFoundFault, __BaseException>);
4191
4420
  }
4192
4421
  /**
4193
4422
  * <p>The value specified for the event severity was not one of the allowed values, or it
4194
4423
  * specified a severity that does not apply to the specified source type. The allowed
4195
4424
  * values are ERROR and INFO.</p>
4196
4425
  */
4197
- export interface SubscriptionSeverityNotFoundFault extends __SmithyException, $MetadataBearer {
4198
- name: "SubscriptionSeverityNotFoundFault";
4199
- $fault: "client";
4200
- message?: string;
4426
+ export declare class SubscriptionSeverityNotFoundFault extends __BaseException {
4427
+ readonly name: "SubscriptionSeverityNotFoundFault";
4428
+ readonly $fault: "client";
4429
+ /**
4430
+ * @internal
4431
+ */
4432
+ constructor(opts: __ExceptionOptionType<SubscriptionSeverityNotFoundFault, __BaseException>);
4201
4433
  }
4202
4434
  /**
4203
4435
  * <p></p>
@@ -4263,10 +4495,13 @@ export declare namespace CreateHsmClientCertificateResult {
4263
4495
  * <p>There is already an existing Amazon Redshift HSM client certificate with the specified
4264
4496
  * identifier.</p>
4265
4497
  */
4266
- export interface HsmClientCertificateAlreadyExistsFault extends __SmithyException, $MetadataBearer {
4267
- name: "HsmClientCertificateAlreadyExistsFault";
4268
- $fault: "client";
4269
- message?: string;
4498
+ export declare class HsmClientCertificateAlreadyExistsFault extends __BaseException {
4499
+ readonly name: "HsmClientCertificateAlreadyExistsFault";
4500
+ readonly $fault: "client";
4501
+ /**
4502
+ * @internal
4503
+ */
4504
+ constructor(opts: __ExceptionOptionType<HsmClientCertificateAlreadyExistsFault, __BaseException>);
4270
4505
  }
4271
4506
  /**
4272
4507
  * <p>The quota for HSM client certificates has been reached.
@@ -4274,10 +4509,13 @@ export interface HsmClientCertificateAlreadyExistsFault extends __SmithyExceptio
4274
4509
  * in the <i>Amazon Redshift Cluster Management Guide</i>.
4275
4510
  * </p>
4276
4511
  */
4277
- export interface HsmClientCertificateQuotaExceededFault extends __SmithyException, $MetadataBearer {
4278
- name: "HsmClientCertificateQuotaExceededFault";
4279
- $fault: "client";
4280
- message?: string;
4512
+ export declare class HsmClientCertificateQuotaExceededFault extends __BaseException {
4513
+ readonly name: "HsmClientCertificateQuotaExceededFault";
4514
+ readonly $fault: "client";
4515
+ /**
4516
+ * @internal
4517
+ */
4518
+ constructor(opts: __ExceptionOptionType<HsmClientCertificateQuotaExceededFault, __BaseException>);
4281
4519
  }
4282
4520
  /**
4283
4521
  * <p></p>
@@ -4372,10 +4610,13 @@ export declare namespace CreateHsmConfigurationResult {
4372
4610
  * <p>There is already an existing Amazon Redshift HSM configuration with the specified
4373
4611
  * identifier.</p>
4374
4612
  */
4375
- export interface HsmConfigurationAlreadyExistsFault extends __SmithyException, $MetadataBearer {
4376
- name: "HsmConfigurationAlreadyExistsFault";
4377
- $fault: "client";
4378
- message?: string;
4613
+ export declare class HsmConfigurationAlreadyExistsFault extends __BaseException {
4614
+ readonly name: "HsmConfigurationAlreadyExistsFault";
4615
+ readonly $fault: "client";
4616
+ /**
4617
+ * @internal
4618
+ */
4619
+ constructor(opts: __ExceptionOptionType<HsmConfigurationAlreadyExistsFault, __BaseException>);
4379
4620
  }
4380
4621
  /**
4381
4622
  * <p>The quota for HSM configurations has been reached.
@@ -4383,10 +4624,13 @@ export interface HsmConfigurationAlreadyExistsFault extends __SmithyException, $
4383
4624
  * in the <i>Amazon Redshift Cluster Management Guide</i>.
4384
4625
  * </p>
4385
4626
  */
4386
- export interface HsmConfigurationQuotaExceededFault extends __SmithyException, $MetadataBearer {
4387
- name: "HsmConfigurationQuotaExceededFault";
4388
- $fault: "client";
4389
- message?: string;
4627
+ export declare class HsmConfigurationQuotaExceededFault extends __BaseException {
4628
+ readonly name: "HsmConfigurationQuotaExceededFault";
4629
+ readonly $fault: "client";
4630
+ /**
4631
+ * @internal
4632
+ */
4633
+ constructor(opts: __ExceptionOptionType<HsmConfigurationQuotaExceededFault, __BaseException>);
4390
4634
  }
4391
4635
  /**
4392
4636
  * <p>Describes a pause cluster operation. For example, a scheduled action to run the <code>PauseCluster</code> API operation. </p>
@@ -4534,18 +4778,24 @@ export declare namespace CreateScheduledActionMessage {
4534
4778
  /**
4535
4779
  * <p>The scheduled action is not valid. </p>
4536
4780
  */
4537
- export interface InvalidScheduledActionFault extends __SmithyException, $MetadataBearer {
4538
- name: "InvalidScheduledActionFault";
4539
- $fault: "client";
4540
- message?: string;
4781
+ export declare class InvalidScheduledActionFault extends __BaseException {
4782
+ readonly name: "InvalidScheduledActionFault";
4783
+ readonly $fault: "client";
4784
+ /**
4785
+ * @internal
4786
+ */
4787
+ constructor(opts: __ExceptionOptionType<InvalidScheduledActionFault, __BaseException>);
4541
4788
  }
4542
4789
  /**
4543
4790
  * <p>The schedule you submitted isn't valid.</p>
4544
4791
  */
4545
- export interface InvalidScheduleFault extends __SmithyException, $MetadataBearer {
4546
- name: "InvalidScheduleFault";
4547
- $fault: "client";
4548
- message?: string;
4792
+ export declare class InvalidScheduleFault extends __BaseException {
4793
+ readonly name: "InvalidScheduleFault";
4794
+ readonly $fault: "client";
4795
+ /**
4796
+ * @internal
4797
+ */
4798
+ constructor(opts: __ExceptionOptionType<InvalidScheduleFault, __BaseException>);
4549
4799
  }
4550
4800
  export declare enum ScheduledActionState {
4551
4801
  ACTIVE = "ACTIVE",
@@ -4616,26 +4866,35 @@ export declare namespace ScheduledAction {
4616
4866
  /**
4617
4867
  * <p>The scheduled action already exists. </p>
4618
4868
  */
4619
- export interface ScheduledActionAlreadyExistsFault extends __SmithyException, $MetadataBearer {
4620
- name: "ScheduledActionAlreadyExistsFault";
4621
- $fault: "client";
4622
- message?: string;
4869
+ export declare class ScheduledActionAlreadyExistsFault extends __BaseException {
4870
+ readonly name: "ScheduledActionAlreadyExistsFault";
4871
+ readonly $fault: "client";
4872
+ /**
4873
+ * @internal
4874
+ */
4875
+ constructor(opts: __ExceptionOptionType<ScheduledActionAlreadyExistsFault, __BaseException>);
4623
4876
  }
4624
4877
  /**
4625
4878
  * <p>The quota for scheduled actions exceeded. </p>
4626
4879
  */
4627
- export interface ScheduledActionQuotaExceededFault extends __SmithyException, $MetadataBearer {
4628
- name: "ScheduledActionQuotaExceededFault";
4629
- $fault: "client";
4630
- message?: string;
4880
+ export declare class ScheduledActionQuotaExceededFault extends __BaseException {
4881
+ readonly name: "ScheduledActionQuotaExceededFault";
4882
+ readonly $fault: "client";
4883
+ /**
4884
+ * @internal
4885
+ */
4886
+ constructor(opts: __ExceptionOptionType<ScheduledActionQuotaExceededFault, __BaseException>);
4631
4887
  }
4632
4888
  /**
4633
4889
  * <p>The action type specified for a scheduled action is not supported. </p>
4634
4890
  */
4635
- export interface ScheduledActionTypeUnsupportedFault extends __SmithyException, $MetadataBearer {
4636
- name: "ScheduledActionTypeUnsupportedFault";
4637
- $fault: "client";
4638
- message?: string;
4891
+ export declare class ScheduledActionTypeUnsupportedFault extends __BaseException {
4892
+ readonly name: "ScheduledActionTypeUnsupportedFault";
4893
+ readonly $fault: "client";
4894
+ /**
4895
+ * @internal
4896
+ */
4897
+ constructor(opts: __ExceptionOptionType<ScheduledActionTypeUnsupportedFault, __BaseException>);
4639
4898
  }
4640
4899
  /**
4641
4900
  * <p>The result of the <code>CreateSnapshotCopyGrant</code> action.</p>
@@ -4734,19 +4993,25 @@ export declare namespace CreateSnapshotCopyGrantResult {
4734
4993
  * <p>The snapshot copy grant can't be created because a grant with the same name already
4735
4994
  * exists.</p>
4736
4995
  */
4737
- export interface SnapshotCopyGrantAlreadyExistsFault extends __SmithyException, $MetadataBearer {
4738
- name: "SnapshotCopyGrantAlreadyExistsFault";
4739
- $fault: "client";
4740
- message?: string;
4996
+ export declare class SnapshotCopyGrantAlreadyExistsFault extends __BaseException {
4997
+ readonly name: "SnapshotCopyGrantAlreadyExistsFault";
4998
+ readonly $fault: "client";
4999
+ /**
5000
+ * @internal
5001
+ */
5002
+ constructor(opts: __ExceptionOptionType<SnapshotCopyGrantAlreadyExistsFault, __BaseException>);
4741
5003
  }
4742
5004
  /**
4743
5005
  * <p>The Amazon Web Services account has exceeded the maximum number of snapshot copy grants in this
4744
5006
  * region.</p>
4745
5007
  */
4746
- export interface SnapshotCopyGrantQuotaExceededFault extends __SmithyException, $MetadataBearer {
4747
- name: "SnapshotCopyGrantQuotaExceededFault";
4748
- $fault: "client";
4749
- message?: string;
5008
+ export declare class SnapshotCopyGrantQuotaExceededFault extends __BaseException {
5009
+ readonly name: "SnapshotCopyGrantQuotaExceededFault";
5010
+ readonly $fault: "client";
5011
+ /**
5012
+ * @internal
5013
+ */
5014
+ constructor(opts: __ExceptionOptionType<SnapshotCopyGrantQuotaExceededFault, __BaseException>);
4750
5015
  }
4751
5016
  export interface CreateSnapshotScheduleMessage {
4752
5017
  /**
@@ -4785,10 +5050,13 @@ export declare namespace CreateSnapshotScheduleMessage {
4785
5050
  /**
4786
5051
  * <p>The definition you submitted is not supported.</p>
4787
5052
  */
4788
- export interface ScheduleDefinitionTypeUnsupportedFault extends __SmithyException, $MetadataBearer {
4789
- name: "ScheduleDefinitionTypeUnsupportedFault";
4790
- $fault: "client";
4791
- message?: string;
5053
+ export declare class ScheduleDefinitionTypeUnsupportedFault extends __BaseException {
5054
+ readonly name: "ScheduleDefinitionTypeUnsupportedFault";
5055
+ readonly $fault: "client";
5056
+ /**
5057
+ * @internal
5058
+ */
5059
+ constructor(opts: __ExceptionOptionType<ScheduleDefinitionTypeUnsupportedFault, __BaseException>);
4792
5060
  }
4793
5061
  /**
4794
5062
  * <p>Describes a snapshot schedule. You can set a regular interval for creating
@@ -4833,18 +5101,24 @@ export declare namespace SnapshotSchedule {
4833
5101
  /**
4834
5102
  * <p>The specified snapshot schedule already exists. </p>
4835
5103
  */
4836
- export interface SnapshotScheduleAlreadyExistsFault extends __SmithyException, $MetadataBearer {
4837
- name: "SnapshotScheduleAlreadyExistsFault";
4838
- $fault: "client";
4839
- message?: string;
5104
+ export declare class SnapshotScheduleAlreadyExistsFault extends __BaseException {
5105
+ readonly name: "SnapshotScheduleAlreadyExistsFault";
5106
+ readonly $fault: "client";
5107
+ /**
5108
+ * @internal
5109
+ */
5110
+ constructor(opts: __ExceptionOptionType<SnapshotScheduleAlreadyExistsFault, __BaseException>);
4840
5111
  }
4841
5112
  /**
4842
5113
  * <p>You have exceeded the quota of snapshot schedules. </p>
4843
5114
  */
4844
- export interface SnapshotScheduleQuotaExceededFault extends __SmithyException, $MetadataBearer {
4845
- name: "SnapshotScheduleQuotaExceededFault";
4846
- $fault: "client";
4847
- message?: string;
5115
+ export declare class SnapshotScheduleQuotaExceededFault extends __BaseException {
5116
+ readonly name: "SnapshotScheduleQuotaExceededFault";
5117
+ readonly $fault: "client";
5118
+ /**
5119
+ * @internal
5120
+ */
5121
+ constructor(opts: __ExceptionOptionType<SnapshotScheduleQuotaExceededFault, __BaseException>);
4848
5122
  }
4849
5123
  /**
4850
5124
  * <p>Contains the output from the <code>CreateTags</code> action. </p>
@@ -4874,10 +5148,13 @@ export declare namespace CreateTagsMessage {
4874
5148
  /**
4875
5149
  * <p>The resource could not be found.</p>
4876
5150
  */
4877
- export interface ResourceNotFoundFault extends __SmithyException, $MetadataBearer {
4878
- name: "ResourceNotFoundFault";
4879
- $fault: "client";
4880
- message?: string;
5151
+ export declare class ResourceNotFoundFault extends __BaseException {
5152
+ readonly name: "ResourceNotFoundFault";
5153
+ readonly $fault: "client";
5154
+ /**
5155
+ * @internal
5156
+ */
5157
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundFault, __BaseException>);
4881
5158
  }
4882
5159
  export declare enum UsageLimitBreachAction {
4883
5160
  DISABLE = "disable",
@@ -4945,10 +5222,13 @@ export declare namespace CreateUsageLimitMessage {
4945
5222
  /**
4946
5223
  * <p>The usage limit is not valid.</p>
4947
5224
  */
4948
- export interface InvalidUsageLimitFault extends __SmithyException, $MetadataBearer {
4949
- name: "InvalidUsageLimitFault";
4950
- $fault: "client";
4951
- message?: string;
5225
+ export declare class InvalidUsageLimitFault extends __BaseException {
5226
+ readonly name: "InvalidUsageLimitFault";
5227
+ readonly $fault: "client";
5228
+ /**
5229
+ * @internal
5230
+ */
5231
+ constructor(opts: __ExceptionOptionType<InvalidUsageLimitFault, __BaseException>);
4952
5232
  }
4953
5233
  /**
4954
5234
  * <p>Describes a usage limit object for a cluster. </p>
@@ -5010,10 +5290,13 @@ export declare namespace UsageLimit {
5010
5290
  /**
5011
5291
  * <p>The usage limit already exists. </p>
5012
5292
  */
5013
- export interface UsageLimitAlreadyExistsFault extends __SmithyException, $MetadataBearer {
5014
- name: "UsageLimitAlreadyExistsFault";
5015
- $fault: "client";
5016
- message?: string;
5293
+ export declare class UsageLimitAlreadyExistsFault extends __BaseException {
5294
+ readonly name: "UsageLimitAlreadyExistsFault";
5295
+ readonly $fault: "client";
5296
+ /**
5297
+ * @internal
5298
+ */
5299
+ constructor(opts: __ExceptionOptionType<UsageLimitAlreadyExistsFault, __BaseException>);
5017
5300
  }
5018
5301
  export interface CustomerStorageMessage {
5019
5302
  /**
@@ -5221,10 +5504,13 @@ export declare namespace DeleteClusterParameterGroupMessage {
5221
5504
  * progress that involves the parameter group. Wait a few moments and try the operation
5222
5505
  * again.</p>
5223
5506
  */
5224
- export interface InvalidClusterParameterGroupStateFault extends __SmithyException, $MetadataBearer {
5225
- name: "InvalidClusterParameterGroupStateFault";
5226
- $fault: "client";
5227
- message?: string;
5507
+ export declare class InvalidClusterParameterGroupStateFault extends __BaseException {
5508
+ readonly name: "InvalidClusterParameterGroupStateFault";
5509
+ readonly $fault: "client";
5510
+ /**
5511
+ * @internal
5512
+ */
5513
+ constructor(opts: __ExceptionOptionType<InvalidClusterParameterGroupStateFault, __BaseException>);
5228
5514
  }
5229
5515
  /**
5230
5516
  * <p></p>
@@ -5271,10 +5557,13 @@ export declare namespace DeleteClusterSubnetGroupMessage {
5271
5557
  /**
5272
5558
  * <p>The state of the subnet is invalid.</p>
5273
5559
  */
5274
- export interface InvalidClusterSubnetStateFault extends __SmithyException, $MetadataBearer {
5275
- name: "InvalidClusterSubnetStateFault";
5276
- $fault: "client";
5277
- message?: string;
5560
+ export declare class InvalidClusterSubnetStateFault extends __BaseException {
5561
+ readonly name: "InvalidClusterSubnetStateFault";
5562
+ readonly $fault: "client";
5563
+ /**
5564
+ * @internal
5565
+ */
5566
+ constructor(opts: __ExceptionOptionType<InvalidClusterSubnetStateFault, __BaseException>);
5278
5567
  }
5279
5568
  export interface DeleteEndpointAccessMessage {
5280
5569
  /**
@@ -5291,18 +5580,24 @@ export declare namespace DeleteEndpointAccessMessage {
5291
5580
  /**
5292
5581
  * <p>The endpoint name doesn't refer to an existing endpoint.</p>
5293
5582
  */
5294
- export interface EndpointNotFoundFault extends __SmithyException, $MetadataBearer {
5295
- name: "EndpointNotFoundFault";
5296
- $fault: "client";
5297
- message?: string;
5583
+ export declare class EndpointNotFoundFault extends __BaseException {
5584
+ readonly name: "EndpointNotFoundFault";
5585
+ readonly $fault: "client";
5586
+ /**
5587
+ * @internal
5588
+ */
5589
+ constructor(opts: __ExceptionOptionType<EndpointNotFoundFault, __BaseException>);
5298
5590
  }
5299
5591
  /**
5300
5592
  * <p>The status of the endpoint is not valid.</p>
5301
5593
  */
5302
- export interface InvalidEndpointStateFault extends __SmithyException, $MetadataBearer {
5303
- name: "InvalidEndpointStateFault";
5304
- $fault: "client";
5305
- message?: string;
5594
+ export declare class InvalidEndpointStateFault extends __BaseException {
5595
+ readonly name: "InvalidEndpointStateFault";
5596
+ readonly $fault: "client";
5597
+ /**
5598
+ * @internal
5599
+ */
5600
+ constructor(opts: __ExceptionOptionType<InvalidEndpointStateFault, __BaseException>);
5306
5601
  }
5307
5602
  /**
5308
5603
  * <p></p>
@@ -5323,19 +5618,25 @@ export declare namespace DeleteEventSubscriptionMessage {
5323
5618
  * <p>The subscription request is invalid because it is a duplicate request. This
5324
5619
  * subscription request is already in progress.</p>
5325
5620
  */
5326
- export interface InvalidSubscriptionStateFault extends __SmithyException, $MetadataBearer {
5327
- name: "InvalidSubscriptionStateFault";
5328
- $fault: "client";
5329
- message?: string;
5621
+ export declare class InvalidSubscriptionStateFault extends __BaseException {
5622
+ readonly name: "InvalidSubscriptionStateFault";
5623
+ readonly $fault: "client";
5624
+ /**
5625
+ * @internal
5626
+ */
5627
+ constructor(opts: __ExceptionOptionType<InvalidSubscriptionStateFault, __BaseException>);
5330
5628
  }
5331
5629
  /**
5332
5630
  * <p>An Amazon Redshift event notification subscription with the specified name does not
5333
5631
  * exist.</p>
5334
5632
  */
5335
- export interface SubscriptionNotFoundFault extends __SmithyException, $MetadataBearer {
5336
- name: "SubscriptionNotFoundFault";
5337
- $fault: "client";
5338
- message?: string;
5633
+ export declare class SubscriptionNotFoundFault extends __BaseException {
5634
+ readonly name: "SubscriptionNotFoundFault";
5635
+ readonly $fault: "client";
5636
+ /**
5637
+ * @internal
5638
+ */
5639
+ constructor(opts: __ExceptionOptionType<SubscriptionNotFoundFault, __BaseException>);
5339
5640
  }
5340
5641
  /**
5341
5642
  * <p></p>
@@ -5356,10 +5657,13 @@ export declare namespace DeleteHsmClientCertificateMessage {
5356
5657
  * <p>The specified HSM client certificate is not in the <code>available</code> state, or
5357
5658
  * it is still in use by one or more Amazon Redshift clusters.</p>
5358
5659
  */
5359
- export interface InvalidHsmClientCertificateStateFault extends __SmithyException, $MetadataBearer {
5360
- name: "InvalidHsmClientCertificateStateFault";
5361
- $fault: "client";
5362
- message?: string;
5660
+ export declare class InvalidHsmClientCertificateStateFault extends __BaseException {
5661
+ readonly name: "InvalidHsmClientCertificateStateFault";
5662
+ readonly $fault: "client";
5663
+ /**
5664
+ * @internal
5665
+ */
5666
+ constructor(opts: __ExceptionOptionType<InvalidHsmClientCertificateStateFault, __BaseException>);
5363
5667
  }
5364
5668
  /**
5365
5669
  * <p></p>
@@ -5380,10 +5684,13 @@ export declare namespace DeleteHsmConfigurationMessage {
5380
5684
  * <p>The specified HSM configuration is not in the <code>available</code> state, or it
5381
5685
  * is still in use by one or more Amazon Redshift clusters.</p>
5382
5686
  */
5383
- export interface InvalidHsmConfigurationStateFault extends __SmithyException, $MetadataBearer {
5384
- name: "InvalidHsmConfigurationStateFault";
5385
- $fault: "client";
5386
- message?: string;
5687
+ export declare class InvalidHsmConfigurationStateFault extends __BaseException {
5688
+ readonly name: "InvalidHsmConfigurationStateFault";
5689
+ readonly $fault: "client";
5690
+ /**
5691
+ * @internal
5692
+ */
5693
+ constructor(opts: __ExceptionOptionType<InvalidHsmConfigurationStateFault, __BaseException>);
5387
5694
  }
5388
5695
  export interface DeleteScheduledActionMessage {
5389
5696
  /**
@@ -5400,10 +5707,13 @@ export declare namespace DeleteScheduledActionMessage {
5400
5707
  /**
5401
5708
  * <p>The scheduled action cannot be found. </p>
5402
5709
  */
5403
- export interface ScheduledActionNotFoundFault extends __SmithyException, $MetadataBearer {
5404
- name: "ScheduledActionNotFoundFault";
5405
- $fault: "client";
5406
- message?: string;
5710
+ export declare class ScheduledActionNotFoundFault extends __BaseException {
5711
+ readonly name: "ScheduledActionNotFoundFault";
5712
+ readonly $fault: "client";
5713
+ /**
5714
+ * @internal
5715
+ */
5716
+ constructor(opts: __ExceptionOptionType<ScheduledActionNotFoundFault, __BaseException>);
5407
5717
  }
5408
5718
  /**
5409
5719
  * <p>The result of the <code>DeleteSnapshotCopyGrant</code> action.</p>
@@ -5424,19 +5734,25 @@ export declare namespace DeleteSnapshotCopyGrantMessage {
5424
5734
  * <p>The snapshot copy grant can't be deleted because it is used by one or more
5425
5735
  * clusters.</p>
5426
5736
  */
5427
- export interface InvalidSnapshotCopyGrantStateFault extends __SmithyException, $MetadataBearer {
5428
- name: "InvalidSnapshotCopyGrantStateFault";
5429
- $fault: "client";
5430
- message?: string;
5737
+ export declare class InvalidSnapshotCopyGrantStateFault extends __BaseException {
5738
+ readonly name: "InvalidSnapshotCopyGrantStateFault";
5739
+ readonly $fault: "client";
5740
+ /**
5741
+ * @internal
5742
+ */
5743
+ constructor(opts: __ExceptionOptionType<InvalidSnapshotCopyGrantStateFault, __BaseException>);
5431
5744
  }
5432
5745
  /**
5433
5746
  * <p>The specified snapshot copy grant can't be found. Make sure that the name is typed
5434
5747
  * correctly and that the grant exists in the destination region.</p>
5435
5748
  */
5436
- export interface SnapshotCopyGrantNotFoundFault extends __SmithyException, $MetadataBearer {
5437
- name: "SnapshotCopyGrantNotFoundFault";
5438
- $fault: "client";
5439
- message?: string;
5749
+ export declare class SnapshotCopyGrantNotFoundFault extends __BaseException {
5750
+ readonly name: "SnapshotCopyGrantNotFoundFault";
5751
+ readonly $fault: "client";
5752
+ /**
5753
+ * @internal
5754
+ */
5755
+ constructor(opts: __ExceptionOptionType<SnapshotCopyGrantNotFoundFault, __BaseException>);
5440
5756
  }
5441
5757
  export interface DeleteSnapshotScheduleMessage {
5442
5758
  /**
@@ -5453,10 +5769,13 @@ export declare namespace DeleteSnapshotScheduleMessage {
5453
5769
  /**
5454
5770
  * <p>The cluster snapshot schedule state is not valid.</p>
5455
5771
  */
5456
- export interface InvalidClusterSnapshotScheduleStateFault extends __SmithyException, $MetadataBearer {
5457
- name: "InvalidClusterSnapshotScheduleStateFault";
5458
- $fault: "client";
5459
- message?: string;
5772
+ export declare class InvalidClusterSnapshotScheduleStateFault extends __BaseException {
5773
+ readonly name: "InvalidClusterSnapshotScheduleStateFault";
5774
+ readonly $fault: "client";
5775
+ /**
5776
+ * @internal
5777
+ */
5778
+ constructor(opts: __ExceptionOptionType<InvalidClusterSnapshotScheduleStateFault, __BaseException>);
5460
5779
  }
5461
5780
  /**
5462
5781
  * <p>Contains the output from the <code>DeleteTags</code> action. </p>
@@ -5493,10 +5812,13 @@ export declare namespace DeleteUsageLimitMessage {
5493
5812
  /**
5494
5813
  * <p>The usage limit identifier can't be found.</p>
5495
5814
  */
5496
- export interface UsageLimitNotFoundFault extends __SmithyException, $MetadataBearer {
5497
- name: "UsageLimitNotFoundFault";
5498
- $fault: "client";
5499
- message?: string;
5815
+ export declare class UsageLimitNotFoundFault extends __BaseException {
5816
+ readonly name: "UsageLimitNotFoundFault";
5817
+ readonly $fault: "client";
5818
+ /**
5819
+ * @internal
5820
+ */
5821
+ constructor(opts: __ExceptionOptionType<UsageLimitNotFoundFault, __BaseException>);
5500
5822
  }
5501
5823
  export interface DescribeAccountAttributesMessage {
5502
5824
  /**