@aws-sdk/client-neptune 3.933.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +18 -17
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +17 -0
- package/dist-es/models/errors.js +805 -0
- package/dist-es/models/models_0.js +1 -822
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +41 -0
- package/dist-types/models/errors.d.ts +831 -0
- package/dist-types/models/models_0.d.ts +1 -872
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +21 -0
- package/dist-types/ts3.4/models/errors.d.ts +545 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -566
- package/package.json +13 -13
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,831 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { NeptuneServiceException as __BaseException } from "./NeptuneServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>
|
|
5
|
+
* <i>DBClusterIdentifier</i> does not refer to an existing DB cluster.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class DBClusterNotFoundFault extends __BaseException {
|
|
9
|
+
readonly name: "DBClusterNotFoundFault";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<DBClusterNotFoundFault, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>The specified IAM role Amazon Resource Name (ARN) is already associated with the specified DB cluster.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class DBClusterRoleAlreadyExistsFault extends __BaseException {
|
|
21
|
+
readonly name: "DBClusterRoleAlreadyExistsFault";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
/**
|
|
24
|
+
* @internal
|
|
25
|
+
*/
|
|
26
|
+
constructor(opts: __ExceptionOptionType<DBClusterRoleAlreadyExistsFault, __BaseException>);
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* <p>You have exceeded the maximum number of IAM roles that can be associated with the specified DB cluster.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export declare class DBClusterRoleQuotaExceededFault extends __BaseException {
|
|
33
|
+
readonly name: "DBClusterRoleQuotaExceededFault";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
constructor(opts: __ExceptionOptionType<DBClusterRoleQuotaExceededFault, __BaseException>);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* <p>The DB cluster is not in a valid state.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export declare class InvalidDBClusterStateFault extends __BaseException {
|
|
45
|
+
readonly name: "InvalidDBClusterStateFault";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
/**
|
|
48
|
+
* @internal
|
|
49
|
+
*/
|
|
50
|
+
constructor(opts: __ExceptionOptionType<InvalidDBClusterStateFault, __BaseException>);
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* <p>The source could not be found.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export declare class SourceNotFoundFault extends __BaseException {
|
|
57
|
+
readonly name: "SourceNotFoundFault";
|
|
58
|
+
readonly $fault: "client";
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
constructor(opts: __ExceptionOptionType<SourceNotFoundFault, __BaseException>);
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* <p>The designated subscription could not be found.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export declare class SubscriptionNotFoundFault extends __BaseException {
|
|
69
|
+
readonly name: "SubscriptionNotFoundFault";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
74
|
+
constructor(opts: __ExceptionOptionType<SubscriptionNotFoundFault, __BaseException>);
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* <p>
|
|
78
|
+
* <i>DBInstanceIdentifier</i> does not refer to an existing DB instance.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export declare class DBInstanceNotFoundFault extends __BaseException {
|
|
82
|
+
readonly name: "DBInstanceNotFoundFault";
|
|
83
|
+
readonly $fault: "client";
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
87
|
+
constructor(opts: __ExceptionOptionType<DBInstanceNotFoundFault, __BaseException>);
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* <p>
|
|
91
|
+
* <i>DBSnapshotIdentifier</i> does not refer to an existing DB snapshot.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
export declare class DBSnapshotNotFoundFault extends __BaseException {
|
|
95
|
+
readonly name: "DBSnapshotNotFoundFault";
|
|
96
|
+
readonly $fault: "client";
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
100
|
+
constructor(opts: __ExceptionOptionType<DBSnapshotNotFoundFault, __BaseException>);
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* <p>The specified resource ID was not found.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
export declare class ResourceNotFoundFault extends __BaseException {
|
|
107
|
+
readonly name: "ResourceNotFoundFault";
|
|
108
|
+
readonly $fault: "client";
|
|
109
|
+
/**
|
|
110
|
+
* @internal
|
|
111
|
+
*/
|
|
112
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundFault, __BaseException>);
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* <p>A DB parameter group with the same name exists.</p>
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export declare class DBParameterGroupAlreadyExistsFault extends __BaseException {
|
|
119
|
+
readonly name: "DBParameterGroupAlreadyExistsFault";
|
|
120
|
+
readonly $fault: "client";
|
|
121
|
+
/**
|
|
122
|
+
* @internal
|
|
123
|
+
*/
|
|
124
|
+
constructor(opts: __ExceptionOptionType<DBParameterGroupAlreadyExistsFault, __BaseException>);
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* <p>
|
|
128
|
+
* <i>DBParameterGroupName</i> does not refer to an
|
|
129
|
+
* existing DB parameter group.</p>
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
export declare class DBParameterGroupNotFoundFault extends __BaseException {
|
|
133
|
+
readonly name: "DBParameterGroupNotFoundFault";
|
|
134
|
+
readonly $fault: "client";
|
|
135
|
+
/**
|
|
136
|
+
* @internal
|
|
137
|
+
*/
|
|
138
|
+
constructor(opts: __ExceptionOptionType<DBParameterGroupNotFoundFault, __BaseException>);
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* <p>Request would result in user exceeding the allowed number of DB parameter groups.</p>
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
export declare class DBParameterGroupQuotaExceededFault extends __BaseException {
|
|
145
|
+
readonly name: "DBParameterGroupQuotaExceededFault";
|
|
146
|
+
readonly $fault: "client";
|
|
147
|
+
/**
|
|
148
|
+
* @internal
|
|
149
|
+
*/
|
|
150
|
+
constructor(opts: __ExceptionOptionType<DBParameterGroupQuotaExceededFault, __BaseException>);
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
* <p>User already has a DB cluster snapshot with the given identifier.</p>
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
export declare class DBClusterSnapshotAlreadyExistsFault extends __BaseException {
|
|
157
|
+
readonly name: "DBClusterSnapshotAlreadyExistsFault";
|
|
158
|
+
readonly $fault: "client";
|
|
159
|
+
/**
|
|
160
|
+
* @internal
|
|
161
|
+
*/
|
|
162
|
+
constructor(opts: __ExceptionOptionType<DBClusterSnapshotAlreadyExistsFault, __BaseException>);
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* <p>
|
|
166
|
+
* <i>DBClusterSnapshotIdentifier</i> does not refer to an existing
|
|
167
|
+
* DB cluster snapshot.</p>
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
export declare class DBClusterSnapshotNotFoundFault extends __BaseException {
|
|
171
|
+
readonly name: "DBClusterSnapshotNotFoundFault";
|
|
172
|
+
readonly $fault: "client";
|
|
173
|
+
/**
|
|
174
|
+
* @internal
|
|
175
|
+
*/
|
|
176
|
+
constructor(opts: __ExceptionOptionType<DBClusterSnapshotNotFoundFault, __BaseException>);
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* <p>The supplied value is not a valid DB cluster snapshot state.</p>
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
182
|
+
export declare class InvalidDBClusterSnapshotStateFault extends __BaseException {
|
|
183
|
+
readonly name: "InvalidDBClusterSnapshotStateFault";
|
|
184
|
+
readonly $fault: "client";
|
|
185
|
+
/**
|
|
186
|
+
* @internal
|
|
187
|
+
*/
|
|
188
|
+
constructor(opts: __ExceptionOptionType<InvalidDBClusterSnapshotStateFault, __BaseException>);
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* <p>Error accessing KMS key.</p>
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
194
|
+
export declare class KMSKeyNotAccessibleFault extends __BaseException {
|
|
195
|
+
readonly name: "KMSKeyNotAccessibleFault";
|
|
196
|
+
readonly $fault: "client";
|
|
197
|
+
/**
|
|
198
|
+
* @internal
|
|
199
|
+
*/
|
|
200
|
+
constructor(opts: __ExceptionOptionType<KMSKeyNotAccessibleFault, __BaseException>);
|
|
201
|
+
}
|
|
202
|
+
/**
|
|
203
|
+
* <p>Request would result in user exceeding the allowed number of DB snapshots.</p>
|
|
204
|
+
* @public
|
|
205
|
+
*/
|
|
206
|
+
export declare class SnapshotQuotaExceededFault extends __BaseException {
|
|
207
|
+
readonly name: "SnapshotQuotaExceededFault";
|
|
208
|
+
readonly $fault: "client";
|
|
209
|
+
/**
|
|
210
|
+
* @internal
|
|
211
|
+
*/
|
|
212
|
+
constructor(opts: __ExceptionOptionType<SnapshotQuotaExceededFault, __BaseException>);
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* <p>User already has a DB cluster with the given identifier.</p>
|
|
216
|
+
* @public
|
|
217
|
+
*/
|
|
218
|
+
export declare class DBClusterAlreadyExistsFault extends __BaseException {
|
|
219
|
+
readonly name: "DBClusterAlreadyExistsFault";
|
|
220
|
+
readonly $fault: "client";
|
|
221
|
+
/**
|
|
222
|
+
* @internal
|
|
223
|
+
*/
|
|
224
|
+
constructor(opts: __ExceptionOptionType<DBClusterAlreadyExistsFault, __BaseException>);
|
|
225
|
+
}
|
|
226
|
+
/**
|
|
227
|
+
* <p>
|
|
228
|
+
* <i>DBClusterParameterGroupName</i> does not refer to an
|
|
229
|
+
* existing DB Cluster parameter group.</p>
|
|
230
|
+
* @public
|
|
231
|
+
*/
|
|
232
|
+
export declare class DBClusterParameterGroupNotFoundFault extends __BaseException {
|
|
233
|
+
readonly name: "DBClusterParameterGroupNotFoundFault";
|
|
234
|
+
readonly $fault: "client";
|
|
235
|
+
/**
|
|
236
|
+
* @internal
|
|
237
|
+
*/
|
|
238
|
+
constructor(opts: __ExceptionOptionType<DBClusterParameterGroupNotFoundFault, __BaseException>);
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* <p>User attempted to create a new DB cluster and the user has already reached the maximum allowed DB cluster quota.</p>
|
|
242
|
+
* @public
|
|
243
|
+
*/
|
|
244
|
+
export declare class DBClusterQuotaExceededFault extends __BaseException {
|
|
245
|
+
readonly name: "DBClusterQuotaExceededFault";
|
|
246
|
+
readonly $fault: "client";
|
|
247
|
+
/**
|
|
248
|
+
* @internal
|
|
249
|
+
*/
|
|
250
|
+
constructor(opts: __ExceptionOptionType<DBClusterQuotaExceededFault, __BaseException>);
|
|
251
|
+
}
|
|
252
|
+
/**
|
|
253
|
+
* <p>Subnets in the DB subnet group should cover at least two Availability
|
|
254
|
+
* Zones unless there is only one Availability Zone.</p>
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
export declare class DBSubnetGroupDoesNotCoverEnoughAZs extends __BaseException {
|
|
258
|
+
readonly name: "DBSubnetGroupDoesNotCoverEnoughAZs";
|
|
259
|
+
readonly $fault: "client";
|
|
260
|
+
/**
|
|
261
|
+
* @internal
|
|
262
|
+
*/
|
|
263
|
+
constructor(opts: __ExceptionOptionType<DBSubnetGroupDoesNotCoverEnoughAZs, __BaseException>);
|
|
264
|
+
}
|
|
265
|
+
/**
|
|
266
|
+
* <p>
|
|
267
|
+
* <i>DBSubnetGroupName</i> does not refer to an
|
|
268
|
+
* existing DB subnet group.</p>
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
271
|
+
export declare class DBSubnetGroupNotFoundFault extends __BaseException {
|
|
272
|
+
readonly name: "DBSubnetGroupNotFoundFault";
|
|
273
|
+
readonly $fault: "client";
|
|
274
|
+
/**
|
|
275
|
+
* @internal
|
|
276
|
+
*/
|
|
277
|
+
constructor(opts: __ExceptionOptionType<DBSubnetGroupNotFoundFault, __BaseException>);
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* <p>The <code>GlobalClusterIdentifier</code> doesn't refer to an existing global database cluster. </p>
|
|
281
|
+
* @public
|
|
282
|
+
*/
|
|
283
|
+
export declare class GlobalClusterNotFoundFault extends __BaseException {
|
|
284
|
+
readonly name: "GlobalClusterNotFoundFault";
|
|
285
|
+
readonly $fault: "client";
|
|
286
|
+
/**
|
|
287
|
+
* @internal
|
|
288
|
+
*/
|
|
289
|
+
constructor(opts: __ExceptionOptionType<GlobalClusterNotFoundFault, __BaseException>);
|
|
290
|
+
}
|
|
291
|
+
/**
|
|
292
|
+
* <p>There is insufficient storage available for the current action. You may
|
|
293
|
+
* be able to resolve this error by updating your subnet group to use different
|
|
294
|
+
* Availability Zones that have more storage available.</p>
|
|
295
|
+
* @public
|
|
296
|
+
*/
|
|
297
|
+
export declare class InsufficientStorageClusterCapacityFault extends __BaseException {
|
|
298
|
+
readonly name: "InsufficientStorageClusterCapacityFault";
|
|
299
|
+
readonly $fault: "client";
|
|
300
|
+
/**
|
|
301
|
+
* @internal
|
|
302
|
+
*/
|
|
303
|
+
constructor(opts: __ExceptionOptionType<InsufficientStorageClusterCapacityFault, __BaseException>);
|
|
304
|
+
}
|
|
305
|
+
/**
|
|
306
|
+
* <p>The specified DB instance is not in the <i>available</i> state.</p>
|
|
307
|
+
* @public
|
|
308
|
+
*/
|
|
309
|
+
export declare class InvalidDBInstanceStateFault extends __BaseException {
|
|
310
|
+
readonly name: "InvalidDBInstanceStateFault";
|
|
311
|
+
readonly $fault: "client";
|
|
312
|
+
/**
|
|
313
|
+
* @internal
|
|
314
|
+
*/
|
|
315
|
+
constructor(opts: __ExceptionOptionType<InvalidDBInstanceStateFault, __BaseException>);
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
* <p>The DB subnet group cannot be deleted because it is in use.</p>
|
|
319
|
+
* @public
|
|
320
|
+
*/
|
|
321
|
+
export declare class InvalidDBSubnetGroupStateFault extends __BaseException {
|
|
322
|
+
readonly name: "InvalidDBSubnetGroupStateFault";
|
|
323
|
+
readonly $fault: "client";
|
|
324
|
+
/**
|
|
325
|
+
* @internal
|
|
326
|
+
*/
|
|
327
|
+
constructor(opts: __ExceptionOptionType<InvalidDBSubnetGroupStateFault, __BaseException>);
|
|
328
|
+
}
|
|
329
|
+
/**
|
|
330
|
+
* <p>The global cluster is in an invalid state and can't perform the requested operation. </p>
|
|
331
|
+
* @public
|
|
332
|
+
*/
|
|
333
|
+
export declare class InvalidGlobalClusterStateFault extends __BaseException {
|
|
334
|
+
readonly name: "InvalidGlobalClusterStateFault";
|
|
335
|
+
readonly $fault: "client";
|
|
336
|
+
/**
|
|
337
|
+
* @internal
|
|
338
|
+
*/
|
|
339
|
+
constructor(opts: __ExceptionOptionType<InvalidGlobalClusterStateFault, __BaseException>);
|
|
340
|
+
}
|
|
341
|
+
/**
|
|
342
|
+
* <p>The requested subnet is invalid, or multiple subnets were requested that are
|
|
343
|
+
* not all in a common VPC.</p>
|
|
344
|
+
* @public
|
|
345
|
+
*/
|
|
346
|
+
export declare class InvalidSubnet extends __BaseException {
|
|
347
|
+
readonly name: "InvalidSubnet";
|
|
348
|
+
readonly $fault: "client";
|
|
349
|
+
/**
|
|
350
|
+
* @internal
|
|
351
|
+
*/
|
|
352
|
+
constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
|
|
353
|
+
}
|
|
354
|
+
/**
|
|
355
|
+
* <p>DB subnet group does not cover all Availability Zones after it is created
|
|
356
|
+
* because users' change.</p>
|
|
357
|
+
* @public
|
|
358
|
+
*/
|
|
359
|
+
export declare class InvalidVPCNetworkStateFault extends __BaseException {
|
|
360
|
+
readonly name: "InvalidVPCNetworkStateFault";
|
|
361
|
+
readonly $fault: "client";
|
|
362
|
+
/**
|
|
363
|
+
* @internal
|
|
364
|
+
*/
|
|
365
|
+
constructor(opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>);
|
|
366
|
+
}
|
|
367
|
+
/**
|
|
368
|
+
* <p>Request would result in user exceeding the allowed amount of storage available across all DB instances.</p>
|
|
369
|
+
* @public
|
|
370
|
+
*/
|
|
371
|
+
export declare class StorageQuotaExceededFault extends __BaseException {
|
|
372
|
+
readonly name: "StorageQuotaExceededFault";
|
|
373
|
+
readonly $fault: "client";
|
|
374
|
+
/**
|
|
375
|
+
* @internal
|
|
376
|
+
*/
|
|
377
|
+
constructor(opts: __ExceptionOptionType<StorageQuotaExceededFault, __BaseException>);
|
|
378
|
+
}
|
|
379
|
+
/**
|
|
380
|
+
* <p>The specified custom endpoint cannot be created because it already exists.</p>
|
|
381
|
+
* @public
|
|
382
|
+
*/
|
|
383
|
+
export declare class DBClusterEndpointAlreadyExistsFault extends __BaseException {
|
|
384
|
+
readonly name: "DBClusterEndpointAlreadyExistsFault";
|
|
385
|
+
readonly $fault: "client";
|
|
386
|
+
/**
|
|
387
|
+
* @internal
|
|
388
|
+
*/
|
|
389
|
+
constructor(opts: __ExceptionOptionType<DBClusterEndpointAlreadyExistsFault, __BaseException>);
|
|
390
|
+
}
|
|
391
|
+
/**
|
|
392
|
+
* <p>The cluster already has the maximum number of custom endpoints.</p>
|
|
393
|
+
* @public
|
|
394
|
+
*/
|
|
395
|
+
export declare class DBClusterEndpointQuotaExceededFault extends __BaseException {
|
|
396
|
+
readonly name: "DBClusterEndpointQuotaExceededFault";
|
|
397
|
+
readonly $fault: "client";
|
|
398
|
+
/**
|
|
399
|
+
* @internal
|
|
400
|
+
*/
|
|
401
|
+
constructor(opts: __ExceptionOptionType<DBClusterEndpointQuotaExceededFault, __BaseException>);
|
|
402
|
+
}
|
|
403
|
+
/**
|
|
404
|
+
* <p>Specified CIDRIP or EC2 security group is not authorized for the specified DB security group.</p>
|
|
405
|
+
* <p>Neptune may not also be authorized via IAM to perform necessary actions on your behalf.</p>
|
|
406
|
+
* @public
|
|
407
|
+
*/
|
|
408
|
+
export declare class AuthorizationNotFoundFault extends __BaseException {
|
|
409
|
+
readonly name: "AuthorizationNotFoundFault";
|
|
410
|
+
readonly $fault: "client";
|
|
411
|
+
/**
|
|
412
|
+
* @internal
|
|
413
|
+
*/
|
|
414
|
+
constructor(opts: __ExceptionOptionType<AuthorizationNotFoundFault, __BaseException>);
|
|
415
|
+
}
|
|
416
|
+
/**
|
|
417
|
+
* <p>User already has a DB instance with the given identifier.</p>
|
|
418
|
+
* @public
|
|
419
|
+
*/
|
|
420
|
+
export declare class DBInstanceAlreadyExistsFault extends __BaseException {
|
|
421
|
+
readonly name: "DBInstanceAlreadyExistsFault";
|
|
422
|
+
readonly $fault: "client";
|
|
423
|
+
/**
|
|
424
|
+
* @internal
|
|
425
|
+
*/
|
|
426
|
+
constructor(opts: __ExceptionOptionType<DBInstanceAlreadyExistsFault, __BaseException>);
|
|
427
|
+
}
|
|
428
|
+
/**
|
|
429
|
+
* <p>
|
|
430
|
+
* <i>DBSecurityGroupName</i> does not refer
|
|
431
|
+
* to an existing DB security group.</p>
|
|
432
|
+
* @public
|
|
433
|
+
*/
|
|
434
|
+
export declare class DBSecurityGroupNotFoundFault extends __BaseException {
|
|
435
|
+
readonly name: "DBSecurityGroupNotFoundFault";
|
|
436
|
+
readonly $fault: "client";
|
|
437
|
+
/**
|
|
438
|
+
* @internal
|
|
439
|
+
*/
|
|
440
|
+
constructor(opts: __ExceptionOptionType<DBSecurityGroupNotFoundFault, __BaseException>);
|
|
441
|
+
}
|
|
442
|
+
/**
|
|
443
|
+
* <p>
|
|
444
|
+
* <i>Domain</i> does not refer to an existing Active Directory Domain.</p>
|
|
445
|
+
* @public
|
|
446
|
+
*/
|
|
447
|
+
export declare class DomainNotFoundFault extends __BaseException {
|
|
448
|
+
readonly name: "DomainNotFoundFault";
|
|
449
|
+
readonly $fault: "client";
|
|
450
|
+
/**
|
|
451
|
+
* @internal
|
|
452
|
+
*/
|
|
453
|
+
constructor(opts: __ExceptionOptionType<DomainNotFoundFault, __BaseException>);
|
|
454
|
+
}
|
|
455
|
+
/**
|
|
456
|
+
* <p>Request would result in user exceeding the allowed number of DB instances.</p>
|
|
457
|
+
* @public
|
|
458
|
+
*/
|
|
459
|
+
export declare class InstanceQuotaExceededFault extends __BaseException {
|
|
460
|
+
readonly name: "InstanceQuotaExceededFault";
|
|
461
|
+
readonly $fault: "client";
|
|
462
|
+
/**
|
|
463
|
+
* @internal
|
|
464
|
+
*/
|
|
465
|
+
constructor(opts: __ExceptionOptionType<InstanceQuotaExceededFault, __BaseException>);
|
|
466
|
+
}
|
|
467
|
+
/**
|
|
468
|
+
* <p>Specified DB instance class is not available in the specified Availability Zone.</p>
|
|
469
|
+
* @public
|
|
470
|
+
*/
|
|
471
|
+
export declare class InsufficientDBInstanceCapacityFault extends __BaseException {
|
|
472
|
+
readonly name: "InsufficientDBInstanceCapacityFault";
|
|
473
|
+
readonly $fault: "client";
|
|
474
|
+
/**
|
|
475
|
+
* @internal
|
|
476
|
+
*/
|
|
477
|
+
constructor(opts: __ExceptionOptionType<InsufficientDBInstanceCapacityFault, __BaseException>);
|
|
478
|
+
}
|
|
479
|
+
/**
|
|
480
|
+
* <p>The designated option group could not be found.</p>
|
|
481
|
+
* @public
|
|
482
|
+
*/
|
|
483
|
+
export declare class OptionGroupNotFoundFault extends __BaseException {
|
|
484
|
+
readonly name: "OptionGroupNotFoundFault";
|
|
485
|
+
readonly $fault: "client";
|
|
486
|
+
/**
|
|
487
|
+
* @internal
|
|
488
|
+
*/
|
|
489
|
+
constructor(opts: __ExceptionOptionType<OptionGroupNotFoundFault, __BaseException>);
|
|
490
|
+
}
|
|
491
|
+
/**
|
|
492
|
+
* <p>Provisioned IOPS not available in the specified Availability Zone.</p>
|
|
493
|
+
* @public
|
|
494
|
+
*/
|
|
495
|
+
export declare class ProvisionedIopsNotAvailableInAZFault extends __BaseException {
|
|
496
|
+
readonly name: "ProvisionedIopsNotAvailableInAZFault";
|
|
497
|
+
readonly $fault: "client";
|
|
498
|
+
/**
|
|
499
|
+
* @internal
|
|
500
|
+
*/
|
|
501
|
+
constructor(opts: __ExceptionOptionType<ProvisionedIopsNotAvailableInAZFault, __BaseException>);
|
|
502
|
+
}
|
|
503
|
+
/**
|
|
504
|
+
* <p>
|
|
505
|
+
* <i>StorageType</i> specified cannot be associated with the DB Instance.</p>
|
|
506
|
+
* @public
|
|
507
|
+
*/
|
|
508
|
+
export declare class StorageTypeNotSupportedFault extends __BaseException {
|
|
509
|
+
readonly name: "StorageTypeNotSupportedFault";
|
|
510
|
+
readonly $fault: "client";
|
|
511
|
+
/**
|
|
512
|
+
* @internal
|
|
513
|
+
*/
|
|
514
|
+
constructor(opts: __ExceptionOptionType<StorageTypeNotSupportedFault, __BaseException>);
|
|
515
|
+
}
|
|
516
|
+
/**
|
|
517
|
+
* <p>
|
|
518
|
+
* <i>DBSubnetGroupName</i> is already used by an existing DB subnet group.</p>
|
|
519
|
+
* @public
|
|
520
|
+
*/
|
|
521
|
+
export declare class DBSubnetGroupAlreadyExistsFault extends __BaseException {
|
|
522
|
+
readonly name: "DBSubnetGroupAlreadyExistsFault";
|
|
523
|
+
readonly $fault: "client";
|
|
524
|
+
/**
|
|
525
|
+
* @internal
|
|
526
|
+
*/
|
|
527
|
+
constructor(opts: __ExceptionOptionType<DBSubnetGroupAlreadyExistsFault, __BaseException>);
|
|
528
|
+
}
|
|
529
|
+
/**
|
|
530
|
+
* <p>Request would result in user exceeding the allowed number of DB subnet groups.</p>
|
|
531
|
+
* @public
|
|
532
|
+
*/
|
|
533
|
+
export declare class DBSubnetGroupQuotaExceededFault extends __BaseException {
|
|
534
|
+
readonly name: "DBSubnetGroupQuotaExceededFault";
|
|
535
|
+
readonly $fault: "client";
|
|
536
|
+
/**
|
|
537
|
+
* @internal
|
|
538
|
+
*/
|
|
539
|
+
constructor(opts: __ExceptionOptionType<DBSubnetGroupQuotaExceededFault, __BaseException>);
|
|
540
|
+
}
|
|
541
|
+
/**
|
|
542
|
+
* <p>Request would result in user exceeding the allowed number of subnets in a DB subnet groups.</p>
|
|
543
|
+
* @public
|
|
544
|
+
*/
|
|
545
|
+
export declare class DBSubnetQuotaExceededFault extends __BaseException {
|
|
546
|
+
readonly name: "DBSubnetQuotaExceededFault";
|
|
547
|
+
readonly $fault: "client";
|
|
548
|
+
/**
|
|
549
|
+
* @internal
|
|
550
|
+
*/
|
|
551
|
+
constructor(opts: __ExceptionOptionType<DBSubnetQuotaExceededFault, __BaseException>);
|
|
552
|
+
}
|
|
553
|
+
/**
|
|
554
|
+
* <p>You have exceeded the number of events you can subscribe to.</p>
|
|
555
|
+
* @public
|
|
556
|
+
*/
|
|
557
|
+
export declare class EventSubscriptionQuotaExceededFault extends __BaseException {
|
|
558
|
+
readonly name: "EventSubscriptionQuotaExceededFault";
|
|
559
|
+
readonly $fault: "client";
|
|
560
|
+
/**
|
|
561
|
+
* @internal
|
|
562
|
+
*/
|
|
563
|
+
constructor(opts: __ExceptionOptionType<EventSubscriptionQuotaExceededFault, __BaseException>);
|
|
564
|
+
}
|
|
565
|
+
/**
|
|
566
|
+
* <p>The SNS topic is invalid.</p>
|
|
567
|
+
* @public
|
|
568
|
+
*/
|
|
569
|
+
export declare class SNSInvalidTopicFault extends __BaseException {
|
|
570
|
+
readonly name: "SNSInvalidTopicFault";
|
|
571
|
+
readonly $fault: "client";
|
|
572
|
+
/**
|
|
573
|
+
* @internal
|
|
574
|
+
*/
|
|
575
|
+
constructor(opts: __ExceptionOptionType<SNSInvalidTopicFault, __BaseException>);
|
|
576
|
+
}
|
|
577
|
+
/**
|
|
578
|
+
* <p>There is no SNS authorization.</p>
|
|
579
|
+
* @public
|
|
580
|
+
*/
|
|
581
|
+
export declare class SNSNoAuthorizationFault extends __BaseException {
|
|
582
|
+
readonly name: "SNSNoAuthorizationFault";
|
|
583
|
+
readonly $fault: "client";
|
|
584
|
+
/**
|
|
585
|
+
* @internal
|
|
586
|
+
*/
|
|
587
|
+
constructor(opts: __ExceptionOptionType<SNSNoAuthorizationFault, __BaseException>);
|
|
588
|
+
}
|
|
589
|
+
/**
|
|
590
|
+
* <p>The ARN of the SNS topic could not be found.</p>
|
|
591
|
+
* @public
|
|
592
|
+
*/
|
|
593
|
+
export declare class SNSTopicArnNotFoundFault extends __BaseException {
|
|
594
|
+
readonly name: "SNSTopicArnNotFoundFault";
|
|
595
|
+
readonly $fault: "client";
|
|
596
|
+
/**
|
|
597
|
+
* @internal
|
|
598
|
+
*/
|
|
599
|
+
constructor(opts: __ExceptionOptionType<SNSTopicArnNotFoundFault, __BaseException>);
|
|
600
|
+
}
|
|
601
|
+
/**
|
|
602
|
+
* <p>This subscription already exists.</p>
|
|
603
|
+
* @public
|
|
604
|
+
*/
|
|
605
|
+
export declare class SubscriptionAlreadyExistFault extends __BaseException {
|
|
606
|
+
readonly name: "SubscriptionAlreadyExistFault";
|
|
607
|
+
readonly $fault: "client";
|
|
608
|
+
/**
|
|
609
|
+
* @internal
|
|
610
|
+
*/
|
|
611
|
+
constructor(opts: __ExceptionOptionType<SubscriptionAlreadyExistFault, __BaseException>);
|
|
612
|
+
}
|
|
613
|
+
/**
|
|
614
|
+
* <p>The designated subscription category could not be found.</p>
|
|
615
|
+
* @public
|
|
616
|
+
*/
|
|
617
|
+
export declare class SubscriptionCategoryNotFoundFault extends __BaseException {
|
|
618
|
+
readonly name: "SubscriptionCategoryNotFoundFault";
|
|
619
|
+
readonly $fault: "client";
|
|
620
|
+
/**
|
|
621
|
+
* @internal
|
|
622
|
+
*/
|
|
623
|
+
constructor(opts: __ExceptionOptionType<SubscriptionCategoryNotFoundFault, __BaseException>);
|
|
624
|
+
}
|
|
625
|
+
/**
|
|
626
|
+
* <p>The <code>GlobalClusterIdentifier</code> already exists. Choose a new global database identifier (unique name) to create a new global database cluster.</p>
|
|
627
|
+
* @public
|
|
628
|
+
*/
|
|
629
|
+
export declare class GlobalClusterAlreadyExistsFault extends __BaseException {
|
|
630
|
+
readonly name: "GlobalClusterAlreadyExistsFault";
|
|
631
|
+
readonly $fault: "client";
|
|
632
|
+
/**
|
|
633
|
+
* @internal
|
|
634
|
+
*/
|
|
635
|
+
constructor(opts: __ExceptionOptionType<GlobalClusterAlreadyExistsFault, __BaseException>);
|
|
636
|
+
}
|
|
637
|
+
/**
|
|
638
|
+
* <p>The number of global database clusters for this account is already at the maximum allowed.</p>
|
|
639
|
+
* @public
|
|
640
|
+
*/
|
|
641
|
+
export declare class GlobalClusterQuotaExceededFault extends __BaseException {
|
|
642
|
+
readonly name: "GlobalClusterQuotaExceededFault";
|
|
643
|
+
readonly $fault: "client";
|
|
644
|
+
/**
|
|
645
|
+
* @internal
|
|
646
|
+
*/
|
|
647
|
+
constructor(opts: __ExceptionOptionType<GlobalClusterQuotaExceededFault, __BaseException>);
|
|
648
|
+
}
|
|
649
|
+
/**
|
|
650
|
+
* <p>The specified custom endpoint doesn't exist.</p>
|
|
651
|
+
* @public
|
|
652
|
+
*/
|
|
653
|
+
export declare class DBClusterEndpointNotFoundFault extends __BaseException {
|
|
654
|
+
readonly name: "DBClusterEndpointNotFoundFault";
|
|
655
|
+
readonly $fault: "client";
|
|
656
|
+
/**
|
|
657
|
+
* @internal
|
|
658
|
+
*/
|
|
659
|
+
constructor(opts: __ExceptionOptionType<DBClusterEndpointNotFoundFault, __BaseException>);
|
|
660
|
+
}
|
|
661
|
+
/**
|
|
662
|
+
* <p>The requested operation cannot be performed on the endpoint while the endpoint is in this state.</p>
|
|
663
|
+
* @public
|
|
664
|
+
*/
|
|
665
|
+
export declare class InvalidDBClusterEndpointStateFault extends __BaseException {
|
|
666
|
+
readonly name: "InvalidDBClusterEndpointStateFault";
|
|
667
|
+
readonly $fault: "client";
|
|
668
|
+
/**
|
|
669
|
+
* @internal
|
|
670
|
+
*/
|
|
671
|
+
constructor(opts: __ExceptionOptionType<InvalidDBClusterEndpointStateFault, __BaseException>);
|
|
672
|
+
}
|
|
673
|
+
/**
|
|
674
|
+
* <p>The DB parameter group is in use or is in an invalid state. If you are attempting to
|
|
675
|
+
* delete the parameter group, you cannot delete it when the parameter group is in this state.</p>
|
|
676
|
+
* @public
|
|
677
|
+
*/
|
|
678
|
+
export declare class InvalidDBParameterGroupStateFault extends __BaseException {
|
|
679
|
+
readonly name: "InvalidDBParameterGroupStateFault";
|
|
680
|
+
readonly $fault: "client";
|
|
681
|
+
/**
|
|
682
|
+
* @internal
|
|
683
|
+
*/
|
|
684
|
+
constructor(opts: __ExceptionOptionType<InvalidDBParameterGroupStateFault, __BaseException>);
|
|
685
|
+
}
|
|
686
|
+
/**
|
|
687
|
+
* <p>
|
|
688
|
+
* <i>DBSnapshotIdentifier</i> is already used by an existing snapshot.</p>
|
|
689
|
+
* @public
|
|
690
|
+
*/
|
|
691
|
+
export declare class DBSnapshotAlreadyExistsFault extends __BaseException {
|
|
692
|
+
readonly name: "DBSnapshotAlreadyExistsFault";
|
|
693
|
+
readonly $fault: "client";
|
|
694
|
+
/**
|
|
695
|
+
* @internal
|
|
696
|
+
*/
|
|
697
|
+
constructor(opts: __ExceptionOptionType<DBSnapshotAlreadyExistsFault, __BaseException>);
|
|
698
|
+
}
|
|
699
|
+
/**
|
|
700
|
+
* <p>The DB subnet is not in the <i>available</i> state.</p>
|
|
701
|
+
* @public
|
|
702
|
+
*/
|
|
703
|
+
export declare class InvalidDBSubnetStateFault extends __BaseException {
|
|
704
|
+
readonly name: "InvalidDBSubnetStateFault";
|
|
705
|
+
readonly $fault: "client";
|
|
706
|
+
/**
|
|
707
|
+
* @internal
|
|
708
|
+
*/
|
|
709
|
+
constructor(opts: __ExceptionOptionType<InvalidDBSubnetStateFault, __BaseException>);
|
|
710
|
+
}
|
|
711
|
+
/**
|
|
712
|
+
* <p>The event subscription is in an invalid state.</p>
|
|
713
|
+
* @public
|
|
714
|
+
*/
|
|
715
|
+
export declare class InvalidEventSubscriptionStateFault extends __BaseException {
|
|
716
|
+
readonly name: "InvalidEventSubscriptionStateFault";
|
|
717
|
+
readonly $fault: "client";
|
|
718
|
+
/**
|
|
719
|
+
* @internal
|
|
720
|
+
*/
|
|
721
|
+
constructor(opts: __ExceptionOptionType<InvalidEventSubscriptionStateFault, __BaseException>);
|
|
722
|
+
}
|
|
723
|
+
/**
|
|
724
|
+
* <p>The state of the DB security group does not allow deletion.</p>
|
|
725
|
+
* @public
|
|
726
|
+
*/
|
|
727
|
+
export declare class InvalidDBSecurityGroupStateFault extends __BaseException {
|
|
728
|
+
readonly name: "InvalidDBSecurityGroupStateFault";
|
|
729
|
+
readonly $fault: "client";
|
|
730
|
+
/**
|
|
731
|
+
* @internal
|
|
732
|
+
*/
|
|
733
|
+
constructor(opts: __ExceptionOptionType<InvalidDBSecurityGroupStateFault, __BaseException>);
|
|
734
|
+
}
|
|
735
|
+
/**
|
|
736
|
+
* <p>You have exceeded the maximum number of accounts that you can share a manual DB snapshot with.</p>
|
|
737
|
+
* @public
|
|
738
|
+
*/
|
|
739
|
+
export declare class SharedSnapshotQuotaExceededFault extends __BaseException {
|
|
740
|
+
readonly name: "SharedSnapshotQuotaExceededFault";
|
|
741
|
+
readonly $fault: "client";
|
|
742
|
+
/**
|
|
743
|
+
* @internal
|
|
744
|
+
*/
|
|
745
|
+
constructor(opts: __ExceptionOptionType<SharedSnapshotQuotaExceededFault, __BaseException>);
|
|
746
|
+
}
|
|
747
|
+
/**
|
|
748
|
+
* <p>
|
|
749
|
+
* <i>CertificateIdentifier</i> does not refer to an existing certificate.</p>
|
|
750
|
+
* @public
|
|
751
|
+
*/
|
|
752
|
+
export declare class CertificateNotFoundFault extends __BaseException {
|
|
753
|
+
readonly name: "CertificateNotFoundFault";
|
|
754
|
+
readonly $fault: "client";
|
|
755
|
+
/**
|
|
756
|
+
* @internal
|
|
757
|
+
*/
|
|
758
|
+
constructor(opts: __ExceptionOptionType<CertificateNotFoundFault, __BaseException>);
|
|
759
|
+
}
|
|
760
|
+
/**
|
|
761
|
+
* <p>The DB upgrade failed because a resource the DB depends on could not be modified.</p>
|
|
762
|
+
* @public
|
|
763
|
+
*/
|
|
764
|
+
export declare class DBUpgradeDependencyFailureFault extends __BaseException {
|
|
765
|
+
readonly name: "DBUpgradeDependencyFailureFault";
|
|
766
|
+
readonly $fault: "client";
|
|
767
|
+
/**
|
|
768
|
+
* @internal
|
|
769
|
+
*/
|
|
770
|
+
constructor(opts: __ExceptionOptionType<DBUpgradeDependencyFailureFault, __BaseException>);
|
|
771
|
+
}
|
|
772
|
+
/**
|
|
773
|
+
* <p>The DB subnet is already in use in the Availability Zone.</p>
|
|
774
|
+
* @public
|
|
775
|
+
*/
|
|
776
|
+
export declare class SubnetAlreadyInUse extends __BaseException {
|
|
777
|
+
readonly name: "SubnetAlreadyInUse";
|
|
778
|
+
readonly $fault: "client";
|
|
779
|
+
/**
|
|
780
|
+
* @internal
|
|
781
|
+
*/
|
|
782
|
+
constructor(opts: __ExceptionOptionType<SubnetAlreadyInUse, __BaseException>);
|
|
783
|
+
}
|
|
784
|
+
/**
|
|
785
|
+
* <p>The specified IAM role Amazon Resource Name (ARN) is not associated with the specified DB cluster.</p>
|
|
786
|
+
* @public
|
|
787
|
+
*/
|
|
788
|
+
export declare class DBClusterRoleNotFoundFault extends __BaseException {
|
|
789
|
+
readonly name: "DBClusterRoleNotFoundFault";
|
|
790
|
+
readonly $fault: "client";
|
|
791
|
+
/**
|
|
792
|
+
* @internal
|
|
793
|
+
*/
|
|
794
|
+
constructor(opts: __ExceptionOptionType<DBClusterRoleNotFoundFault, __BaseException>);
|
|
795
|
+
}
|
|
796
|
+
/**
|
|
797
|
+
* <p>The DB cluster does not have enough capacity for the current operation.</p>
|
|
798
|
+
* @public
|
|
799
|
+
*/
|
|
800
|
+
export declare class InsufficientDBClusterCapacityFault extends __BaseException {
|
|
801
|
+
readonly name: "InsufficientDBClusterCapacityFault";
|
|
802
|
+
readonly $fault: "client";
|
|
803
|
+
/**
|
|
804
|
+
* @internal
|
|
805
|
+
*/
|
|
806
|
+
constructor(opts: __ExceptionOptionType<InsufficientDBClusterCapacityFault, __BaseException>);
|
|
807
|
+
}
|
|
808
|
+
/**
|
|
809
|
+
* <p>The state of the DB snapshot does not allow deletion.</p>
|
|
810
|
+
* @public
|
|
811
|
+
*/
|
|
812
|
+
export declare class InvalidDBSnapshotStateFault extends __BaseException {
|
|
813
|
+
readonly name: "InvalidDBSnapshotStateFault";
|
|
814
|
+
readonly $fault: "client";
|
|
815
|
+
/**
|
|
816
|
+
* @internal
|
|
817
|
+
*/
|
|
818
|
+
constructor(opts: __ExceptionOptionType<InvalidDBSnapshotStateFault, __BaseException>);
|
|
819
|
+
}
|
|
820
|
+
/**
|
|
821
|
+
* <p>Cannot restore from vpc backup to non-vpc DB instance.</p>
|
|
822
|
+
* @public
|
|
823
|
+
*/
|
|
824
|
+
export declare class InvalidRestoreFault extends __BaseException {
|
|
825
|
+
readonly name: "InvalidRestoreFault";
|
|
826
|
+
readonly $fault: "client";
|
|
827
|
+
/**
|
|
828
|
+
* @internal
|
|
829
|
+
*/
|
|
830
|
+
constructor(opts: __ExceptionOptionType<InvalidRestoreFault, __BaseException>);
|
|
831
|
+
}
|