@aws-sdk/client-neptunedata 3.934.0 → 3.936.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 +85 -84
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +84 -0
- package/dist-es/models/errors.js +624 -0
- package/dist-es/models/models_0.js +1 -708
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +164 -0
- package/dist-types/models/errors.d.ts +931 -0
- package/dist-types/models/models_0.d.ts +90 -1184
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +98 -0
- package/dist-types/ts3.4/models/errors.d.ts +355 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -453
- package/package.json +19 -19
- 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,931 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { NeptunedataServiceException as __BaseException } from "./NeptunedataServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Raised in case of an authentication or authorization failure.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* <p>A detailed message describing the problem.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
detailedMessage: string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The ID of the request in question.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
requestId: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
code: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* @internal
|
|
27
|
+
*/
|
|
28
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* <p>Raised when a request is submitted that cannot be processed.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
export declare class BadRequestException extends __BaseException {
|
|
35
|
+
readonly name: "BadRequestException";
|
|
36
|
+
readonly $fault: "client";
|
|
37
|
+
/**
|
|
38
|
+
* <p>A detailed message describing the problem.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
detailedMessage: string | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* <p>The ID of the bad request.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
requestId: string | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
code: string | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* <p>Raised when a request timed out in the client.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export declare class ClientTimeoutException extends __BaseException {
|
|
62
|
+
readonly name: "ClientTimeoutException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
$retryable: {};
|
|
65
|
+
/**
|
|
66
|
+
* <p>A detailed message describing the problem.</p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
detailedMessage: string | undefined;
|
|
70
|
+
/**
|
|
71
|
+
* <p>The ID of the request in question.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
requestId: string | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
code: string | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
83
|
+
constructor(opts: __ExceptionOptionType<ClientTimeoutException, __BaseException>);
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* <p>Raised when a request attempts to modify data that is concurrently being modified by another process.</p>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
90
|
+
readonly name: "ConcurrentModificationException";
|
|
91
|
+
readonly $fault: "server";
|
|
92
|
+
$retryable: {};
|
|
93
|
+
/**
|
|
94
|
+
* <p>A detailed message describing the problem.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
detailedMessage: string | undefined;
|
|
98
|
+
/**
|
|
99
|
+
* <p>The ID of the request in question.</p>
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
requestId: string | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
code: string | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* <p>Raised when a value in a request field did not satisfy required constraints.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
export declare class ConstraintViolationException extends __BaseException {
|
|
118
|
+
readonly name: "ConstraintViolationException";
|
|
119
|
+
readonly $fault: "client";
|
|
120
|
+
$retryable: {};
|
|
121
|
+
/**
|
|
122
|
+
* <p>A detailed message describing the problem.</p>
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
detailedMessage: string | undefined;
|
|
126
|
+
/**
|
|
127
|
+
* <p>The ID of the request in question.</p>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
requestId: string | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
code: string | undefined;
|
|
136
|
+
/**
|
|
137
|
+
* @internal
|
|
138
|
+
*/
|
|
139
|
+
constructor(opts: __ExceptionOptionType<ConstraintViolationException, __BaseException>);
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* <p>Raised when a request fails.</p>
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
export declare class FailureByQueryException extends __BaseException {
|
|
146
|
+
readonly name: "FailureByQueryException";
|
|
147
|
+
readonly $fault: "server";
|
|
148
|
+
$retryable: {};
|
|
149
|
+
/**
|
|
150
|
+
* <p>A detailed message describing the problem.</p>
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
detailedMessage: string | undefined;
|
|
154
|
+
/**
|
|
155
|
+
* <p>The ID of the request in question.</p>
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
requestId: string | undefined;
|
|
159
|
+
/**
|
|
160
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
code: string | undefined;
|
|
164
|
+
/**
|
|
165
|
+
* @internal
|
|
166
|
+
*/
|
|
167
|
+
constructor(opts: __ExceptionOptionType<FailureByQueryException, __BaseException>);
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* <p>Raised when an argument in a request is not supported.</p>
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
173
|
+
export declare class IllegalArgumentException extends __BaseException {
|
|
174
|
+
readonly name: "IllegalArgumentException";
|
|
175
|
+
readonly $fault: "client";
|
|
176
|
+
/**
|
|
177
|
+
* <p>A detailed message describing the problem.</p>
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
detailedMessage: string | undefined;
|
|
181
|
+
/**
|
|
182
|
+
* <p>The ID of the request in question.</p>
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
185
|
+
requestId: string | undefined;
|
|
186
|
+
/**
|
|
187
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
code: string | undefined;
|
|
191
|
+
/**
|
|
192
|
+
* @internal
|
|
193
|
+
*/
|
|
194
|
+
constructor(opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>);
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* <p>Raised when an argument in a request has an invalid value.</p>
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
200
|
+
export declare class InvalidArgumentException extends __BaseException {
|
|
201
|
+
readonly name: "InvalidArgumentException";
|
|
202
|
+
readonly $fault: "client";
|
|
203
|
+
/**
|
|
204
|
+
* <p>A detailed message describing the problem.</p>
|
|
205
|
+
* @public
|
|
206
|
+
*/
|
|
207
|
+
detailedMessage: string | undefined;
|
|
208
|
+
/**
|
|
209
|
+
* <p>The ID of the request in question.</p>
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
requestId: string | undefined;
|
|
213
|
+
/**
|
|
214
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
215
|
+
* @public
|
|
216
|
+
*/
|
|
217
|
+
code: string | undefined;
|
|
218
|
+
/**
|
|
219
|
+
* @internal
|
|
220
|
+
*/
|
|
221
|
+
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
222
|
+
}
|
|
223
|
+
/**
|
|
224
|
+
* <p>Raised when a parameter value is not valid.</p>
|
|
225
|
+
* @public
|
|
226
|
+
*/
|
|
227
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
228
|
+
readonly name: "InvalidParameterException";
|
|
229
|
+
readonly $fault: "client";
|
|
230
|
+
/**
|
|
231
|
+
* <p>A detailed message describing the problem.</p>
|
|
232
|
+
* @public
|
|
233
|
+
*/
|
|
234
|
+
detailedMessage: string | undefined;
|
|
235
|
+
/**
|
|
236
|
+
* <p>The ID of the request that includes an invalid parameter.</p>
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
requestId: string | undefined;
|
|
240
|
+
/**
|
|
241
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
242
|
+
* @public
|
|
243
|
+
*/
|
|
244
|
+
code: string | undefined;
|
|
245
|
+
/**
|
|
246
|
+
* @internal
|
|
247
|
+
*/
|
|
248
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
249
|
+
}
|
|
250
|
+
/**
|
|
251
|
+
* <p>Raised when a required parameter is missing.</p>
|
|
252
|
+
* @public
|
|
253
|
+
*/
|
|
254
|
+
export declare class MissingParameterException extends __BaseException {
|
|
255
|
+
readonly name: "MissingParameterException";
|
|
256
|
+
readonly $fault: "client";
|
|
257
|
+
/**
|
|
258
|
+
* <p>A detailed message describing the problem.</p>
|
|
259
|
+
* @public
|
|
260
|
+
*/
|
|
261
|
+
detailedMessage: string | undefined;
|
|
262
|
+
/**
|
|
263
|
+
* <p>The ID of the request in which the parameter is missing.</p>
|
|
264
|
+
* @public
|
|
265
|
+
*/
|
|
266
|
+
requestId: string | undefined;
|
|
267
|
+
/**
|
|
268
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
271
|
+
code: string | undefined;
|
|
272
|
+
/**
|
|
273
|
+
* @internal
|
|
274
|
+
*/
|
|
275
|
+
constructor(opts: __ExceptionOptionType<MissingParameterException, __BaseException>);
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* <p>Raised when a parsing issue is encountered.</p>
|
|
279
|
+
* @public
|
|
280
|
+
*/
|
|
281
|
+
export declare class ParsingException extends __BaseException {
|
|
282
|
+
readonly name: "ParsingException";
|
|
283
|
+
readonly $fault: "client";
|
|
284
|
+
/**
|
|
285
|
+
* <p>A detailed message describing the problem.</p>
|
|
286
|
+
* @public
|
|
287
|
+
*/
|
|
288
|
+
detailedMessage: string | undefined;
|
|
289
|
+
/**
|
|
290
|
+
* <p>The ID of the request in question.</p>
|
|
291
|
+
* @public
|
|
292
|
+
*/
|
|
293
|
+
requestId: string | undefined;
|
|
294
|
+
/**
|
|
295
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
296
|
+
* @public
|
|
297
|
+
*/
|
|
298
|
+
code: string | undefined;
|
|
299
|
+
/**
|
|
300
|
+
* @internal
|
|
301
|
+
*/
|
|
302
|
+
constructor(opts: __ExceptionOptionType<ParsingException, __BaseException>);
|
|
303
|
+
}
|
|
304
|
+
/**
|
|
305
|
+
* <p>Raised when a precondition for processing a request is not satisfied.</p>
|
|
306
|
+
* @public
|
|
307
|
+
*/
|
|
308
|
+
export declare class PreconditionsFailedException extends __BaseException {
|
|
309
|
+
readonly name: "PreconditionsFailedException";
|
|
310
|
+
readonly $fault: "client";
|
|
311
|
+
/**
|
|
312
|
+
* <p>A detailed message describing the problem.</p>
|
|
313
|
+
* @public
|
|
314
|
+
*/
|
|
315
|
+
detailedMessage: string | undefined;
|
|
316
|
+
/**
|
|
317
|
+
* <p>The ID of the request in question.</p>
|
|
318
|
+
* @public
|
|
319
|
+
*/
|
|
320
|
+
requestId: string | undefined;
|
|
321
|
+
/**
|
|
322
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
323
|
+
* @public
|
|
324
|
+
*/
|
|
325
|
+
code: string | undefined;
|
|
326
|
+
/**
|
|
327
|
+
* @internal
|
|
328
|
+
*/
|
|
329
|
+
constructor(opts: __ExceptionOptionType<PreconditionsFailedException, __BaseException>);
|
|
330
|
+
}
|
|
331
|
+
/**
|
|
332
|
+
* <p>Raised when the an operation exceeds the time limit allowed for it.</p>
|
|
333
|
+
* @public
|
|
334
|
+
*/
|
|
335
|
+
export declare class TimeLimitExceededException extends __BaseException {
|
|
336
|
+
readonly name: "TimeLimitExceededException";
|
|
337
|
+
readonly $fault: "server";
|
|
338
|
+
$retryable: {};
|
|
339
|
+
/**
|
|
340
|
+
* <p>A detailed message describing the problem.</p>
|
|
341
|
+
* @public
|
|
342
|
+
*/
|
|
343
|
+
detailedMessage: string | undefined;
|
|
344
|
+
/**
|
|
345
|
+
* <p>The ID of the request that could not be processed for this reason.</p>
|
|
346
|
+
* @public
|
|
347
|
+
*/
|
|
348
|
+
requestId: string | undefined;
|
|
349
|
+
/**
|
|
350
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
351
|
+
* @public
|
|
352
|
+
*/
|
|
353
|
+
code: string | undefined;
|
|
354
|
+
/**
|
|
355
|
+
* @internal
|
|
356
|
+
*/
|
|
357
|
+
constructor(opts: __ExceptionOptionType<TimeLimitExceededException, __BaseException>);
|
|
358
|
+
}
|
|
359
|
+
/**
|
|
360
|
+
* <p>Raised when the number of requests being processed exceeds the limit.</p>
|
|
361
|
+
* @public
|
|
362
|
+
*/
|
|
363
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
364
|
+
readonly name: "TooManyRequestsException";
|
|
365
|
+
readonly $fault: "client";
|
|
366
|
+
$retryable: {};
|
|
367
|
+
/**
|
|
368
|
+
* <p>A detailed message describing the problem.</p>
|
|
369
|
+
* @public
|
|
370
|
+
*/
|
|
371
|
+
detailedMessage: string | undefined;
|
|
372
|
+
/**
|
|
373
|
+
* <p>The ID of the request that could not be processed for this reason.</p>
|
|
374
|
+
* @public
|
|
375
|
+
*/
|
|
376
|
+
requestId: string | undefined;
|
|
377
|
+
/**
|
|
378
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
379
|
+
* @public
|
|
380
|
+
*/
|
|
381
|
+
code: string | undefined;
|
|
382
|
+
/**
|
|
383
|
+
* @internal
|
|
384
|
+
*/
|
|
385
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
386
|
+
}
|
|
387
|
+
/**
|
|
388
|
+
* <p>Raised when a request attempts to initiate an operation that is not supported.</p>
|
|
389
|
+
* @public
|
|
390
|
+
*/
|
|
391
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
392
|
+
readonly name: "UnsupportedOperationException";
|
|
393
|
+
readonly $fault: "client";
|
|
394
|
+
/**
|
|
395
|
+
* <p>A detailed message describing the problem.</p>
|
|
396
|
+
* @public
|
|
397
|
+
*/
|
|
398
|
+
detailedMessage: string | undefined;
|
|
399
|
+
/**
|
|
400
|
+
* <p>The ID of the request in question.</p>
|
|
401
|
+
* @public
|
|
402
|
+
*/
|
|
403
|
+
requestId: string | undefined;
|
|
404
|
+
/**
|
|
405
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
406
|
+
* @public
|
|
407
|
+
*/
|
|
408
|
+
code: string | undefined;
|
|
409
|
+
/**
|
|
410
|
+
* @internal
|
|
411
|
+
*/
|
|
412
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
413
|
+
}
|
|
414
|
+
/**
|
|
415
|
+
* <p>Raised when a specified bulk-load job ID cannot be found.</p>
|
|
416
|
+
* @public
|
|
417
|
+
*/
|
|
418
|
+
export declare class BulkLoadIdNotFoundException extends __BaseException {
|
|
419
|
+
readonly name: "BulkLoadIdNotFoundException";
|
|
420
|
+
readonly $fault: "client";
|
|
421
|
+
$retryable: {};
|
|
422
|
+
/**
|
|
423
|
+
* <p>A detailed message describing the problem.</p>
|
|
424
|
+
* @public
|
|
425
|
+
*/
|
|
426
|
+
detailedMessage: string | undefined;
|
|
427
|
+
/**
|
|
428
|
+
* <p>The bulk-load job ID that could not be found.</p>
|
|
429
|
+
* @public
|
|
430
|
+
*/
|
|
431
|
+
requestId: string | undefined;
|
|
432
|
+
/**
|
|
433
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
434
|
+
* @public
|
|
435
|
+
*/
|
|
436
|
+
code: string | undefined;
|
|
437
|
+
/**
|
|
438
|
+
* @internal
|
|
439
|
+
*/
|
|
440
|
+
constructor(opts: __ExceptionOptionType<BulkLoadIdNotFoundException, __BaseException>);
|
|
441
|
+
}
|
|
442
|
+
/**
|
|
443
|
+
* <p>Raised when the processing of the request failed unexpectedly.</p>
|
|
444
|
+
* @public
|
|
445
|
+
*/
|
|
446
|
+
export declare class InternalFailureException extends __BaseException {
|
|
447
|
+
readonly name: "InternalFailureException";
|
|
448
|
+
readonly $fault: "server";
|
|
449
|
+
/**
|
|
450
|
+
* <p>A detailed message describing the problem.</p>
|
|
451
|
+
* @public
|
|
452
|
+
*/
|
|
453
|
+
detailedMessage: string | undefined;
|
|
454
|
+
/**
|
|
455
|
+
* <p>The ID of the request in question.</p>
|
|
456
|
+
* @public
|
|
457
|
+
*/
|
|
458
|
+
requestId: string | undefined;
|
|
459
|
+
/**
|
|
460
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
461
|
+
* @public
|
|
462
|
+
*/
|
|
463
|
+
code: string | undefined;
|
|
464
|
+
/**
|
|
465
|
+
* @internal
|
|
466
|
+
*/
|
|
467
|
+
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
468
|
+
}
|
|
469
|
+
/**
|
|
470
|
+
* <p>Raised when access is denied to a specified load URL.</p>
|
|
471
|
+
* @public
|
|
472
|
+
*/
|
|
473
|
+
export declare class LoadUrlAccessDeniedException extends __BaseException {
|
|
474
|
+
readonly name: "LoadUrlAccessDeniedException";
|
|
475
|
+
readonly $fault: "client";
|
|
476
|
+
/**
|
|
477
|
+
* <p>A detailed message describing the problem.</p>
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
480
|
+
detailedMessage: string | undefined;
|
|
481
|
+
/**
|
|
482
|
+
* <p>The ID of the request in question.</p>
|
|
483
|
+
* @public
|
|
484
|
+
*/
|
|
485
|
+
requestId: string | undefined;
|
|
486
|
+
/**
|
|
487
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
488
|
+
* @public
|
|
489
|
+
*/
|
|
490
|
+
code: string | undefined;
|
|
491
|
+
/**
|
|
492
|
+
* @internal
|
|
493
|
+
*/
|
|
494
|
+
constructor(opts: __ExceptionOptionType<LoadUrlAccessDeniedException, __BaseException>);
|
|
495
|
+
}
|
|
496
|
+
/**
|
|
497
|
+
* <p>Raised when a specified machine-learning resource could not be found.</p>
|
|
498
|
+
* @public
|
|
499
|
+
*/
|
|
500
|
+
export declare class MLResourceNotFoundException extends __BaseException {
|
|
501
|
+
readonly name: "MLResourceNotFoundException";
|
|
502
|
+
readonly $fault: "client";
|
|
503
|
+
/**
|
|
504
|
+
* <p>A detailed message describing the problem.</p>
|
|
505
|
+
* @public
|
|
506
|
+
*/
|
|
507
|
+
detailedMessage: string | undefined;
|
|
508
|
+
/**
|
|
509
|
+
* <p>The ID of the request in question.</p>
|
|
510
|
+
* @public
|
|
511
|
+
*/
|
|
512
|
+
requestId: string | undefined;
|
|
513
|
+
/**
|
|
514
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
515
|
+
* @public
|
|
516
|
+
*/
|
|
517
|
+
code: string | undefined;
|
|
518
|
+
/**
|
|
519
|
+
* @internal
|
|
520
|
+
*/
|
|
521
|
+
constructor(opts: __ExceptionOptionType<MLResourceNotFoundException, __BaseException>);
|
|
522
|
+
}
|
|
523
|
+
/**
|
|
524
|
+
* <p>Raised when invalid numerical data is encountered when servicing a request.</p>
|
|
525
|
+
* @public
|
|
526
|
+
*/
|
|
527
|
+
export declare class InvalidNumericDataException extends __BaseException {
|
|
528
|
+
readonly name: "InvalidNumericDataException";
|
|
529
|
+
readonly $fault: "client";
|
|
530
|
+
/**
|
|
531
|
+
* <p>A detailed message describing the problem.</p>
|
|
532
|
+
* @public
|
|
533
|
+
*/
|
|
534
|
+
detailedMessage: string | undefined;
|
|
535
|
+
/**
|
|
536
|
+
* <p>The ID of the request in question.</p>
|
|
537
|
+
* @public
|
|
538
|
+
*/
|
|
539
|
+
requestId: string | undefined;
|
|
540
|
+
/**
|
|
541
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
542
|
+
* @public
|
|
543
|
+
*/
|
|
544
|
+
code: string | undefined;
|
|
545
|
+
/**
|
|
546
|
+
* @internal
|
|
547
|
+
*/
|
|
548
|
+
constructor(opts: __ExceptionOptionType<InvalidNumericDataException, __BaseException>);
|
|
549
|
+
}
|
|
550
|
+
/**
|
|
551
|
+
* <p>Raised when a request attempts to write to a read-only resource.</p>
|
|
552
|
+
* @public
|
|
553
|
+
*/
|
|
554
|
+
export declare class ReadOnlyViolationException extends __BaseException {
|
|
555
|
+
readonly name: "ReadOnlyViolationException";
|
|
556
|
+
readonly $fault: "client";
|
|
557
|
+
/**
|
|
558
|
+
* <p>A detailed message describing the problem.</p>
|
|
559
|
+
* @public
|
|
560
|
+
*/
|
|
561
|
+
detailedMessage: string | undefined;
|
|
562
|
+
/**
|
|
563
|
+
* <p>The ID of the request in which the parameter is missing.</p>
|
|
564
|
+
* @public
|
|
565
|
+
*/
|
|
566
|
+
requestId: string | undefined;
|
|
567
|
+
/**
|
|
568
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
569
|
+
* @public
|
|
570
|
+
*/
|
|
571
|
+
code: string | undefined;
|
|
572
|
+
/**
|
|
573
|
+
* @internal
|
|
574
|
+
*/
|
|
575
|
+
constructor(opts: __ExceptionOptionType<ReadOnlyViolationException, __BaseException>);
|
|
576
|
+
}
|
|
577
|
+
/**
|
|
578
|
+
* <p>Raised when statistics needed to satisfy a request are not available.</p>
|
|
579
|
+
* @public
|
|
580
|
+
*/
|
|
581
|
+
export declare class StatisticsNotAvailableException extends __BaseException {
|
|
582
|
+
readonly name: "StatisticsNotAvailableException";
|
|
583
|
+
readonly $fault: "client";
|
|
584
|
+
/**
|
|
585
|
+
* <p>A detailed message describing the problem.</p>
|
|
586
|
+
* @public
|
|
587
|
+
*/
|
|
588
|
+
detailedMessage: string | undefined;
|
|
589
|
+
/**
|
|
590
|
+
* <p>The ID of the request in question.</p>
|
|
591
|
+
* @public
|
|
592
|
+
*/
|
|
593
|
+
requestId: string | undefined;
|
|
594
|
+
/**
|
|
595
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
596
|
+
* @public
|
|
597
|
+
*/
|
|
598
|
+
code: string | undefined;
|
|
599
|
+
/**
|
|
600
|
+
* @internal
|
|
601
|
+
*/
|
|
602
|
+
constructor(opts: __ExceptionOptionType<StatisticsNotAvailableException, __BaseException>);
|
|
603
|
+
}
|
|
604
|
+
/**
|
|
605
|
+
* <p>Raised when the HTTP method used by a request is not supported by the endpoint being used.</p>
|
|
606
|
+
* @public
|
|
607
|
+
*/
|
|
608
|
+
export declare class MethodNotAllowedException extends __BaseException {
|
|
609
|
+
readonly name: "MethodNotAllowedException";
|
|
610
|
+
readonly $fault: "client";
|
|
611
|
+
/**
|
|
612
|
+
* <p>A detailed message describing the problem.</p>
|
|
613
|
+
* @public
|
|
614
|
+
*/
|
|
615
|
+
detailedMessage: string | undefined;
|
|
616
|
+
/**
|
|
617
|
+
* <p>The ID of the request in question.</p>
|
|
618
|
+
* @public
|
|
619
|
+
*/
|
|
620
|
+
requestId: string | undefined;
|
|
621
|
+
/**
|
|
622
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
623
|
+
* @public
|
|
624
|
+
*/
|
|
625
|
+
code: string | undefined;
|
|
626
|
+
/**
|
|
627
|
+
* @internal
|
|
628
|
+
*/
|
|
629
|
+
constructor(opts: __ExceptionOptionType<MethodNotAllowedException, __BaseException>);
|
|
630
|
+
}
|
|
631
|
+
/**
|
|
632
|
+
* <p>Raised when the server shuts down while processing a request.</p>
|
|
633
|
+
* @public
|
|
634
|
+
*/
|
|
635
|
+
export declare class ServerShutdownException extends __BaseException {
|
|
636
|
+
readonly name: "ServerShutdownException";
|
|
637
|
+
readonly $fault: "server";
|
|
638
|
+
/**
|
|
639
|
+
* <p>A detailed message describing the problem.</p>
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
642
|
+
detailedMessage: string | undefined;
|
|
643
|
+
/**
|
|
644
|
+
* <p>The ID of the request in question.</p>
|
|
645
|
+
* @public
|
|
646
|
+
*/
|
|
647
|
+
requestId: string | undefined;
|
|
648
|
+
/**
|
|
649
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
650
|
+
* @public
|
|
651
|
+
*/
|
|
652
|
+
code: string | undefined;
|
|
653
|
+
/**
|
|
654
|
+
* @internal
|
|
655
|
+
*/
|
|
656
|
+
constructor(opts: __ExceptionOptionType<ServerShutdownException, __BaseException>);
|
|
657
|
+
}
|
|
658
|
+
/**
|
|
659
|
+
* <p>Raised when a user cancelled a request.</p>
|
|
660
|
+
* @public
|
|
661
|
+
*/
|
|
662
|
+
export declare class CancelledByUserException extends __BaseException {
|
|
663
|
+
readonly name: "CancelledByUserException";
|
|
664
|
+
readonly $fault: "server";
|
|
665
|
+
/**
|
|
666
|
+
* <p>A detailed message describing the problem.</p>
|
|
667
|
+
* @public
|
|
668
|
+
*/
|
|
669
|
+
detailedMessage: string | undefined;
|
|
670
|
+
/**
|
|
671
|
+
* <p>The ID of the request in question.</p>
|
|
672
|
+
* @public
|
|
673
|
+
*/
|
|
674
|
+
requestId: string | undefined;
|
|
675
|
+
/**
|
|
676
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
677
|
+
* @public
|
|
678
|
+
*/
|
|
679
|
+
code: string | undefined;
|
|
680
|
+
/**
|
|
681
|
+
* @internal
|
|
682
|
+
*/
|
|
683
|
+
constructor(opts: __ExceptionOptionType<CancelledByUserException, __BaseException>);
|
|
684
|
+
}
|
|
685
|
+
/**
|
|
686
|
+
* <p>Raised when a query is submitted that is syntactically incorrect or does not pass additional validation.</p>
|
|
687
|
+
* @public
|
|
688
|
+
*/
|
|
689
|
+
export declare class MalformedQueryException extends __BaseException {
|
|
690
|
+
readonly name: "MalformedQueryException";
|
|
691
|
+
readonly $fault: "client";
|
|
692
|
+
/**
|
|
693
|
+
* <p>A detailed message describing the problem.</p>
|
|
694
|
+
* @public
|
|
695
|
+
*/
|
|
696
|
+
detailedMessage: string | undefined;
|
|
697
|
+
/**
|
|
698
|
+
* <p>The ID of the malformed query request.</p>
|
|
699
|
+
* @public
|
|
700
|
+
*/
|
|
701
|
+
requestId: string | undefined;
|
|
702
|
+
/**
|
|
703
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
704
|
+
* @public
|
|
705
|
+
*/
|
|
706
|
+
code: string | undefined;
|
|
707
|
+
/**
|
|
708
|
+
* @internal
|
|
709
|
+
*/
|
|
710
|
+
constructor(opts: __ExceptionOptionType<MalformedQueryException, __BaseException>);
|
|
711
|
+
}
|
|
712
|
+
/**
|
|
713
|
+
* <p>Raised when a request fails because of insufficient memory resources. The request can be retried.</p>
|
|
714
|
+
* @public
|
|
715
|
+
*/
|
|
716
|
+
export declare class MemoryLimitExceededException extends __BaseException {
|
|
717
|
+
readonly name: "MemoryLimitExceededException";
|
|
718
|
+
readonly $fault: "server";
|
|
719
|
+
$retryable: {};
|
|
720
|
+
/**
|
|
721
|
+
* <p>A detailed message describing the problem.</p>
|
|
722
|
+
* @public
|
|
723
|
+
*/
|
|
724
|
+
detailedMessage: string | undefined;
|
|
725
|
+
/**
|
|
726
|
+
* <p>The ID of the request that failed.</p>
|
|
727
|
+
* @public
|
|
728
|
+
*/
|
|
729
|
+
requestId: string | undefined;
|
|
730
|
+
/**
|
|
731
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
732
|
+
* @public
|
|
733
|
+
*/
|
|
734
|
+
code: string | undefined;
|
|
735
|
+
/**
|
|
736
|
+
* @internal
|
|
737
|
+
*/
|
|
738
|
+
constructor(opts: __ExceptionOptionType<MemoryLimitExceededException, __BaseException>);
|
|
739
|
+
}
|
|
740
|
+
/**
|
|
741
|
+
* <p>Raised when the number of active queries exceeds what the server can process. The query in question can be retried when the system is less busy.</p>
|
|
742
|
+
* @public
|
|
743
|
+
*/
|
|
744
|
+
export declare class QueryLimitExceededException extends __BaseException {
|
|
745
|
+
readonly name: "QueryLimitExceededException";
|
|
746
|
+
readonly $fault: "server";
|
|
747
|
+
$retryable: {};
|
|
748
|
+
/**
|
|
749
|
+
* <p>A detailed message describing the problem.</p>
|
|
750
|
+
* @public
|
|
751
|
+
*/
|
|
752
|
+
detailedMessage: string | undefined;
|
|
753
|
+
/**
|
|
754
|
+
* <p>The ID of the request which exceeded the limit.</p>
|
|
755
|
+
* @public
|
|
756
|
+
*/
|
|
757
|
+
requestId: string | undefined;
|
|
758
|
+
/**
|
|
759
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
760
|
+
* @public
|
|
761
|
+
*/
|
|
762
|
+
code: string | undefined;
|
|
763
|
+
/**
|
|
764
|
+
* @internal
|
|
765
|
+
*/
|
|
766
|
+
constructor(opts: __ExceptionOptionType<QueryLimitExceededException, __BaseException>);
|
|
767
|
+
}
|
|
768
|
+
/**
|
|
769
|
+
* <p>Raised when the size of a query exceeds the system limit.</p>
|
|
770
|
+
* @public
|
|
771
|
+
*/
|
|
772
|
+
export declare class QueryLimitException extends __BaseException {
|
|
773
|
+
readonly name: "QueryLimitException";
|
|
774
|
+
readonly $fault: "client";
|
|
775
|
+
/**
|
|
776
|
+
* <p>A detailed message describing the problem.</p>
|
|
777
|
+
* @public
|
|
778
|
+
*/
|
|
779
|
+
detailedMessage: string | undefined;
|
|
780
|
+
/**
|
|
781
|
+
* <p>The ID of the request that exceeded the limit.</p>
|
|
782
|
+
* @public
|
|
783
|
+
*/
|
|
784
|
+
requestId: string | undefined;
|
|
785
|
+
/**
|
|
786
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
787
|
+
* @public
|
|
788
|
+
*/
|
|
789
|
+
code: string | undefined;
|
|
790
|
+
/**
|
|
791
|
+
* @internal
|
|
792
|
+
*/
|
|
793
|
+
constructor(opts: __ExceptionOptionType<QueryLimitException, __BaseException>);
|
|
794
|
+
}
|
|
795
|
+
/**
|
|
796
|
+
* <p>Raised when the body of a query is too large.</p>
|
|
797
|
+
* @public
|
|
798
|
+
*/
|
|
799
|
+
export declare class QueryTooLargeException extends __BaseException {
|
|
800
|
+
readonly name: "QueryTooLargeException";
|
|
801
|
+
readonly $fault: "client";
|
|
802
|
+
/**
|
|
803
|
+
* <p>A detailed message describing the problem.</p>
|
|
804
|
+
* @public
|
|
805
|
+
*/
|
|
806
|
+
detailedMessage: string | undefined;
|
|
807
|
+
/**
|
|
808
|
+
* <p>The ID of the request that is too large.</p>
|
|
809
|
+
* @public
|
|
810
|
+
*/
|
|
811
|
+
requestId: string | undefined;
|
|
812
|
+
/**
|
|
813
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
814
|
+
* @public
|
|
815
|
+
*/
|
|
816
|
+
code: string | undefined;
|
|
817
|
+
/**
|
|
818
|
+
* @internal
|
|
819
|
+
*/
|
|
820
|
+
constructor(opts: __ExceptionOptionType<QueryTooLargeException, __BaseException>);
|
|
821
|
+
}
|
|
822
|
+
/**
|
|
823
|
+
* <p>Raised when a request attempts to access an stream that has expired.</p>
|
|
824
|
+
* @public
|
|
825
|
+
*/
|
|
826
|
+
export declare class ExpiredStreamException extends __BaseException {
|
|
827
|
+
readonly name: "ExpiredStreamException";
|
|
828
|
+
readonly $fault: "client";
|
|
829
|
+
/**
|
|
830
|
+
* <p>A detailed message describing the problem.</p>
|
|
831
|
+
* @public
|
|
832
|
+
*/
|
|
833
|
+
detailedMessage: string | undefined;
|
|
834
|
+
/**
|
|
835
|
+
* <p>The ID of the request in question.</p>
|
|
836
|
+
* @public
|
|
837
|
+
*/
|
|
838
|
+
requestId: string | undefined;
|
|
839
|
+
/**
|
|
840
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
841
|
+
* @public
|
|
842
|
+
*/
|
|
843
|
+
code: string | undefined;
|
|
844
|
+
/**
|
|
845
|
+
* @internal
|
|
846
|
+
*/
|
|
847
|
+
constructor(opts: __ExceptionOptionType<ExpiredStreamException, __BaseException>);
|
|
848
|
+
}
|
|
849
|
+
/**
|
|
850
|
+
* <p>Raised when stream records requested by a query cannot be found.</p>
|
|
851
|
+
* @public
|
|
852
|
+
*/
|
|
853
|
+
export declare class StreamRecordsNotFoundException extends __BaseException {
|
|
854
|
+
readonly name: "StreamRecordsNotFoundException";
|
|
855
|
+
readonly $fault: "client";
|
|
856
|
+
/**
|
|
857
|
+
* <p>A detailed message describing the problem.</p>
|
|
858
|
+
* @public
|
|
859
|
+
*/
|
|
860
|
+
detailedMessage: string | undefined;
|
|
861
|
+
/**
|
|
862
|
+
* <p>The ID of the request in question.</p>
|
|
863
|
+
* @public
|
|
864
|
+
*/
|
|
865
|
+
requestId: string | undefined;
|
|
866
|
+
/**
|
|
867
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
868
|
+
* @public
|
|
869
|
+
*/
|
|
870
|
+
code: string | undefined;
|
|
871
|
+
/**
|
|
872
|
+
* @internal
|
|
873
|
+
*/
|
|
874
|
+
constructor(opts: __ExceptionOptionType<StreamRecordsNotFoundException, __BaseException>);
|
|
875
|
+
}
|
|
876
|
+
/**
|
|
877
|
+
* <p>Raised when the rate of requests exceeds the maximum throughput. Requests can be retried after encountering this exception.</p>
|
|
878
|
+
* @public
|
|
879
|
+
*/
|
|
880
|
+
export declare class ThrottlingException extends __BaseException {
|
|
881
|
+
readonly name: "ThrottlingException";
|
|
882
|
+
readonly $fault: "server";
|
|
883
|
+
$retryable: {};
|
|
884
|
+
/**
|
|
885
|
+
* <p>A detailed message describing the problem.</p>
|
|
886
|
+
* @public
|
|
887
|
+
*/
|
|
888
|
+
detailedMessage: string | undefined;
|
|
889
|
+
/**
|
|
890
|
+
* <p>The ID of the request that could not be processed for this reason.</p>
|
|
891
|
+
* @public
|
|
892
|
+
*/
|
|
893
|
+
requestId: string | undefined;
|
|
894
|
+
/**
|
|
895
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
896
|
+
* @public
|
|
897
|
+
*/
|
|
898
|
+
code: string | undefined;
|
|
899
|
+
/**
|
|
900
|
+
* @internal
|
|
901
|
+
*/
|
|
902
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
903
|
+
}
|
|
904
|
+
/**
|
|
905
|
+
* <p>Raised when there is a problem accessing Amazon S3.</p>
|
|
906
|
+
* @public
|
|
907
|
+
*/
|
|
908
|
+
export declare class S3Exception extends __BaseException {
|
|
909
|
+
readonly name: "S3Exception";
|
|
910
|
+
readonly $fault: "client";
|
|
911
|
+
$retryable: {};
|
|
912
|
+
/**
|
|
913
|
+
* <p>A detailed message describing the problem.</p>
|
|
914
|
+
* @public
|
|
915
|
+
*/
|
|
916
|
+
detailedMessage: string | undefined;
|
|
917
|
+
/**
|
|
918
|
+
* <p>The ID of the request in question.</p>
|
|
919
|
+
* @public
|
|
920
|
+
*/
|
|
921
|
+
requestId: string | undefined;
|
|
922
|
+
/**
|
|
923
|
+
* <p>The HTTP status code returned with the exception.</p>
|
|
924
|
+
* @public
|
|
925
|
+
*/
|
|
926
|
+
code: string | undefined;
|
|
927
|
+
/**
|
|
928
|
+
* @internal
|
|
929
|
+
*/
|
|
930
|
+
constructor(opts: __ExceptionOptionType<S3Exception, __BaseException>);
|
|
931
|
+
}
|