@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.
- package/CHANGELOG.md +30 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/RedshiftServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +1399 -4
- package/dist-cjs/models/models_1.js +251 -3
- package/dist-cjs/protocols/Aws_query.js +1315 -4522
- package/dist-es/index.js +1 -0
- package/dist-es/models/RedshiftServiceException.js +12 -0
- package/dist-es/models/models_0.js +1287 -1
- package/dist-es/models/models_1.js +230 -1
- package/dist-es/protocols/Aws_query.js +2680 -4687
- package/dist-types/Redshift.d.ts +7 -5
- package/dist-types/RedshiftClient.d.ts +2 -2
- package/dist-types/commands/CreateSnapshotCopyGrantCommand.d.ts +2 -2
- package/dist-types/commands/DisableSnapshotCopyCommand.d.ts +2 -2
- package/dist-types/commands/ModifyClusterIamRolesCommand.d.ts +3 -1
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/RedshiftServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +771 -438
- package/dist-types/models/models_1.d.ts +147 -86
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/RedshiftClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/RedshiftServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +542 -429
- package/dist-types/ts3.4/models/models_1.d.ts +99 -77
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +34 -34
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
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
|
|
146
|
-
name: "DependentServiceUnavailableFault";
|
|
147
|
-
$fault: "client";
|
|
148
|
-
|
|
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
|
|
154
|
-
name: "InvalidReservedNodeStateFault";
|
|
155
|
-
$fault: "client";
|
|
156
|
-
|
|
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
|
|
162
|
-
name: "ReservedNodeAlreadyExistsFault";
|
|
163
|
-
$fault: "client";
|
|
164
|
-
|
|
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
|
|
170
|
-
name: "ReservedNodeAlreadyMigratedFault";
|
|
171
|
-
$fault: "client";
|
|
172
|
-
|
|
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
|
|
178
|
-
name: "ReservedNodeNotFoundFault";
|
|
179
|
-
$fault: "client";
|
|
180
|
-
|
|
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
|
|
186
|
-
name: "ReservedNodeOfferingNotFoundFault";
|
|
187
|
-
$fault: "client";
|
|
188
|
-
|
|
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
|
|
194
|
-
name: "UnsupportedOperationFault";
|
|
195
|
-
$fault: "client";
|
|
196
|
-
|
|
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
|
|
202
|
-
name: "AccessToClusterDeniedFault";
|
|
203
|
-
$fault: "client";
|
|
204
|
-
|
|
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
|
|
211
|
-
name: "AccessToSnapshotDeniedFault";
|
|
212
|
-
$fault: "client";
|
|
213
|
-
|
|
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
|
|
292
|
-
name: "ClusterNotFoundFault";
|
|
293
|
-
$fault: "client";
|
|
294
|
-
|
|
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
|
|
340
|
-
name: "PartnerNotFoundFault";
|
|
341
|
-
$fault: "client";
|
|
342
|
-
|
|
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
|
|
348
|
-
name: "UnauthorizedPartnerIntegrationFault";
|
|
349
|
-
$fault: "client";
|
|
350
|
-
|
|
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",
|
|
@@ -414,6 +451,10 @@ export interface AssociateDataShareConsumerMessage {
|
|
|
414
451
|
* datashare.</p>
|
|
415
452
|
*/
|
|
416
453
|
ConsumerArn?: string;
|
|
454
|
+
/**
|
|
455
|
+
* <p>From a datashare consumer account, associates a datashare with all existing and future namespaces in the specified Amazon Web Services Region.</p>
|
|
456
|
+
*/
|
|
457
|
+
ConsumerRegion?: string;
|
|
417
458
|
}
|
|
418
459
|
export declare namespace AssociateDataShareConsumerMessage {
|
|
419
460
|
/**
|
|
@@ -443,6 +484,10 @@ export interface DataShareAssociation {
|
|
|
443
484
|
* <p>The status of the datashare that is associated.</p>
|
|
444
485
|
*/
|
|
445
486
|
Status?: DataShareStatus | string;
|
|
487
|
+
/**
|
|
488
|
+
* <p>The Amazon Web Services Region of the consumer accounts that have an association with a producer datashare.</p>
|
|
489
|
+
*/
|
|
490
|
+
ConsumerRegion?: string;
|
|
446
491
|
/**
|
|
447
492
|
* <p>The creation date of the datashare that is associated.</p>
|
|
448
493
|
*/
|
|
@@ -489,18 +534,24 @@ export declare namespace DataShare {
|
|
|
489
534
|
/**
|
|
490
535
|
* <p>There is an error with the datashare.</p>
|
|
491
536
|
*/
|
|
492
|
-
export
|
|
493
|
-
name: "InvalidDataShareFault";
|
|
494
|
-
$fault: "client";
|
|
495
|
-
|
|
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>);
|
|
496
544
|
}
|
|
497
545
|
/**
|
|
498
546
|
* <p>The namespace isn't valid because the namespace doesn't exist. Provide a valid namespace.</p>
|
|
499
547
|
*/
|
|
500
|
-
export
|
|
501
|
-
name: "InvalidNamespaceFault";
|
|
502
|
-
$fault: "client";
|
|
503
|
-
|
|
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>);
|
|
504
555
|
}
|
|
505
556
|
export declare type ScheduleState = "ACTIVE" | "FAILED" | "MODIFYING";
|
|
506
557
|
/**
|
|
@@ -545,53 +596,71 @@ export declare namespace AuthenticationProfile {
|
|
|
545
596
|
/**
|
|
546
597
|
* <p>The authentication profile already exists.</p>
|
|
547
598
|
*/
|
|
548
|
-
export
|
|
549
|
-
name: "AuthenticationProfileAlreadyExistsFault";
|
|
550
|
-
$fault: "client";
|
|
551
|
-
|
|
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>);
|
|
552
606
|
}
|
|
553
607
|
/**
|
|
554
608
|
* <p>The authentication profile can't be found.</p>
|
|
555
609
|
*/
|
|
556
|
-
export
|
|
557
|
-
name: "AuthenticationProfileNotFoundFault";
|
|
558
|
-
$fault: "client";
|
|
559
|
-
|
|
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>);
|
|
560
617
|
}
|
|
561
618
|
/**
|
|
562
619
|
* <p>The size or number of authentication profiles has exceeded the quota.
|
|
563
620
|
* The maximum length of the JSON string and maximum number of authentication profiles is determined by a quota for your account.</p>
|
|
564
621
|
*/
|
|
565
|
-
export
|
|
566
|
-
name: "AuthenticationProfileQuotaExceededFault";
|
|
567
|
-
$fault: "client";
|
|
568
|
-
|
|
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>);
|
|
569
629
|
}
|
|
570
630
|
/**
|
|
571
631
|
* <p>The specified CIDR block or EC2 security group is already authorized for the
|
|
572
632
|
* specified cluster security group.</p>
|
|
573
633
|
*/
|
|
574
|
-
export
|
|
575
|
-
name: "AuthorizationAlreadyExistsFault";
|
|
576
|
-
$fault: "client";
|
|
577
|
-
|
|
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>);
|
|
578
641
|
}
|
|
579
642
|
/**
|
|
580
643
|
* <p>The specified CIDR IP range or EC2 security group is not authorized for the
|
|
581
644
|
* specified cluster security group.</p>
|
|
582
645
|
*/
|
|
583
|
-
export
|
|
584
|
-
name: "AuthorizationNotFoundFault";
|
|
585
|
-
$fault: "client";
|
|
586
|
-
|
|
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>);
|
|
587
653
|
}
|
|
588
654
|
/**
|
|
589
655
|
* <p>The authorization quota for the cluster security group has been reached.</p>
|
|
590
656
|
*/
|
|
591
|
-
export
|
|
592
|
-
name: "AuthorizationQuotaExceededFault";
|
|
593
|
-
$fault: "client";
|
|
594
|
-
|
|
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>);
|
|
595
664
|
}
|
|
596
665
|
export declare enum AuthorizationStatus {
|
|
597
666
|
AUTHORIZED = "Authorized",
|
|
@@ -748,18 +817,24 @@ export declare namespace AuthorizeClusterSecurityGroupIngressResult {
|
|
|
748
817
|
* <p>The cluster security group name does not refer to an existing cluster security
|
|
749
818
|
* group.</p>
|
|
750
819
|
*/
|
|
751
|
-
export
|
|
752
|
-
name: "ClusterSecurityGroupNotFoundFault";
|
|
753
|
-
$fault: "client";
|
|
754
|
-
|
|
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>);
|
|
755
827
|
}
|
|
756
828
|
/**
|
|
757
829
|
* <p>The state of the cluster security group is not <code>available</code>. </p>
|
|
758
830
|
*/
|
|
759
|
-
export
|
|
760
|
-
name: "InvalidClusterSecurityGroupStateFault";
|
|
761
|
-
$fault: "client";
|
|
762
|
-
|
|
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>);
|
|
763
838
|
}
|
|
764
839
|
export interface AuthorizeDataShareMessage {
|
|
765
840
|
/**
|
|
@@ -848,34 +923,46 @@ export declare namespace EndpointAuthorization {
|
|
|
848
923
|
/**
|
|
849
924
|
* <p>The authorization already exists for this endpoint.</p>
|
|
850
925
|
*/
|
|
851
|
-
export
|
|
852
|
-
name: "EndpointAuthorizationAlreadyExistsFault";
|
|
853
|
-
$fault: "client";
|
|
854
|
-
|
|
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>);
|
|
855
933
|
}
|
|
856
934
|
/**
|
|
857
935
|
* <p>The number of endpoint authorizations per cluster has exceeded its limit.</p>
|
|
858
936
|
*/
|
|
859
|
-
export
|
|
860
|
-
name: "EndpointAuthorizationsPerClusterLimitExceededFault";
|
|
861
|
-
$fault: "client";
|
|
862
|
-
|
|
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>);
|
|
863
944
|
}
|
|
864
945
|
/**
|
|
865
946
|
* <p>The status of the authorization is not valid.</p>
|
|
866
947
|
*/
|
|
867
|
-
export
|
|
868
|
-
name: "InvalidAuthorizationStateFault";
|
|
869
|
-
$fault: "client";
|
|
870
|
-
|
|
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>);
|
|
871
955
|
}
|
|
872
956
|
/**
|
|
873
957
|
* <p>The specified cluster is not in the <code>available</code> state. </p>
|
|
874
958
|
*/
|
|
875
|
-
export
|
|
876
|
-
name: "InvalidClusterStateFault";
|
|
877
|
-
$fault: "client";
|
|
878
|
-
|
|
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>);
|
|
879
966
|
}
|
|
880
967
|
/**
|
|
881
968
|
* <p></p>
|
|
@@ -1105,36 +1192,48 @@ export declare namespace AuthorizeSnapshotAccessResult {
|
|
|
1105
1192
|
/**
|
|
1106
1193
|
* <p>The snapshot identifier does not refer to an existing cluster snapshot.</p>
|
|
1107
1194
|
*/
|
|
1108
|
-
export
|
|
1109
|
-
name: "ClusterSnapshotNotFoundFault";
|
|
1110
|
-
$fault: "client";
|
|
1111
|
-
|
|
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>);
|
|
1112
1202
|
}
|
|
1113
1203
|
/**
|
|
1114
1204
|
* <p>The request cannot be completed because a dependent service is throttling requests
|
|
1115
1205
|
* made by Amazon Redshift on your behalf. Wait and retry the request.</p>
|
|
1116
1206
|
*/
|
|
1117
|
-
export
|
|
1118
|
-
name: "DependentServiceRequestThrottlingFault";
|
|
1119
|
-
$fault: "client";
|
|
1120
|
-
|
|
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>);
|
|
1121
1214
|
}
|
|
1122
1215
|
/**
|
|
1123
1216
|
* <p>The specified cluster snapshot is not in the <code>available</code> state, or other
|
|
1124
1217
|
* accounts are authorized to access the snapshot. </p>
|
|
1125
1218
|
*/
|
|
1126
|
-
export
|
|
1127
|
-
name: "InvalidClusterSnapshotStateFault";
|
|
1128
|
-
$fault: "client";
|
|
1129
|
-
|
|
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>);
|
|
1130
1226
|
}
|
|
1131
1227
|
/**
|
|
1132
1228
|
* <p>The encryption key has exceeded its grant limit in Amazon Web Services KMS.</p>
|
|
1133
1229
|
*/
|
|
1134
|
-
export
|
|
1135
|
-
name: "LimitExceededFault";
|
|
1136
|
-
$fault: "client";
|
|
1137
|
-
|
|
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>);
|
|
1138
1237
|
}
|
|
1139
1238
|
/**
|
|
1140
1239
|
* <p>A list of supported platforms for orderable clusters.</p>
|
|
@@ -1254,19 +1353,25 @@ export declare namespace BatchDeleteClusterSnapshotsResult {
|
|
|
1254
1353
|
* <p>The maximum number for a batch delete of snapshots has been reached. The limit is
|
|
1255
1354
|
* 100. </p>
|
|
1256
1355
|
*/
|
|
1257
|
-
export
|
|
1258
|
-
name: "BatchDeleteRequestSizeExceededFault";
|
|
1259
|
-
$fault: "client";
|
|
1260
|
-
|
|
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>);
|
|
1261
1363
|
}
|
|
1262
1364
|
/**
|
|
1263
1365
|
* <p>The maximum number for snapshot identifiers has been reached. The limit is 100.
|
|
1264
1366
|
* </p>
|
|
1265
1367
|
*/
|
|
1266
|
-
export
|
|
1267
|
-
name: "BatchModifyClusterSnapshotsLimitExceededFault";
|
|
1268
|
-
$fault: "client";
|
|
1269
|
-
|
|
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>);
|
|
1270
1375
|
}
|
|
1271
1376
|
export interface BatchModifyClusterSnapshotsMessage {
|
|
1272
1377
|
/**
|
|
@@ -1314,18 +1419,24 @@ export declare namespace BatchModifyClusterSnapshotsOutputMessage {
|
|
|
1314
1419
|
* <p>The retention period specified is either in the past or is not a valid value.</p>
|
|
1315
1420
|
* <p>The value must be either -1 or an integer between 1 and 3,653.</p>
|
|
1316
1421
|
*/
|
|
1317
|
-
export
|
|
1318
|
-
name: "InvalidRetentionPeriodFault";
|
|
1319
|
-
$fault: "client";
|
|
1320
|
-
|
|
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>);
|
|
1321
1429
|
}
|
|
1322
1430
|
/**
|
|
1323
1431
|
* <p>Could not find the specified S3 bucket.</p>
|
|
1324
1432
|
*/
|
|
1325
|
-
export
|
|
1326
|
-
name: "BucketNotFoundFault";
|
|
1327
|
-
$fault: "client";
|
|
1328
|
-
|
|
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>);
|
|
1329
1440
|
}
|
|
1330
1441
|
export interface CancelResizeMessage {
|
|
1331
1442
|
/**
|
|
@@ -1343,10 +1454,13 @@ export declare namespace CancelResizeMessage {
|
|
|
1343
1454
|
/**
|
|
1344
1455
|
* <p>A resize operation for the specified cluster is not found.</p>
|
|
1345
1456
|
*/
|
|
1346
|
-
export
|
|
1347
|
-
name: "ResizeNotFoundFault";
|
|
1348
|
-
$fault: "client";
|
|
1349
|
-
|
|
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>);
|
|
1350
1464
|
}
|
|
1351
1465
|
/**
|
|
1352
1466
|
* <p>Describes the result of a cluster resize operation.</p>
|
|
@@ -2430,10 +2544,13 @@ export declare namespace Cluster {
|
|
|
2430
2544
|
/**
|
|
2431
2545
|
* <p>The account already has a cluster with the given identifier.</p>
|
|
2432
2546
|
*/
|
|
2433
|
-
export
|
|
2434
|
-
name: "ClusterAlreadyExistsFault";
|
|
2435
|
-
$fault: "client";
|
|
2436
|
-
|
|
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>);
|
|
2437
2554
|
}
|
|
2438
2555
|
/**
|
|
2439
2556
|
* <p>Temporary credentials with authorization to log on to an Amazon Redshift database.
|
|
@@ -2540,10 +2657,13 @@ export declare namespace ClusterDbRevisionsMessage {
|
|
|
2540
2657
|
/**
|
|
2541
2658
|
* <p>Cluster is already on the latest database revision.</p>
|
|
2542
2659
|
*/
|
|
2543
|
-
export
|
|
2544
|
-
name: "ClusterOnLatestRevisionFault";
|
|
2545
|
-
$fault: "client";
|
|
2546
|
-
|
|
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>);
|
|
2547
2667
|
}
|
|
2548
2668
|
/**
|
|
2549
2669
|
* <p>Describes a parameter group.</p>
|
|
@@ -2576,10 +2696,13 @@ export declare namespace ClusterParameterGroup {
|
|
|
2576
2696
|
/**
|
|
2577
2697
|
* <p>A cluster parameter group with the same name already exists.</p>
|
|
2578
2698
|
*/
|
|
2579
|
-
export
|
|
2580
|
-
name: "ClusterParameterGroupAlreadyExistsFault";
|
|
2581
|
-
$fault: "client";
|
|
2582
|
-
|
|
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>);
|
|
2583
2706
|
}
|
|
2584
2707
|
export declare type ParameterApplyType = "dynamic" | "static";
|
|
2585
2708
|
/**
|
|
@@ -2685,10 +2808,13 @@ export declare namespace ClusterParameterGroupNameMessage {
|
|
|
2685
2808
|
/**
|
|
2686
2809
|
* <p>The parameter group name does not refer to an existing parameter group.</p>
|
|
2687
2810
|
*/
|
|
2688
|
-
export
|
|
2689
|
-
name: "ClusterParameterGroupNotFoundFault";
|
|
2690
|
-
$fault: "client";
|
|
2691
|
-
|
|
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>);
|
|
2692
2818
|
}
|
|
2693
2819
|
/**
|
|
2694
2820
|
* <p>The request would result in the user exceeding the allowed number of cluster
|
|
@@ -2697,10 +2823,13 @@ export interface ClusterParameterGroupNotFoundFault extends __SmithyException, $
|
|
|
2697
2823
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.
|
|
2698
2824
|
* </p>
|
|
2699
2825
|
*/
|
|
2700
|
-
export
|
|
2701
|
-
name: "ClusterParameterGroupQuotaExceededFault";
|
|
2702
|
-
$fault: "client";
|
|
2703
|
-
|
|
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>);
|
|
2704
2833
|
}
|
|
2705
2834
|
/**
|
|
2706
2835
|
* <p>Contains the output from the <a>DescribeClusterParameterGroups</a>
|
|
@@ -2734,18 +2863,24 @@ export declare namespace ClusterParameterGroupsMessage {
|
|
|
2734
2863
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.
|
|
2735
2864
|
* </p>
|
|
2736
2865
|
*/
|
|
2737
|
-
export
|
|
2738
|
-
name: "ClusterQuotaExceededFault";
|
|
2739
|
-
$fault: "client";
|
|
2740
|
-
|
|
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>);
|
|
2741
2873
|
}
|
|
2742
2874
|
/**
|
|
2743
2875
|
* <p>A cluster security group with the same name already exists.</p>
|
|
2744
2876
|
*/
|
|
2745
|
-
export
|
|
2746
|
-
name: "ClusterSecurityGroupAlreadyExistsFault";
|
|
2747
|
-
$fault: "client";
|
|
2748
|
-
|
|
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>);
|
|
2749
2884
|
}
|
|
2750
2885
|
/**
|
|
2751
2886
|
* <p></p>
|
|
@@ -2777,10 +2912,13 @@ export declare namespace ClusterSecurityGroupMessage {
|
|
|
2777
2912
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.
|
|
2778
2913
|
* </p>
|
|
2779
2914
|
*/
|
|
2780
|
-
export
|
|
2781
|
-
name: "ClusterSecurityGroupQuotaExceededFault";
|
|
2782
|
-
$fault: "client";
|
|
2783
|
-
|
|
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>);
|
|
2784
2922
|
}
|
|
2785
2923
|
/**
|
|
2786
2924
|
* <p>Contains the output from the <a>DescribeClusters</a> action. </p>
|
|
@@ -2810,19 +2948,25 @@ export declare namespace ClustersMessage {
|
|
|
2810
2948
|
* <p>The value specified as a snapshot identifier is already used by an existing
|
|
2811
2949
|
* snapshot.</p>
|
|
2812
2950
|
*/
|
|
2813
|
-
export
|
|
2814
|
-
name: "ClusterSnapshotAlreadyExistsFault";
|
|
2815
|
-
$fault: "client";
|
|
2816
|
-
|
|
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>);
|
|
2817
2958
|
}
|
|
2818
2959
|
/**
|
|
2819
2960
|
* <p>The request would result in the user exceeding the allowed number of cluster
|
|
2820
2961
|
* snapshots.</p>
|
|
2821
2962
|
*/
|
|
2822
|
-
export
|
|
2823
|
-
name: "ClusterSnapshotQuotaExceededFault";
|
|
2824
|
-
$fault: "client";
|
|
2825
|
-
|
|
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>);
|
|
2826
2970
|
}
|
|
2827
2971
|
/**
|
|
2828
2972
|
* <p>Describes a subnet.</p>
|
|
@@ -2887,10 +3031,13 @@ export declare namespace ClusterSubnetGroup {
|
|
|
2887
3031
|
* <p>A <i>ClusterSubnetGroupName</i> is already used by an existing
|
|
2888
3032
|
* cluster subnet group. </p>
|
|
2889
3033
|
*/
|
|
2890
|
-
export
|
|
2891
|
-
name: "ClusterSubnetGroupAlreadyExistsFault";
|
|
2892
|
-
$fault: "client";
|
|
2893
|
-
|
|
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>);
|
|
2894
3041
|
}
|
|
2895
3042
|
/**
|
|
2896
3043
|
* <p>Contains the output from the <a>DescribeClusterSubnetGroups</a> action.
|
|
@@ -2920,10 +3067,13 @@ export declare namespace ClusterSubnetGroupMessage {
|
|
|
2920
3067
|
* <p>The cluster subnet group name does not refer to an existing cluster subnet
|
|
2921
3068
|
* group.</p>
|
|
2922
3069
|
*/
|
|
2923
|
-
export
|
|
2924
|
-
name: "ClusterSubnetGroupNotFoundFault";
|
|
2925
|
-
$fault: "client";
|
|
2926
|
-
|
|
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>);
|
|
2927
3077
|
}
|
|
2928
3078
|
/**
|
|
2929
3079
|
* <p>The request would result in user exceeding the allowed number of cluster subnet
|
|
@@ -2932,10 +3082,13 @@ export interface ClusterSubnetGroupNotFoundFault extends __SmithyException, $Met
|
|
|
2932
3082
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.
|
|
2933
3083
|
* </p>
|
|
2934
3084
|
*/
|
|
2935
|
-
export
|
|
2936
|
-
name: "ClusterSubnetGroupQuotaExceededFault";
|
|
2937
|
-
$fault: "client";
|
|
2938
|
-
|
|
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>);
|
|
2939
3092
|
}
|
|
2940
3093
|
/**
|
|
2941
3094
|
* <p>The request would result in user exceeding the allowed number of subnets in a
|
|
@@ -2944,10 +3097,13 @@ export interface ClusterSubnetGroupQuotaExceededFault extends __SmithyException,
|
|
|
2944
3097
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.
|
|
2945
3098
|
* </p>
|
|
2946
3099
|
*/
|
|
2947
|
-
export
|
|
2948
|
-
name: "ClusterSubnetQuotaExceededFault";
|
|
2949
|
-
$fault: "client";
|
|
2950
|
-
|
|
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>);
|
|
2951
3107
|
}
|
|
2952
3108
|
/**
|
|
2953
3109
|
* <p>Describes a cluster version, including the parameter group family and description
|
|
@@ -3076,10 +3232,13 @@ export declare namespace CopyClusterSnapshotResult {
|
|
|
3076
3232
|
* <p>Cross-region snapshot copy was temporarily disabled. Try your request
|
|
3077
3233
|
* again.</p>
|
|
3078
3234
|
*/
|
|
3079
|
-
export
|
|
3080
|
-
name: "CopyToRegionDisabledFault";
|
|
3081
|
-
$fault: "client";
|
|
3082
|
-
|
|
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>);
|
|
3083
3242
|
}
|
|
3084
3243
|
export interface CreateAuthenticationProfileMessage {
|
|
3085
3244
|
/**
|
|
@@ -3118,10 +3277,13 @@ export declare namespace CreateAuthenticationProfileResult {
|
|
|
3118
3277
|
* <p>The authentication profile request is not valid. The profile name can't be null or empty.
|
|
3119
3278
|
* The authentication profile API operation must be available in the Amazon Web Services Region.</p>
|
|
3120
3279
|
*/
|
|
3121
|
-
export
|
|
3122
|
-
name: "InvalidAuthenticationProfileRequestFault";
|
|
3123
|
-
$fault: "client";
|
|
3124
|
-
|
|
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>);
|
|
3125
3287
|
}
|
|
3126
3288
|
/**
|
|
3127
3289
|
* <p></p>
|
|
@@ -3247,8 +3409,8 @@ export interface CreateClusterMessage {
|
|
|
3247
3409
|
* <p>Must contain one number.</p>
|
|
3248
3410
|
* </li>
|
|
3249
3411
|
* <li>
|
|
3250
|
-
* <p>Can be any printable ASCII character (ASCII code 33
|
|
3251
|
-
* (single quote), " (double quote), \, /,
|
|
3412
|
+
* <p>Can be any printable ASCII character (ASCII code 33-126) except '
|
|
3413
|
+
* (single quote), " (double quote), \, /, or @.</p>
|
|
3252
3414
|
* </li>
|
|
3253
3415
|
* </ul>
|
|
3254
3416
|
*/
|
|
@@ -3429,9 +3591,10 @@ export interface CreateClusterMessage {
|
|
|
3429
3591
|
/**
|
|
3430
3592
|
* <p>A list of Identity and Access Management (IAM) roles that can be used by the
|
|
3431
3593
|
* cluster to access other Amazon Web Services services. You must supply the IAM roles in their Amazon
|
|
3432
|
-
* Resource Name (ARN) format.
|
|
3433
|
-
*
|
|
3434
|
-
*
|
|
3594
|
+
* Resource Name (ARN) format. </p>
|
|
3595
|
+
* <p>The maximum number of IAM roles that you can associate is subject to a quota.
|
|
3596
|
+
* For more information, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html">Quotas and limits</a>
|
|
3597
|
+
* in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
|
|
3435
3598
|
*/
|
|
3436
3599
|
IamRoles?: string[];
|
|
3437
3600
|
/**
|
|
@@ -3490,84 +3653,114 @@ export declare namespace CreateClusterResult {
|
|
|
3490
3653
|
* <p>There is no Amazon Redshift HSM client certificate with the specified
|
|
3491
3654
|
* identifier.</p>
|
|
3492
3655
|
*/
|
|
3493
|
-
export
|
|
3494
|
-
name: "HsmClientCertificateNotFoundFault";
|
|
3495
|
-
$fault: "client";
|
|
3496
|
-
|
|
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>);
|
|
3497
3663
|
}
|
|
3498
3664
|
/**
|
|
3499
3665
|
* <p>There is no Amazon Redshift HSM configuration with the specified identifier.</p>
|
|
3500
3666
|
*/
|
|
3501
|
-
export
|
|
3502
|
-
name: "HsmConfigurationNotFoundFault";
|
|
3503
|
-
$fault: "client";
|
|
3504
|
-
|
|
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>);
|
|
3505
3674
|
}
|
|
3506
3675
|
/**
|
|
3507
3676
|
* <p>The number of nodes specified exceeds the allotted capacity of the
|
|
3508
3677
|
* cluster.</p>
|
|
3509
3678
|
*/
|
|
3510
|
-
export
|
|
3511
|
-
name: "InsufficientClusterCapacityFault";
|
|
3512
|
-
$fault: "client";
|
|
3513
|
-
|
|
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>);
|
|
3514
3686
|
}
|
|
3515
3687
|
/**
|
|
3516
3688
|
* <p>The cluster subnet group cannot be deleted because it is in use.</p>
|
|
3517
3689
|
*/
|
|
3518
|
-
export
|
|
3519
|
-
name: "InvalidClusterSubnetGroupStateFault";
|
|
3520
|
-
$fault: "client";
|
|
3521
|
-
|
|
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>);
|
|
3522
3697
|
}
|
|
3523
3698
|
/**
|
|
3524
3699
|
* <p>The provided cluster track name is not valid.</p>
|
|
3525
3700
|
*/
|
|
3526
|
-
export
|
|
3527
|
-
name: "InvalidClusterTrackFault";
|
|
3528
|
-
$fault: "client";
|
|
3529
|
-
|
|
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>);
|
|
3530
3708
|
}
|
|
3531
3709
|
/**
|
|
3532
3710
|
* <p>The Elastic IP (EIP) is invalid or cannot be found.</p>
|
|
3533
3711
|
*/
|
|
3534
|
-
export
|
|
3535
|
-
name: "InvalidElasticIpFault";
|
|
3536
|
-
$fault: "client";
|
|
3537
|
-
|
|
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>);
|
|
3538
3719
|
}
|
|
3539
3720
|
/**
|
|
3540
3721
|
* <p>The requested subnet is not valid, or not all of the subnets are in the same
|
|
3541
3722
|
* VPC.</p>
|
|
3542
3723
|
*/
|
|
3543
|
-
export
|
|
3544
|
-
name: "InvalidSubnet";
|
|
3545
|
-
$fault: "client";
|
|
3546
|
-
|
|
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>);
|
|
3547
3731
|
}
|
|
3548
3732
|
/**
|
|
3549
3733
|
* <p>The tag is invalid.</p>
|
|
3550
3734
|
*/
|
|
3551
|
-
export
|
|
3552
|
-
name: "InvalidTagFault";
|
|
3553
|
-
$fault: "client";
|
|
3554
|
-
|
|
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>);
|
|
3555
3742
|
}
|
|
3556
3743
|
/**
|
|
3557
3744
|
* <p>The cluster subnet group does not cover all Availability Zones.</p>
|
|
3558
3745
|
*/
|
|
3559
|
-
export
|
|
3560
|
-
name: "InvalidVPCNetworkStateFault";
|
|
3561
|
-
$fault: "client";
|
|
3562
|
-
|
|
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>);
|
|
3563
3753
|
}
|
|
3564
3754
|
/**
|
|
3565
3755
|
* <p>The operation would exceed the number of nodes allowed for a cluster.</p>
|
|
3566
3756
|
*/
|
|
3567
|
-
export
|
|
3568
|
-
name: "NumberOfNodesPerClusterLimitExceededFault";
|
|
3569
|
-
$fault: "client";
|
|
3570
|
-
|
|
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>);
|
|
3571
3764
|
}
|
|
3572
3765
|
/**
|
|
3573
3766
|
* <p>The operation would exceed the number of nodes allotted to the account.
|
|
@@ -3576,34 +3769,46 @@ export interface NumberOfNodesPerClusterLimitExceededFault extends __SmithyExcep
|
|
|
3576
3769
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.
|
|
3577
3770
|
* </p>
|
|
3578
3771
|
*/
|
|
3579
|
-
export
|
|
3580
|
-
name: "NumberOfNodesQuotaExceededFault";
|
|
3581
|
-
$fault: "client";
|
|
3582
|
-
|
|
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>);
|
|
3583
3779
|
}
|
|
3584
3780
|
/**
|
|
3585
3781
|
* <p>We could not find the specified snapshot schedule. </p>
|
|
3586
3782
|
*/
|
|
3587
|
-
export
|
|
3588
|
-
name: "SnapshotScheduleNotFoundFault";
|
|
3589
|
-
$fault: "client";
|
|
3590
|
-
|
|
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>);
|
|
3591
3790
|
}
|
|
3592
3791
|
/**
|
|
3593
3792
|
* <p>You have exceeded the number of tags allowed.</p>
|
|
3594
3793
|
*/
|
|
3595
|
-
export
|
|
3596
|
-
name: "TagLimitExceededFault";
|
|
3597
|
-
$fault: "client";
|
|
3598
|
-
|
|
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>);
|
|
3599
3801
|
}
|
|
3600
3802
|
/**
|
|
3601
3803
|
* <p>Your account is not authorized to perform the requested operation.</p>
|
|
3602
3804
|
*/
|
|
3603
|
-
export
|
|
3604
|
-
name: "UnauthorizedOperation";
|
|
3605
|
-
$fault: "client";
|
|
3606
|
-
|
|
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>);
|
|
3607
3812
|
}
|
|
3608
3813
|
/**
|
|
3609
3814
|
* <p></p>
|
|
@@ -3921,26 +4126,35 @@ export declare namespace EndpointAccess {
|
|
|
3921
4126
|
/**
|
|
3922
4127
|
* <p>The account already has a Redshift-managed VPC endpoint with the given identifier.</p>
|
|
3923
4128
|
*/
|
|
3924
|
-
export
|
|
3925
|
-
name: "EndpointAlreadyExistsFault";
|
|
3926
|
-
$fault: "client";
|
|
3927
|
-
|
|
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>);
|
|
3928
4136
|
}
|
|
3929
4137
|
/**
|
|
3930
4138
|
* <p>The number of Redshift-managed VPC endpoints per authorization has exceeded its limit.</p>
|
|
3931
4139
|
*/
|
|
3932
|
-
export
|
|
3933
|
-
name: "EndpointsPerAuthorizationLimitExceededFault";
|
|
3934
|
-
$fault: "client";
|
|
3935
|
-
|
|
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>);
|
|
3936
4147
|
}
|
|
3937
4148
|
/**
|
|
3938
4149
|
* <p>The number of Redshift-managed VPC endpoints per cluster has exceeded its limit.</p>
|
|
3939
4150
|
*/
|
|
3940
|
-
export
|
|
3941
|
-
name: "EndpointsPerClusterLimitExceededFault";
|
|
3942
|
-
$fault: "client";
|
|
3943
|
-
|
|
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>);
|
|
3944
4158
|
}
|
|
3945
4159
|
/**
|
|
3946
4160
|
* <p></p>
|
|
@@ -4114,81 +4328,108 @@ export declare namespace CreateEventSubscriptionResult {
|
|
|
4114
4328
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.
|
|
4115
4329
|
* </p>
|
|
4116
4330
|
*/
|
|
4117
|
-
export
|
|
4118
|
-
name: "EventSubscriptionQuotaExceededFault";
|
|
4119
|
-
$fault: "client";
|
|
4120
|
-
|
|
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>);
|
|
4121
4338
|
}
|
|
4122
4339
|
/**
|
|
4123
4340
|
* <p>Amazon SNS has responded that there is a problem with the specified Amazon SNS
|
|
4124
4341
|
* topic.</p>
|
|
4125
4342
|
*/
|
|
4126
|
-
export
|
|
4127
|
-
name: "SNSInvalidTopicFault";
|
|
4128
|
-
$fault: "client";
|
|
4129
|
-
|
|
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>);
|
|
4130
4350
|
}
|
|
4131
4351
|
/**
|
|
4132
4352
|
* <p>You do not have permission to publish to the specified Amazon SNS topic.</p>
|
|
4133
4353
|
*/
|
|
4134
|
-
export
|
|
4135
|
-
name: "SNSNoAuthorizationFault";
|
|
4136
|
-
$fault: "client";
|
|
4137
|
-
|
|
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>);
|
|
4138
4361
|
}
|
|
4139
4362
|
/**
|
|
4140
4363
|
* <p>An Amazon SNS topic with the specified Amazon Resource Name (ARN) does not
|
|
4141
4364
|
* exist.</p>
|
|
4142
4365
|
*/
|
|
4143
|
-
export
|
|
4144
|
-
name: "SNSTopicArnNotFoundFault";
|
|
4145
|
-
$fault: "client";
|
|
4146
|
-
|
|
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>);
|
|
4147
4373
|
}
|
|
4148
4374
|
/**
|
|
4149
4375
|
* <p>The specified Amazon Redshift event source could not be found.</p>
|
|
4150
4376
|
*/
|
|
4151
|
-
export
|
|
4152
|
-
name: "SourceNotFoundFault";
|
|
4153
|
-
$fault: "client";
|
|
4154
|
-
|
|
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>);
|
|
4155
4384
|
}
|
|
4156
4385
|
/**
|
|
4157
4386
|
* <p>There is already an existing event notification subscription with the specified
|
|
4158
4387
|
* name.</p>
|
|
4159
4388
|
*/
|
|
4160
|
-
export
|
|
4161
|
-
name: "SubscriptionAlreadyExistFault";
|
|
4162
|
-
$fault: "client";
|
|
4163
|
-
|
|
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>);
|
|
4164
4396
|
}
|
|
4165
4397
|
/**
|
|
4166
4398
|
* <p>The value specified for the event category was not one of the allowed values, or it
|
|
4167
4399
|
* specified a category that does not apply to the specified source type. The allowed
|
|
4168
4400
|
* values are Configuration, Management, Monitoring, and Security.</p>
|
|
4169
4401
|
*/
|
|
4170
|
-
export
|
|
4171
|
-
name: "SubscriptionCategoryNotFoundFault";
|
|
4172
|
-
$fault: "client";
|
|
4173
|
-
|
|
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>);
|
|
4174
4409
|
}
|
|
4175
4410
|
/**
|
|
4176
4411
|
* <p>An Amazon Redshift event with the specified event ID does not exist.</p>
|
|
4177
4412
|
*/
|
|
4178
|
-
export
|
|
4179
|
-
name: "SubscriptionEventIdNotFoundFault";
|
|
4180
|
-
$fault: "client";
|
|
4181
|
-
|
|
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>);
|
|
4182
4420
|
}
|
|
4183
4421
|
/**
|
|
4184
4422
|
* <p>The value specified for the event severity was not one of the allowed values, or it
|
|
4185
4423
|
* specified a severity that does not apply to the specified source type. The allowed
|
|
4186
4424
|
* values are ERROR and INFO.</p>
|
|
4187
4425
|
*/
|
|
4188
|
-
export
|
|
4189
|
-
name: "SubscriptionSeverityNotFoundFault";
|
|
4190
|
-
$fault: "client";
|
|
4191
|
-
|
|
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>);
|
|
4192
4433
|
}
|
|
4193
4434
|
/**
|
|
4194
4435
|
* <p></p>
|
|
@@ -4254,10 +4495,13 @@ export declare namespace CreateHsmClientCertificateResult {
|
|
|
4254
4495
|
* <p>There is already an existing Amazon Redshift HSM client certificate with the specified
|
|
4255
4496
|
* identifier.</p>
|
|
4256
4497
|
*/
|
|
4257
|
-
export
|
|
4258
|
-
name: "HsmClientCertificateAlreadyExistsFault";
|
|
4259
|
-
$fault: "client";
|
|
4260
|
-
|
|
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>);
|
|
4261
4505
|
}
|
|
4262
4506
|
/**
|
|
4263
4507
|
* <p>The quota for HSM client certificates has been reached.
|
|
@@ -4265,10 +4509,13 @@ export interface HsmClientCertificateAlreadyExistsFault extends __SmithyExceptio
|
|
|
4265
4509
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.
|
|
4266
4510
|
* </p>
|
|
4267
4511
|
*/
|
|
4268
|
-
export
|
|
4269
|
-
name: "HsmClientCertificateQuotaExceededFault";
|
|
4270
|
-
$fault: "client";
|
|
4271
|
-
|
|
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>);
|
|
4272
4519
|
}
|
|
4273
4520
|
/**
|
|
4274
4521
|
* <p></p>
|
|
@@ -4363,10 +4610,13 @@ export declare namespace CreateHsmConfigurationResult {
|
|
|
4363
4610
|
* <p>There is already an existing Amazon Redshift HSM configuration with the specified
|
|
4364
4611
|
* identifier.</p>
|
|
4365
4612
|
*/
|
|
4366
|
-
export
|
|
4367
|
-
name: "HsmConfigurationAlreadyExistsFault";
|
|
4368
|
-
$fault: "client";
|
|
4369
|
-
|
|
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>);
|
|
4370
4620
|
}
|
|
4371
4621
|
/**
|
|
4372
4622
|
* <p>The quota for HSM configurations has been reached.
|
|
@@ -4374,10 +4624,13 @@ export interface HsmConfigurationAlreadyExistsFault extends __SmithyException, $
|
|
|
4374
4624
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.
|
|
4375
4625
|
* </p>
|
|
4376
4626
|
*/
|
|
4377
|
-
export
|
|
4378
|
-
name: "HsmConfigurationQuotaExceededFault";
|
|
4379
|
-
$fault: "client";
|
|
4380
|
-
|
|
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>);
|
|
4381
4634
|
}
|
|
4382
4635
|
/**
|
|
4383
4636
|
* <p>Describes a pause cluster operation. For example, a scheduled action to run the <code>PauseCluster</code> API operation. </p>
|
|
@@ -4525,18 +4778,24 @@ export declare namespace CreateScheduledActionMessage {
|
|
|
4525
4778
|
/**
|
|
4526
4779
|
* <p>The scheduled action is not valid. </p>
|
|
4527
4780
|
*/
|
|
4528
|
-
export
|
|
4529
|
-
name: "InvalidScheduledActionFault";
|
|
4530
|
-
$fault: "client";
|
|
4531
|
-
|
|
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>);
|
|
4532
4788
|
}
|
|
4533
4789
|
/**
|
|
4534
4790
|
* <p>The schedule you submitted isn't valid.</p>
|
|
4535
4791
|
*/
|
|
4536
|
-
export
|
|
4537
|
-
name: "InvalidScheduleFault";
|
|
4538
|
-
$fault: "client";
|
|
4539
|
-
|
|
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>);
|
|
4540
4799
|
}
|
|
4541
4800
|
export declare enum ScheduledActionState {
|
|
4542
4801
|
ACTIVE = "ACTIVE",
|
|
@@ -4607,26 +4866,35 @@ export declare namespace ScheduledAction {
|
|
|
4607
4866
|
/**
|
|
4608
4867
|
* <p>The scheduled action already exists. </p>
|
|
4609
4868
|
*/
|
|
4610
|
-
export
|
|
4611
|
-
name: "ScheduledActionAlreadyExistsFault";
|
|
4612
|
-
$fault: "client";
|
|
4613
|
-
|
|
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>);
|
|
4614
4876
|
}
|
|
4615
4877
|
/**
|
|
4616
4878
|
* <p>The quota for scheduled actions exceeded. </p>
|
|
4617
4879
|
*/
|
|
4618
|
-
export
|
|
4619
|
-
name: "ScheduledActionQuotaExceededFault";
|
|
4620
|
-
$fault: "client";
|
|
4621
|
-
|
|
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>);
|
|
4622
4887
|
}
|
|
4623
4888
|
/**
|
|
4624
4889
|
* <p>The action type specified for a scheduled action is not supported. </p>
|
|
4625
4890
|
*/
|
|
4626
|
-
export
|
|
4627
|
-
name: "ScheduledActionTypeUnsupportedFault";
|
|
4628
|
-
$fault: "client";
|
|
4629
|
-
|
|
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>);
|
|
4630
4898
|
}
|
|
4631
4899
|
/**
|
|
4632
4900
|
* <p>The result of the <code>CreateSnapshotCopyGrant</code> action.</p>
|
|
@@ -4656,7 +4924,7 @@ export interface CreateSnapshotCopyGrantMessage {
|
|
|
4656
4924
|
*/
|
|
4657
4925
|
SnapshotCopyGrantName: string | undefined;
|
|
4658
4926
|
/**
|
|
4659
|
-
* <p>The unique identifier of the
|
|
4927
|
+
* <p>The unique identifier of the encrypted symmetric key to which to grant Amazon Redshift
|
|
4660
4928
|
* permission. If no key is specified, the default key is used.</p>
|
|
4661
4929
|
*/
|
|
4662
4930
|
KmsKeyId?: string;
|
|
@@ -4673,7 +4941,7 @@ export declare namespace CreateSnapshotCopyGrantMessage {
|
|
|
4673
4941
|
}
|
|
4674
4942
|
/**
|
|
4675
4943
|
* <p>The snapshot copy grant that grants Amazon Redshift permission to encrypt copied
|
|
4676
|
-
* snapshots with the specified
|
|
4944
|
+
* snapshots with the specified encrypted symmetric key from Amazon Web Services KMS in the destination
|
|
4677
4945
|
* region.</p>
|
|
4678
4946
|
* <p>
|
|
4679
4947
|
* For more information about managing snapshot copy grants, go to
|
|
@@ -4687,7 +4955,7 @@ export interface SnapshotCopyGrant {
|
|
|
4687
4955
|
*/
|
|
4688
4956
|
SnapshotCopyGrantName?: string;
|
|
4689
4957
|
/**
|
|
4690
|
-
* <p>The unique identifier of the
|
|
4958
|
+
* <p>The unique identifier of the encrypted symmetric key in Amazon Web Services KMS to which
|
|
4691
4959
|
* Amazon Redshift is granted permission.</p>
|
|
4692
4960
|
*/
|
|
4693
4961
|
KmsKeyId?: string;
|
|
@@ -4705,7 +4973,7 @@ export declare namespace SnapshotCopyGrant {
|
|
|
4705
4973
|
export interface CreateSnapshotCopyGrantResult {
|
|
4706
4974
|
/**
|
|
4707
4975
|
* <p>The snapshot copy grant that grants Amazon Redshift permission to encrypt copied
|
|
4708
|
-
* snapshots with the specified
|
|
4976
|
+
* snapshots with the specified encrypted symmetric key from Amazon Web Services KMS in the destination
|
|
4709
4977
|
* region.</p>
|
|
4710
4978
|
* <p>
|
|
4711
4979
|
* For more information about managing snapshot copy grants, go to
|
|
@@ -4725,19 +4993,25 @@ export declare namespace CreateSnapshotCopyGrantResult {
|
|
|
4725
4993
|
* <p>The snapshot copy grant can't be created because a grant with the same name already
|
|
4726
4994
|
* exists.</p>
|
|
4727
4995
|
*/
|
|
4728
|
-
export
|
|
4729
|
-
name: "SnapshotCopyGrantAlreadyExistsFault";
|
|
4730
|
-
$fault: "client";
|
|
4731
|
-
|
|
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>);
|
|
4732
5003
|
}
|
|
4733
5004
|
/**
|
|
4734
5005
|
* <p>The Amazon Web Services account has exceeded the maximum number of snapshot copy grants in this
|
|
4735
5006
|
* region.</p>
|
|
4736
5007
|
*/
|
|
4737
|
-
export
|
|
4738
|
-
name: "SnapshotCopyGrantQuotaExceededFault";
|
|
4739
|
-
$fault: "client";
|
|
4740
|
-
|
|
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>);
|
|
4741
5015
|
}
|
|
4742
5016
|
export interface CreateSnapshotScheduleMessage {
|
|
4743
5017
|
/**
|
|
@@ -4776,10 +5050,13 @@ export declare namespace CreateSnapshotScheduleMessage {
|
|
|
4776
5050
|
/**
|
|
4777
5051
|
* <p>The definition you submitted is not supported.</p>
|
|
4778
5052
|
*/
|
|
4779
|
-
export
|
|
4780
|
-
name: "ScheduleDefinitionTypeUnsupportedFault";
|
|
4781
|
-
$fault: "client";
|
|
4782
|
-
|
|
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>);
|
|
4783
5060
|
}
|
|
4784
5061
|
/**
|
|
4785
5062
|
* <p>Describes a snapshot schedule. You can set a regular interval for creating
|
|
@@ -4824,18 +5101,24 @@ export declare namespace SnapshotSchedule {
|
|
|
4824
5101
|
/**
|
|
4825
5102
|
* <p>The specified snapshot schedule already exists. </p>
|
|
4826
5103
|
*/
|
|
4827
|
-
export
|
|
4828
|
-
name: "SnapshotScheduleAlreadyExistsFault";
|
|
4829
|
-
$fault: "client";
|
|
4830
|
-
|
|
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>);
|
|
4831
5111
|
}
|
|
4832
5112
|
/**
|
|
4833
5113
|
* <p>You have exceeded the quota of snapshot schedules. </p>
|
|
4834
5114
|
*/
|
|
4835
|
-
export
|
|
4836
|
-
name: "SnapshotScheduleQuotaExceededFault";
|
|
4837
|
-
$fault: "client";
|
|
4838
|
-
|
|
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>);
|
|
4839
5122
|
}
|
|
4840
5123
|
/**
|
|
4841
5124
|
* <p>Contains the output from the <code>CreateTags</code> action. </p>
|
|
@@ -4865,10 +5148,13 @@ export declare namespace CreateTagsMessage {
|
|
|
4865
5148
|
/**
|
|
4866
5149
|
* <p>The resource could not be found.</p>
|
|
4867
5150
|
*/
|
|
4868
|
-
export
|
|
4869
|
-
name: "ResourceNotFoundFault";
|
|
4870
|
-
$fault: "client";
|
|
4871
|
-
|
|
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>);
|
|
4872
5158
|
}
|
|
4873
5159
|
export declare enum UsageLimitBreachAction {
|
|
4874
5160
|
DISABLE = "disable",
|
|
@@ -4877,6 +5163,7 @@ export declare enum UsageLimitBreachAction {
|
|
|
4877
5163
|
}
|
|
4878
5164
|
export declare enum UsageLimitFeatureType {
|
|
4879
5165
|
CONCURRENCY_SCALING = "concurrency-scaling",
|
|
5166
|
+
CROSS_REGION_DATASHARING = "cross-region-datasharing",
|
|
4880
5167
|
SPECTRUM = "spectrum"
|
|
4881
5168
|
}
|
|
4882
5169
|
export declare enum UsageLimitLimitType {
|
|
@@ -4901,6 +5188,7 @@ export interface CreateUsageLimitMessage {
|
|
|
4901
5188
|
* <p>The type of limit. Depending on the feature type, this can be based on a time duration or data size.
|
|
4902
5189
|
* If <code>FeatureType</code> is <code>spectrum</code>, then <code>LimitType</code> must be <code>data-scanned</code>.
|
|
4903
5190
|
* If <code>FeatureType</code> is <code>concurrency-scaling</code>, then <code>LimitType</code> must be <code>time</code>.
|
|
5191
|
+
* If <code>FeatureType</code> is <code>cross-region-datasharing</code>, then <code>LimitType</code> must be <code>data-scanned</code>.
|
|
4904
5192
|
* </p>
|
|
4905
5193
|
*/
|
|
4906
5194
|
LimitType: UsageLimitLimitType | string | undefined;
|
|
@@ -4934,10 +5222,13 @@ export declare namespace CreateUsageLimitMessage {
|
|
|
4934
5222
|
/**
|
|
4935
5223
|
* <p>The usage limit is not valid.</p>
|
|
4936
5224
|
*/
|
|
4937
|
-
export
|
|
4938
|
-
name: "InvalidUsageLimitFault";
|
|
4939
|
-
$fault: "client";
|
|
4940
|
-
|
|
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>);
|
|
4941
5232
|
}
|
|
4942
5233
|
/**
|
|
4943
5234
|
* <p>Describes a usage limit object for a cluster. </p>
|
|
@@ -4999,10 +5290,13 @@ export declare namespace UsageLimit {
|
|
|
4999
5290
|
/**
|
|
5000
5291
|
* <p>The usage limit already exists. </p>
|
|
5001
5292
|
*/
|
|
5002
|
-
export
|
|
5003
|
-
name: "UsageLimitAlreadyExistsFault";
|
|
5004
|
-
$fault: "client";
|
|
5005
|
-
|
|
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>);
|
|
5006
5300
|
}
|
|
5007
5301
|
export interface CustomerStorageMessage {
|
|
5008
5302
|
/**
|
|
@@ -5210,10 +5504,13 @@ export declare namespace DeleteClusterParameterGroupMessage {
|
|
|
5210
5504
|
* progress that involves the parameter group. Wait a few moments and try the operation
|
|
5211
5505
|
* again.</p>
|
|
5212
5506
|
*/
|
|
5213
|
-
export
|
|
5214
|
-
name: "InvalidClusterParameterGroupStateFault";
|
|
5215
|
-
$fault: "client";
|
|
5216
|
-
|
|
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>);
|
|
5217
5514
|
}
|
|
5218
5515
|
/**
|
|
5219
5516
|
* <p></p>
|
|
@@ -5260,10 +5557,13 @@ export declare namespace DeleteClusterSubnetGroupMessage {
|
|
|
5260
5557
|
/**
|
|
5261
5558
|
* <p>The state of the subnet is invalid.</p>
|
|
5262
5559
|
*/
|
|
5263
|
-
export
|
|
5264
|
-
name: "InvalidClusterSubnetStateFault";
|
|
5265
|
-
$fault: "client";
|
|
5266
|
-
|
|
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>);
|
|
5267
5567
|
}
|
|
5268
5568
|
export interface DeleteEndpointAccessMessage {
|
|
5269
5569
|
/**
|
|
@@ -5280,18 +5580,24 @@ export declare namespace DeleteEndpointAccessMessage {
|
|
|
5280
5580
|
/**
|
|
5281
5581
|
* <p>The endpoint name doesn't refer to an existing endpoint.</p>
|
|
5282
5582
|
*/
|
|
5283
|
-
export
|
|
5284
|
-
name: "EndpointNotFoundFault";
|
|
5285
|
-
$fault: "client";
|
|
5286
|
-
|
|
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>);
|
|
5287
5590
|
}
|
|
5288
5591
|
/**
|
|
5289
5592
|
* <p>The status of the endpoint is not valid.</p>
|
|
5290
5593
|
*/
|
|
5291
|
-
export
|
|
5292
|
-
name: "InvalidEndpointStateFault";
|
|
5293
|
-
$fault: "client";
|
|
5294
|
-
|
|
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>);
|
|
5295
5601
|
}
|
|
5296
5602
|
/**
|
|
5297
5603
|
* <p></p>
|
|
@@ -5312,19 +5618,25 @@ export declare namespace DeleteEventSubscriptionMessage {
|
|
|
5312
5618
|
* <p>The subscription request is invalid because it is a duplicate request. This
|
|
5313
5619
|
* subscription request is already in progress.</p>
|
|
5314
5620
|
*/
|
|
5315
|
-
export
|
|
5316
|
-
name: "InvalidSubscriptionStateFault";
|
|
5317
|
-
$fault: "client";
|
|
5318
|
-
|
|
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>);
|
|
5319
5628
|
}
|
|
5320
5629
|
/**
|
|
5321
5630
|
* <p>An Amazon Redshift event notification subscription with the specified name does not
|
|
5322
5631
|
* exist.</p>
|
|
5323
5632
|
*/
|
|
5324
|
-
export
|
|
5325
|
-
name: "SubscriptionNotFoundFault";
|
|
5326
|
-
$fault: "client";
|
|
5327
|
-
|
|
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>);
|
|
5328
5640
|
}
|
|
5329
5641
|
/**
|
|
5330
5642
|
* <p></p>
|
|
@@ -5345,10 +5657,13 @@ export declare namespace DeleteHsmClientCertificateMessage {
|
|
|
5345
5657
|
* <p>The specified HSM client certificate is not in the <code>available</code> state, or
|
|
5346
5658
|
* it is still in use by one or more Amazon Redshift clusters.</p>
|
|
5347
5659
|
*/
|
|
5348
|
-
export
|
|
5349
|
-
name: "InvalidHsmClientCertificateStateFault";
|
|
5350
|
-
$fault: "client";
|
|
5351
|
-
|
|
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>);
|
|
5352
5667
|
}
|
|
5353
5668
|
/**
|
|
5354
5669
|
* <p></p>
|
|
@@ -5369,10 +5684,13 @@ export declare namespace DeleteHsmConfigurationMessage {
|
|
|
5369
5684
|
* <p>The specified HSM configuration is not in the <code>available</code> state, or it
|
|
5370
5685
|
* is still in use by one or more Amazon Redshift clusters.</p>
|
|
5371
5686
|
*/
|
|
5372
|
-
export
|
|
5373
|
-
name: "InvalidHsmConfigurationStateFault";
|
|
5374
|
-
$fault: "client";
|
|
5375
|
-
|
|
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>);
|
|
5376
5694
|
}
|
|
5377
5695
|
export interface DeleteScheduledActionMessage {
|
|
5378
5696
|
/**
|
|
@@ -5389,10 +5707,13 @@ export declare namespace DeleteScheduledActionMessage {
|
|
|
5389
5707
|
/**
|
|
5390
5708
|
* <p>The scheduled action cannot be found. </p>
|
|
5391
5709
|
*/
|
|
5392
|
-
export
|
|
5393
|
-
name: "ScheduledActionNotFoundFault";
|
|
5394
|
-
$fault: "client";
|
|
5395
|
-
|
|
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>);
|
|
5396
5717
|
}
|
|
5397
5718
|
/**
|
|
5398
5719
|
* <p>The result of the <code>DeleteSnapshotCopyGrant</code> action.</p>
|
|
@@ -5413,19 +5734,25 @@ export declare namespace DeleteSnapshotCopyGrantMessage {
|
|
|
5413
5734
|
* <p>The snapshot copy grant can't be deleted because it is used by one or more
|
|
5414
5735
|
* clusters.</p>
|
|
5415
5736
|
*/
|
|
5416
|
-
export
|
|
5417
|
-
name: "InvalidSnapshotCopyGrantStateFault";
|
|
5418
|
-
$fault: "client";
|
|
5419
|
-
|
|
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>);
|
|
5420
5744
|
}
|
|
5421
5745
|
/**
|
|
5422
5746
|
* <p>The specified snapshot copy grant can't be found. Make sure that the name is typed
|
|
5423
5747
|
* correctly and that the grant exists in the destination region.</p>
|
|
5424
5748
|
*/
|
|
5425
|
-
export
|
|
5426
|
-
name: "SnapshotCopyGrantNotFoundFault";
|
|
5427
|
-
$fault: "client";
|
|
5428
|
-
|
|
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>);
|
|
5429
5756
|
}
|
|
5430
5757
|
export interface DeleteSnapshotScheduleMessage {
|
|
5431
5758
|
/**
|
|
@@ -5442,10 +5769,13 @@ export declare namespace DeleteSnapshotScheduleMessage {
|
|
|
5442
5769
|
/**
|
|
5443
5770
|
* <p>The cluster snapshot schedule state is not valid.</p>
|
|
5444
5771
|
*/
|
|
5445
|
-
export
|
|
5446
|
-
name: "InvalidClusterSnapshotScheduleStateFault";
|
|
5447
|
-
$fault: "client";
|
|
5448
|
-
|
|
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>);
|
|
5449
5779
|
}
|
|
5450
5780
|
/**
|
|
5451
5781
|
* <p>Contains the output from the <code>DeleteTags</code> action. </p>
|
|
@@ -5482,10 +5812,13 @@ export declare namespace DeleteUsageLimitMessage {
|
|
|
5482
5812
|
/**
|
|
5483
5813
|
* <p>The usage limit identifier can't be found.</p>
|
|
5484
5814
|
*/
|
|
5485
|
-
export
|
|
5486
|
-
name: "UsageLimitNotFoundFault";
|
|
5487
|
-
$fault: "client";
|
|
5488
|
-
|
|
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>);
|
|
5489
5822
|
}
|
|
5490
5823
|
export interface DescribeAccountAttributesMessage {
|
|
5491
5824
|
/**
|