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