@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
|
@@ -1,72 +1,5 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
1
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
/**
|
|
5
|
-
* <p>Raised in case of an authentication or authorization failure.</p>
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
9
|
-
readonly name: "AccessDeniedException";
|
|
10
|
-
readonly $fault: "client";
|
|
11
|
-
/**
|
|
12
|
-
* <p>A detailed message describing the problem.</p>
|
|
13
|
-
* @public
|
|
14
|
-
*/
|
|
15
|
-
detailedMessage: string | undefined;
|
|
16
|
-
/**
|
|
17
|
-
* <p>The ID of the request in question.</p>
|
|
18
|
-
* @public
|
|
19
|
-
*/
|
|
20
|
-
requestId: string | undefined;
|
|
21
|
-
/**
|
|
22
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
23
|
-
* @public
|
|
24
|
-
*/
|
|
25
|
-
code: string | undefined;
|
|
26
|
-
/**
|
|
27
|
-
* @internal
|
|
28
|
-
*/
|
|
29
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* @public
|
|
33
|
-
* @enum
|
|
34
|
-
*/
|
|
35
|
-
export declare const Action: {
|
|
36
|
-
readonly INITIALIZE_RESET: "initiateDatabaseReset";
|
|
37
|
-
readonly PERFORM_RESET: "performDatabaseReset";
|
|
38
|
-
};
|
|
39
|
-
/**
|
|
40
|
-
* @public
|
|
41
|
-
*/
|
|
42
|
-
export type Action = (typeof Action)[keyof typeof Action];
|
|
43
|
-
/**
|
|
44
|
-
* <p>Raised when a request is submitted that cannot be processed.</p>
|
|
45
|
-
* @public
|
|
46
|
-
*/
|
|
47
|
-
export declare class BadRequestException extends __BaseException {
|
|
48
|
-
readonly name: "BadRequestException";
|
|
49
|
-
readonly $fault: "client";
|
|
50
|
-
/**
|
|
51
|
-
* <p>A detailed message describing the problem.</p>
|
|
52
|
-
* @public
|
|
53
|
-
*/
|
|
54
|
-
detailedMessage: string | undefined;
|
|
55
|
-
/**
|
|
56
|
-
* <p>The ID of the bad request.</p>
|
|
57
|
-
* @public
|
|
58
|
-
*/
|
|
59
|
-
requestId: string | undefined;
|
|
60
|
-
/**
|
|
61
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
62
|
-
* @public
|
|
63
|
-
*/
|
|
64
|
-
code: string | undefined;
|
|
65
|
-
/**
|
|
66
|
-
* @internal
|
|
67
|
-
*/
|
|
68
|
-
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
69
|
-
}
|
|
2
|
+
import { Action, Encoding, Format, GraphSummaryType, IteratorType, Mode, OpenCypherExplainMode, Parallelism, S3BucketRegion, StatisticsAutoGenerationMode } from "./enums";
|
|
70
3
|
/**
|
|
71
4
|
* @public
|
|
72
5
|
*/
|
|
@@ -87,391 +20,6 @@ export interface CancelGremlinQueryOutput {
|
|
|
87
20
|
*/
|
|
88
21
|
status?: string | undefined;
|
|
89
22
|
}
|
|
90
|
-
/**
|
|
91
|
-
* <p>Raised when a request timed out in the client.</p>
|
|
92
|
-
* @public
|
|
93
|
-
*/
|
|
94
|
-
export declare class ClientTimeoutException extends __BaseException {
|
|
95
|
-
readonly name: "ClientTimeoutException";
|
|
96
|
-
readonly $fault: "client";
|
|
97
|
-
$retryable: {};
|
|
98
|
-
/**
|
|
99
|
-
* <p>A detailed message describing the problem.</p>
|
|
100
|
-
* @public
|
|
101
|
-
*/
|
|
102
|
-
detailedMessage: string | undefined;
|
|
103
|
-
/**
|
|
104
|
-
* <p>The ID of the request in question.</p>
|
|
105
|
-
* @public
|
|
106
|
-
*/
|
|
107
|
-
requestId: string | undefined;
|
|
108
|
-
/**
|
|
109
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
110
|
-
* @public
|
|
111
|
-
*/
|
|
112
|
-
code: string | undefined;
|
|
113
|
-
/**
|
|
114
|
-
* @internal
|
|
115
|
-
*/
|
|
116
|
-
constructor(opts: __ExceptionOptionType<ClientTimeoutException, __BaseException>);
|
|
117
|
-
}
|
|
118
|
-
/**
|
|
119
|
-
* <p>Raised when a request attempts to modify data that is concurrently being modified by another process.</p>
|
|
120
|
-
* @public
|
|
121
|
-
*/
|
|
122
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
123
|
-
readonly name: "ConcurrentModificationException";
|
|
124
|
-
readonly $fault: "server";
|
|
125
|
-
$retryable: {};
|
|
126
|
-
/**
|
|
127
|
-
* <p>A detailed message describing the problem.</p>
|
|
128
|
-
* @public
|
|
129
|
-
*/
|
|
130
|
-
detailedMessage: string | undefined;
|
|
131
|
-
/**
|
|
132
|
-
* <p>The ID of the request in question.</p>
|
|
133
|
-
* @public
|
|
134
|
-
*/
|
|
135
|
-
requestId: string | undefined;
|
|
136
|
-
/**
|
|
137
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
138
|
-
* @public
|
|
139
|
-
*/
|
|
140
|
-
code: string | undefined;
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
|
-
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
145
|
-
}
|
|
146
|
-
/**
|
|
147
|
-
* <p>Raised when a value in a request field did not satisfy required constraints.</p>
|
|
148
|
-
* @public
|
|
149
|
-
*/
|
|
150
|
-
export declare class ConstraintViolationException extends __BaseException {
|
|
151
|
-
readonly name: "ConstraintViolationException";
|
|
152
|
-
readonly $fault: "client";
|
|
153
|
-
$retryable: {};
|
|
154
|
-
/**
|
|
155
|
-
* <p>A detailed message describing the problem.</p>
|
|
156
|
-
* @public
|
|
157
|
-
*/
|
|
158
|
-
detailedMessage: string | undefined;
|
|
159
|
-
/**
|
|
160
|
-
* <p>The ID of the request in question.</p>
|
|
161
|
-
* @public
|
|
162
|
-
*/
|
|
163
|
-
requestId: string | undefined;
|
|
164
|
-
/**
|
|
165
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
166
|
-
* @public
|
|
167
|
-
*/
|
|
168
|
-
code: string | undefined;
|
|
169
|
-
/**
|
|
170
|
-
* @internal
|
|
171
|
-
*/
|
|
172
|
-
constructor(opts: __ExceptionOptionType<ConstraintViolationException, __BaseException>);
|
|
173
|
-
}
|
|
174
|
-
/**
|
|
175
|
-
* <p>Raised when a request fails.</p>
|
|
176
|
-
* @public
|
|
177
|
-
*/
|
|
178
|
-
export declare class FailureByQueryException extends __BaseException {
|
|
179
|
-
readonly name: "FailureByQueryException";
|
|
180
|
-
readonly $fault: "server";
|
|
181
|
-
$retryable: {};
|
|
182
|
-
/**
|
|
183
|
-
* <p>A detailed message describing the problem.</p>
|
|
184
|
-
* @public
|
|
185
|
-
*/
|
|
186
|
-
detailedMessage: string | undefined;
|
|
187
|
-
/**
|
|
188
|
-
* <p>The ID of the request in question.</p>
|
|
189
|
-
* @public
|
|
190
|
-
*/
|
|
191
|
-
requestId: string | undefined;
|
|
192
|
-
/**
|
|
193
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
194
|
-
* @public
|
|
195
|
-
*/
|
|
196
|
-
code: string | undefined;
|
|
197
|
-
/**
|
|
198
|
-
* @internal
|
|
199
|
-
*/
|
|
200
|
-
constructor(opts: __ExceptionOptionType<FailureByQueryException, __BaseException>);
|
|
201
|
-
}
|
|
202
|
-
/**
|
|
203
|
-
* <p>Raised when an argument in a request is not supported.</p>
|
|
204
|
-
* @public
|
|
205
|
-
*/
|
|
206
|
-
export declare class IllegalArgumentException extends __BaseException {
|
|
207
|
-
readonly name: "IllegalArgumentException";
|
|
208
|
-
readonly $fault: "client";
|
|
209
|
-
/**
|
|
210
|
-
* <p>A detailed message describing the problem.</p>
|
|
211
|
-
* @public
|
|
212
|
-
*/
|
|
213
|
-
detailedMessage: string | undefined;
|
|
214
|
-
/**
|
|
215
|
-
* <p>The ID of the request in question.</p>
|
|
216
|
-
* @public
|
|
217
|
-
*/
|
|
218
|
-
requestId: string | undefined;
|
|
219
|
-
/**
|
|
220
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
221
|
-
* @public
|
|
222
|
-
*/
|
|
223
|
-
code: string | undefined;
|
|
224
|
-
/**
|
|
225
|
-
* @internal
|
|
226
|
-
*/
|
|
227
|
-
constructor(opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>);
|
|
228
|
-
}
|
|
229
|
-
/**
|
|
230
|
-
* <p>Raised when an argument in a request has an invalid value.</p>
|
|
231
|
-
* @public
|
|
232
|
-
*/
|
|
233
|
-
export declare class InvalidArgumentException extends __BaseException {
|
|
234
|
-
readonly name: "InvalidArgumentException";
|
|
235
|
-
readonly $fault: "client";
|
|
236
|
-
/**
|
|
237
|
-
* <p>A detailed message describing the problem.</p>
|
|
238
|
-
* @public
|
|
239
|
-
*/
|
|
240
|
-
detailedMessage: string | undefined;
|
|
241
|
-
/**
|
|
242
|
-
* <p>The ID of the request in question.</p>
|
|
243
|
-
* @public
|
|
244
|
-
*/
|
|
245
|
-
requestId: string | undefined;
|
|
246
|
-
/**
|
|
247
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
248
|
-
* @public
|
|
249
|
-
*/
|
|
250
|
-
code: string | undefined;
|
|
251
|
-
/**
|
|
252
|
-
* @internal
|
|
253
|
-
*/
|
|
254
|
-
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
255
|
-
}
|
|
256
|
-
/**
|
|
257
|
-
* <p>Raised when a parameter value is not valid.</p>
|
|
258
|
-
* @public
|
|
259
|
-
*/
|
|
260
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
261
|
-
readonly name: "InvalidParameterException";
|
|
262
|
-
readonly $fault: "client";
|
|
263
|
-
/**
|
|
264
|
-
* <p>A detailed message describing the problem.</p>
|
|
265
|
-
* @public
|
|
266
|
-
*/
|
|
267
|
-
detailedMessage: string | undefined;
|
|
268
|
-
/**
|
|
269
|
-
* <p>The ID of the request that includes an invalid parameter.</p>
|
|
270
|
-
* @public
|
|
271
|
-
*/
|
|
272
|
-
requestId: string | undefined;
|
|
273
|
-
/**
|
|
274
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
275
|
-
* @public
|
|
276
|
-
*/
|
|
277
|
-
code: string | undefined;
|
|
278
|
-
/**
|
|
279
|
-
* @internal
|
|
280
|
-
*/
|
|
281
|
-
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
282
|
-
}
|
|
283
|
-
/**
|
|
284
|
-
* <p>Raised when a required parameter is missing.</p>
|
|
285
|
-
* @public
|
|
286
|
-
*/
|
|
287
|
-
export declare class MissingParameterException extends __BaseException {
|
|
288
|
-
readonly name: "MissingParameterException";
|
|
289
|
-
readonly $fault: "client";
|
|
290
|
-
/**
|
|
291
|
-
* <p>A detailed message describing the problem.</p>
|
|
292
|
-
* @public
|
|
293
|
-
*/
|
|
294
|
-
detailedMessage: string | undefined;
|
|
295
|
-
/**
|
|
296
|
-
* <p>The ID of the request in which the parameter is missing.</p>
|
|
297
|
-
* @public
|
|
298
|
-
*/
|
|
299
|
-
requestId: string | undefined;
|
|
300
|
-
/**
|
|
301
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
302
|
-
* @public
|
|
303
|
-
*/
|
|
304
|
-
code: string | undefined;
|
|
305
|
-
/**
|
|
306
|
-
* @internal
|
|
307
|
-
*/
|
|
308
|
-
constructor(opts: __ExceptionOptionType<MissingParameterException, __BaseException>);
|
|
309
|
-
}
|
|
310
|
-
/**
|
|
311
|
-
* <p>Raised when a parsing issue is encountered.</p>
|
|
312
|
-
* @public
|
|
313
|
-
*/
|
|
314
|
-
export declare class ParsingException extends __BaseException {
|
|
315
|
-
readonly name: "ParsingException";
|
|
316
|
-
readonly $fault: "client";
|
|
317
|
-
/**
|
|
318
|
-
* <p>A detailed message describing the problem.</p>
|
|
319
|
-
* @public
|
|
320
|
-
*/
|
|
321
|
-
detailedMessage: string | undefined;
|
|
322
|
-
/**
|
|
323
|
-
* <p>The ID of the request in question.</p>
|
|
324
|
-
* @public
|
|
325
|
-
*/
|
|
326
|
-
requestId: string | undefined;
|
|
327
|
-
/**
|
|
328
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
329
|
-
* @public
|
|
330
|
-
*/
|
|
331
|
-
code: string | undefined;
|
|
332
|
-
/**
|
|
333
|
-
* @internal
|
|
334
|
-
*/
|
|
335
|
-
constructor(opts: __ExceptionOptionType<ParsingException, __BaseException>);
|
|
336
|
-
}
|
|
337
|
-
/**
|
|
338
|
-
* <p>Raised when a precondition for processing a request is not satisfied.</p>
|
|
339
|
-
* @public
|
|
340
|
-
*/
|
|
341
|
-
export declare class PreconditionsFailedException extends __BaseException {
|
|
342
|
-
readonly name: "PreconditionsFailedException";
|
|
343
|
-
readonly $fault: "client";
|
|
344
|
-
/**
|
|
345
|
-
* <p>A detailed message describing the problem.</p>
|
|
346
|
-
* @public
|
|
347
|
-
*/
|
|
348
|
-
detailedMessage: string | undefined;
|
|
349
|
-
/**
|
|
350
|
-
* <p>The ID of the request in question.</p>
|
|
351
|
-
* @public
|
|
352
|
-
*/
|
|
353
|
-
requestId: string | undefined;
|
|
354
|
-
/**
|
|
355
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
356
|
-
* @public
|
|
357
|
-
*/
|
|
358
|
-
code: string | undefined;
|
|
359
|
-
/**
|
|
360
|
-
* @internal
|
|
361
|
-
*/
|
|
362
|
-
constructor(opts: __ExceptionOptionType<PreconditionsFailedException, __BaseException>);
|
|
363
|
-
}
|
|
364
|
-
/**
|
|
365
|
-
* <p>Raised when the an operation exceeds the time limit allowed for it.</p>
|
|
366
|
-
* @public
|
|
367
|
-
*/
|
|
368
|
-
export declare class TimeLimitExceededException extends __BaseException {
|
|
369
|
-
readonly name: "TimeLimitExceededException";
|
|
370
|
-
readonly $fault: "server";
|
|
371
|
-
$retryable: {};
|
|
372
|
-
/**
|
|
373
|
-
* <p>A detailed message describing the problem.</p>
|
|
374
|
-
* @public
|
|
375
|
-
*/
|
|
376
|
-
detailedMessage: string | undefined;
|
|
377
|
-
/**
|
|
378
|
-
* <p>The ID of the request that could not be processed for this reason.</p>
|
|
379
|
-
* @public
|
|
380
|
-
*/
|
|
381
|
-
requestId: string | undefined;
|
|
382
|
-
/**
|
|
383
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
384
|
-
* @public
|
|
385
|
-
*/
|
|
386
|
-
code: string | undefined;
|
|
387
|
-
/**
|
|
388
|
-
* @internal
|
|
389
|
-
*/
|
|
390
|
-
constructor(opts: __ExceptionOptionType<TimeLimitExceededException, __BaseException>);
|
|
391
|
-
}
|
|
392
|
-
/**
|
|
393
|
-
* <p>Raised when the number of requests being processed exceeds the limit.</p>
|
|
394
|
-
* @public
|
|
395
|
-
*/
|
|
396
|
-
export declare class TooManyRequestsException extends __BaseException {
|
|
397
|
-
readonly name: "TooManyRequestsException";
|
|
398
|
-
readonly $fault: "client";
|
|
399
|
-
$retryable: {};
|
|
400
|
-
/**
|
|
401
|
-
* <p>A detailed message describing the problem.</p>
|
|
402
|
-
* @public
|
|
403
|
-
*/
|
|
404
|
-
detailedMessage: string | undefined;
|
|
405
|
-
/**
|
|
406
|
-
* <p>The ID of the request that could not be processed for this reason.</p>
|
|
407
|
-
* @public
|
|
408
|
-
*/
|
|
409
|
-
requestId: string | undefined;
|
|
410
|
-
/**
|
|
411
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
412
|
-
* @public
|
|
413
|
-
*/
|
|
414
|
-
code: string | undefined;
|
|
415
|
-
/**
|
|
416
|
-
* @internal
|
|
417
|
-
*/
|
|
418
|
-
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
419
|
-
}
|
|
420
|
-
/**
|
|
421
|
-
* <p>Raised when a request attempts to initiate an operation that is not supported.</p>
|
|
422
|
-
* @public
|
|
423
|
-
*/
|
|
424
|
-
export declare class UnsupportedOperationException extends __BaseException {
|
|
425
|
-
readonly name: "UnsupportedOperationException";
|
|
426
|
-
readonly $fault: "client";
|
|
427
|
-
/**
|
|
428
|
-
* <p>A detailed message describing the problem.</p>
|
|
429
|
-
* @public
|
|
430
|
-
*/
|
|
431
|
-
detailedMessage: string | undefined;
|
|
432
|
-
/**
|
|
433
|
-
* <p>The ID of the request in question.</p>
|
|
434
|
-
* @public
|
|
435
|
-
*/
|
|
436
|
-
requestId: string | undefined;
|
|
437
|
-
/**
|
|
438
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
439
|
-
* @public
|
|
440
|
-
*/
|
|
441
|
-
code: string | undefined;
|
|
442
|
-
/**
|
|
443
|
-
* @internal
|
|
444
|
-
*/
|
|
445
|
-
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
446
|
-
}
|
|
447
|
-
/**
|
|
448
|
-
* <p>Raised when a specified bulk-load job ID cannot be found.</p>
|
|
449
|
-
* @public
|
|
450
|
-
*/
|
|
451
|
-
export declare class BulkLoadIdNotFoundException extends __BaseException {
|
|
452
|
-
readonly name: "BulkLoadIdNotFoundException";
|
|
453
|
-
readonly $fault: "client";
|
|
454
|
-
$retryable: {};
|
|
455
|
-
/**
|
|
456
|
-
* <p>A detailed message describing the problem.</p>
|
|
457
|
-
* @public
|
|
458
|
-
*/
|
|
459
|
-
detailedMessage: string | undefined;
|
|
460
|
-
/**
|
|
461
|
-
* <p>The bulk-load job ID that could not be found.</p>
|
|
462
|
-
* @public
|
|
463
|
-
*/
|
|
464
|
-
requestId: string | undefined;
|
|
465
|
-
/**
|
|
466
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
467
|
-
* @public
|
|
468
|
-
*/
|
|
469
|
-
code: string | undefined;
|
|
470
|
-
/**
|
|
471
|
-
* @internal
|
|
472
|
-
*/
|
|
473
|
-
constructor(opts: __ExceptionOptionType<BulkLoadIdNotFoundException, __BaseException>);
|
|
474
|
-
}
|
|
475
23
|
/**
|
|
476
24
|
* @public
|
|
477
25
|
*/
|
|
@@ -492,60 +40,6 @@ export interface CancelLoaderJobOutput {
|
|
|
492
40
|
*/
|
|
493
41
|
status?: string | undefined;
|
|
494
42
|
}
|
|
495
|
-
/**
|
|
496
|
-
* <p>Raised when the processing of the request failed unexpectedly.</p>
|
|
497
|
-
* @public
|
|
498
|
-
*/
|
|
499
|
-
export declare class InternalFailureException extends __BaseException {
|
|
500
|
-
readonly name: "InternalFailureException";
|
|
501
|
-
readonly $fault: "server";
|
|
502
|
-
/**
|
|
503
|
-
* <p>A detailed message describing the problem.</p>
|
|
504
|
-
* @public
|
|
505
|
-
*/
|
|
506
|
-
detailedMessage: string | undefined;
|
|
507
|
-
/**
|
|
508
|
-
* <p>The ID of the request in question.</p>
|
|
509
|
-
* @public
|
|
510
|
-
*/
|
|
511
|
-
requestId: string | undefined;
|
|
512
|
-
/**
|
|
513
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
514
|
-
* @public
|
|
515
|
-
*/
|
|
516
|
-
code: string | undefined;
|
|
517
|
-
/**
|
|
518
|
-
* @internal
|
|
519
|
-
*/
|
|
520
|
-
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
521
|
-
}
|
|
522
|
-
/**
|
|
523
|
-
* <p>Raised when access is denied to a specified load URL.</p>
|
|
524
|
-
* @public
|
|
525
|
-
*/
|
|
526
|
-
export declare class LoadUrlAccessDeniedException extends __BaseException {
|
|
527
|
-
readonly name: "LoadUrlAccessDeniedException";
|
|
528
|
-
readonly $fault: "client";
|
|
529
|
-
/**
|
|
530
|
-
* <p>A detailed message describing the problem.</p>
|
|
531
|
-
* @public
|
|
532
|
-
*/
|
|
533
|
-
detailedMessage: string | undefined;
|
|
534
|
-
/**
|
|
535
|
-
* <p>The ID of the request in question.</p>
|
|
536
|
-
* @public
|
|
537
|
-
*/
|
|
538
|
-
requestId: string | undefined;
|
|
539
|
-
/**
|
|
540
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
541
|
-
* @public
|
|
542
|
-
*/
|
|
543
|
-
code: string | undefined;
|
|
544
|
-
/**
|
|
545
|
-
* @internal
|
|
546
|
-
*/
|
|
547
|
-
constructor(opts: __ExceptionOptionType<LoadUrlAccessDeniedException, __BaseException>);
|
|
548
|
-
}
|
|
549
43
|
/**
|
|
550
44
|
* @public
|
|
551
45
|
*/
|
|
@@ -576,33 +70,6 @@ export interface CancelMLDataProcessingJobOutput {
|
|
|
576
70
|
*/
|
|
577
71
|
status?: string | undefined;
|
|
578
72
|
}
|
|
579
|
-
/**
|
|
580
|
-
* <p>Raised when a specified machine-learning resource could not be found.</p>
|
|
581
|
-
* @public
|
|
582
|
-
*/
|
|
583
|
-
export declare class MLResourceNotFoundException extends __BaseException {
|
|
584
|
-
readonly name: "MLResourceNotFoundException";
|
|
585
|
-
readonly $fault: "client";
|
|
586
|
-
/**
|
|
587
|
-
* <p>A detailed message describing the problem.</p>
|
|
588
|
-
* @public
|
|
589
|
-
*/
|
|
590
|
-
detailedMessage: string | undefined;
|
|
591
|
-
/**
|
|
592
|
-
* <p>The ID of the request in question.</p>
|
|
593
|
-
* @public
|
|
594
|
-
*/
|
|
595
|
-
requestId: string | undefined;
|
|
596
|
-
/**
|
|
597
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
598
|
-
* @public
|
|
599
|
-
*/
|
|
600
|
-
code: string | undefined;
|
|
601
|
-
/**
|
|
602
|
-
* @internal
|
|
603
|
-
*/
|
|
604
|
-
constructor(opts: __ExceptionOptionType<MLResourceNotFoundException, __BaseException>);
|
|
605
|
-
}
|
|
606
73
|
/**
|
|
607
74
|
* @public
|
|
608
75
|
*/
|
|
@@ -691,523 +158,224 @@ export interface CancelOpenCypherQueryOutput {
|
|
|
691
158
|
* <p>The cancelation payload for the openCypher query.</p>
|
|
692
159
|
* @public
|
|
693
160
|
*/
|
|
694
|
-
payload?: boolean | undefined;
|
|
695
|
-
}
|
|
696
|
-
/**
|
|
697
|
-
* <p>Raised when invalid numerical data is encountered when servicing a request.</p>
|
|
698
|
-
* @public
|
|
699
|
-
*/
|
|
700
|
-
export declare class InvalidNumericDataException extends __BaseException {
|
|
701
|
-
readonly name: "InvalidNumericDataException";
|
|
702
|
-
readonly $fault: "client";
|
|
703
|
-
/**
|
|
704
|
-
* <p>A detailed message describing the problem.</p>
|
|
705
|
-
* @public
|
|
706
|
-
*/
|
|
707
|
-
detailedMessage: string | undefined;
|
|
708
|
-
/**
|
|
709
|
-
* <p>The ID of the request in question.</p>
|
|
710
|
-
* @public
|
|
711
|
-
*/
|
|
712
|
-
requestId: string | undefined;
|
|
713
|
-
/**
|
|
714
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
715
|
-
* @public
|
|
716
|
-
*/
|
|
717
|
-
code: string | undefined;
|
|
718
|
-
/**
|
|
719
|
-
* @internal
|
|
720
|
-
*/
|
|
721
|
-
constructor(opts: __ExceptionOptionType<InvalidNumericDataException, __BaseException>);
|
|
722
|
-
}
|
|
723
|
-
/**
|
|
724
|
-
* @public
|
|
725
|
-
*/
|
|
726
|
-
export interface CreateMLEndpointInput {
|
|
727
|
-
/**
|
|
728
|
-
* <p>A unique identifier for the new inference endpoint. The default is an autogenerated timestamped name.</p>
|
|
729
|
-
* @public
|
|
730
|
-
*/
|
|
731
|
-
id?: string | undefined;
|
|
732
|
-
/**
|
|
733
|
-
* <p>The job Id of the completed model-training job that has created the model that the inference endpoint will point to. You must supply either the <code>mlModelTrainingJobId</code> or the <code>mlModelTransformJobId</code>.</p>
|
|
734
|
-
* @public
|
|
735
|
-
*/
|
|
736
|
-
mlModelTrainingJobId?: string | undefined;
|
|
737
|
-
/**
|
|
738
|
-
* <p>The job Id of the completed model-transform job. You must supply either the <code>mlModelTrainingJobId</code> or the <code>mlModelTransformJobId</code>.</p>
|
|
739
|
-
* @public
|
|
740
|
-
*/
|
|
741
|
-
mlModelTransformJobId?: string | undefined;
|
|
742
|
-
/**
|
|
743
|
-
* <p>If set to <code>true</code>, <code>update</code> indicates that this is an update request. The default is <code>false</code>. You must supply either the <code>mlModelTrainingJobId</code> or the <code>mlModelTransformJobId</code>.</p>
|
|
744
|
-
* @public
|
|
745
|
-
*/
|
|
746
|
-
update?: boolean | undefined;
|
|
747
|
-
/**
|
|
748
|
-
* <p>The ARN of an IAM role providing Neptune access to SageMaker and Amazon S3 resources. This must be listed in your DB cluster parameter group or an error will be thrown.</p>
|
|
749
|
-
* @public
|
|
750
|
-
*/
|
|
751
|
-
neptuneIamRoleArn?: string | undefined;
|
|
752
|
-
/**
|
|
753
|
-
* <p>Model type for training. By default the Neptune ML model is automatically based on the <code>modelType</code> used in data processing, but you can specify a different model type here. The default is <code>rgcn</code> for heterogeneous graphs and <code>kge</code> for knowledge graphs. The only valid value for heterogeneous graphs is <code>rgcn</code>. Valid values for knowledge graphs are: <code>kge</code>, <code>transe</code>, <code>distmult</code>, and <code>rotate</code>.</p>
|
|
754
|
-
* @public
|
|
755
|
-
*/
|
|
756
|
-
modelName?: string | undefined;
|
|
757
|
-
/**
|
|
758
|
-
* <p>The type of Neptune ML instance to use for online servicing. The default is <code>ml.m5.xlarge</code>. Choosing the ML instance for an inference endpoint depends on the task type, the graph size, and your budget.</p>
|
|
759
|
-
* @public
|
|
760
|
-
*/
|
|
761
|
-
instanceType?: string | undefined;
|
|
762
|
-
/**
|
|
763
|
-
* <p>The minimum number of Amazon EC2 instances to deploy to an endpoint for prediction. The default is 1</p>
|
|
764
|
-
* @public
|
|
765
|
-
*/
|
|
766
|
-
instanceCount?: number | undefined;
|
|
767
|
-
/**
|
|
768
|
-
* <p>The Amazon Key Management Service (Amazon KMS) key that SageMaker uses to encrypt data on the storage volume attached to the ML compute instances that run the training job. The default is None.</p>
|
|
769
|
-
* @public
|
|
770
|
-
*/
|
|
771
|
-
volumeEncryptionKMSKey?: string | undefined;
|
|
772
|
-
}
|
|
773
|
-
/**
|
|
774
|
-
* @public
|
|
775
|
-
*/
|
|
776
|
-
export interface CreateMLEndpointOutput {
|
|
777
|
-
/**
|
|
778
|
-
* <p>The unique ID of the new inference endpoint.</p>
|
|
779
|
-
* @public
|
|
780
|
-
*/
|
|
781
|
-
id?: string | undefined;
|
|
782
|
-
/**
|
|
783
|
-
* <p>The ARN for the new inference endpoint.</p>
|
|
784
|
-
* @public
|
|
785
|
-
*/
|
|
786
|
-
arn?: string | undefined;
|
|
787
|
-
/**
|
|
788
|
-
* <p>The endpoint creation time, in milliseconds.</p>
|
|
789
|
-
* @public
|
|
790
|
-
*/
|
|
791
|
-
creationTimeInMillis?: number | undefined;
|
|
792
|
-
}
|
|
793
|
-
/**
|
|
794
|
-
* @public
|
|
795
|
-
*/
|
|
796
|
-
export interface DeleteMLEndpointInput {
|
|
797
|
-
/**
|
|
798
|
-
* <p>The unique identifier of the inference endpoint.</p>
|
|
799
|
-
* @public
|
|
800
|
-
*/
|
|
801
|
-
id: string | undefined;
|
|
802
|
-
/**
|
|
803
|
-
* <p>The ARN of an IAM role providing Neptune access to SageMaker and Amazon S3 resources. This must be listed in your DB cluster parameter group or an error will be thrown.</p>
|
|
804
|
-
* @public
|
|
805
|
-
*/
|
|
806
|
-
neptuneIamRoleArn?: string | undefined;
|
|
807
|
-
/**
|
|
808
|
-
* <p>If this flag is set to <code>TRUE</code>, all Neptune ML S3 artifacts should be deleted when the job is stopped. The default is <code>FALSE</code>.</p>
|
|
809
|
-
* @public
|
|
810
|
-
*/
|
|
811
|
-
clean?: boolean | undefined;
|
|
812
|
-
}
|
|
813
|
-
/**
|
|
814
|
-
* @public
|
|
815
|
-
*/
|
|
816
|
-
export interface DeleteMLEndpointOutput {
|
|
817
|
-
/**
|
|
818
|
-
* <p>The status of the cancellation.</p>
|
|
819
|
-
* @public
|
|
820
|
-
*/
|
|
821
|
-
status?: string | undefined;
|
|
822
|
-
}
|
|
823
|
-
/**
|
|
824
|
-
* <p>The payload for DeleteStatistics.</p>
|
|
825
|
-
* @public
|
|
826
|
-
*/
|
|
827
|
-
export interface DeleteStatisticsValueMap {
|
|
828
|
-
/**
|
|
829
|
-
* <p>The current status of the statistics.</p>
|
|
830
|
-
* @public
|
|
831
|
-
*/
|
|
832
|
-
active?: boolean | undefined;
|
|
833
|
-
/**
|
|
834
|
-
* <p>The ID of the statistics generation run that is currently occurring.</p>
|
|
835
|
-
* @public
|
|
836
|
-
*/
|
|
837
|
-
statisticsId?: string | undefined;
|
|
838
|
-
}
|
|
839
|
-
/**
|
|
840
|
-
* @public
|
|
841
|
-
*/
|
|
842
|
-
export interface DeletePropertygraphStatisticsOutput {
|
|
843
|
-
/**
|
|
844
|
-
* <p>The HTTP response code: 200 if the delete was successful, or 204 if there were no statistics to delete.</p>
|
|
845
|
-
* @public
|
|
846
|
-
*/
|
|
847
|
-
statusCode?: number | undefined;
|
|
848
|
-
/**
|
|
849
|
-
* <p>The cancel status.</p>
|
|
850
|
-
* @public
|
|
851
|
-
*/
|
|
852
|
-
status?: string | undefined;
|
|
853
|
-
/**
|
|
854
|
-
* <p>The deletion payload.</p>
|
|
855
|
-
* @public
|
|
856
|
-
*/
|
|
857
|
-
payload?: DeleteStatisticsValueMap | undefined;
|
|
858
|
-
}
|
|
859
|
-
/**
|
|
860
|
-
* <p>Raised when a request attempts to write to a read-only resource.</p>
|
|
861
|
-
* @public
|
|
862
|
-
*/
|
|
863
|
-
export declare class ReadOnlyViolationException extends __BaseException {
|
|
864
|
-
readonly name: "ReadOnlyViolationException";
|
|
865
|
-
readonly $fault: "client";
|
|
866
|
-
/**
|
|
867
|
-
* <p>A detailed message describing the problem.</p>
|
|
868
|
-
* @public
|
|
869
|
-
*/
|
|
870
|
-
detailedMessage: string | undefined;
|
|
871
|
-
/**
|
|
872
|
-
* <p>The ID of the request in which the parameter is missing.</p>
|
|
873
|
-
* @public
|
|
874
|
-
*/
|
|
875
|
-
requestId: string | undefined;
|
|
876
|
-
/**
|
|
877
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
878
|
-
* @public
|
|
879
|
-
*/
|
|
880
|
-
code: string | undefined;
|
|
881
|
-
/**
|
|
882
|
-
* @internal
|
|
883
|
-
*/
|
|
884
|
-
constructor(opts: __ExceptionOptionType<ReadOnlyViolationException, __BaseException>);
|
|
885
|
-
}
|
|
886
|
-
/**
|
|
887
|
-
* <p>Raised when statistics needed to satisfy a request are not available.</p>
|
|
888
|
-
* @public
|
|
889
|
-
*/
|
|
890
|
-
export declare class StatisticsNotAvailableException extends __BaseException {
|
|
891
|
-
readonly name: "StatisticsNotAvailableException";
|
|
892
|
-
readonly $fault: "client";
|
|
893
|
-
/**
|
|
894
|
-
* <p>A detailed message describing the problem.</p>
|
|
895
|
-
* @public
|
|
896
|
-
*/
|
|
897
|
-
detailedMessage: string | undefined;
|
|
898
|
-
/**
|
|
899
|
-
* <p>The ID of the request in question.</p>
|
|
900
|
-
* @public
|
|
901
|
-
*/
|
|
902
|
-
requestId: string | undefined;
|
|
903
|
-
/**
|
|
904
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
905
|
-
* @public
|
|
906
|
-
*/
|
|
907
|
-
code: string | undefined;
|
|
908
|
-
/**
|
|
909
|
-
* @internal
|
|
910
|
-
*/
|
|
911
|
-
constructor(opts: __ExceptionOptionType<StatisticsNotAvailableException, __BaseException>);
|
|
912
|
-
}
|
|
913
|
-
/**
|
|
914
|
-
* @public
|
|
915
|
-
*/
|
|
916
|
-
export interface DeleteSparqlStatisticsOutput {
|
|
917
|
-
/**
|
|
918
|
-
* <p>The HTTP response code: 200 if the delete was successful, or 204 if there were no statistics to delete.</p>
|
|
919
|
-
* @public
|
|
920
|
-
*/
|
|
921
|
-
statusCode?: number | undefined;
|
|
922
|
-
/**
|
|
923
|
-
* <p>The cancel status.</p>
|
|
924
|
-
* @public
|
|
925
|
-
*/
|
|
926
|
-
status?: string | undefined;
|
|
927
|
-
/**
|
|
928
|
-
* <p>The deletion payload.</p>
|
|
929
|
-
* @public
|
|
930
|
-
*/
|
|
931
|
-
payload?: DeleteStatisticsValueMap | undefined;
|
|
161
|
+
payload?: boolean | undefined;
|
|
932
162
|
}
|
|
933
163
|
/**
|
|
934
164
|
* @public
|
|
935
165
|
*/
|
|
936
|
-
export interface
|
|
166
|
+
export interface CreateMLEndpointInput {
|
|
937
167
|
/**
|
|
938
|
-
* <p>
|
|
168
|
+
* <p>A unique identifier for the new inference endpoint. The default is an autogenerated timestamped name.</p>
|
|
939
169
|
* @public
|
|
940
170
|
*/
|
|
941
|
-
|
|
171
|
+
id?: string | undefined;
|
|
942
172
|
/**
|
|
943
|
-
* <p>The
|
|
173
|
+
* <p>The job Id of the completed model-training job that has created the model that the inference endpoint will point to. You must supply either the <code>mlModelTrainingJobId</code> or the <code>mlModelTransformJobId</code>.</p>
|
|
944
174
|
* @public
|
|
945
175
|
*/
|
|
946
|
-
|
|
947
|
-
}
|
|
948
|
-
/**
|
|
949
|
-
* <p>A structure containing the fast reset token used to initiate a fast reset.</p>
|
|
950
|
-
* @public
|
|
951
|
-
*/
|
|
952
|
-
export interface FastResetToken {
|
|
176
|
+
mlModelTrainingJobId?: string | undefined;
|
|
953
177
|
/**
|
|
954
|
-
* <p>
|
|
178
|
+
* <p>The job Id of the completed model-transform job. You must supply either the <code>mlModelTrainingJobId</code> or the <code>mlModelTransformJobId</code>.</p>
|
|
955
179
|
* @public
|
|
956
180
|
*/
|
|
957
|
-
|
|
958
|
-
}
|
|
959
|
-
/**
|
|
960
|
-
* @public
|
|
961
|
-
*/
|
|
962
|
-
export interface ExecuteFastResetOutput {
|
|
181
|
+
mlModelTransformJobId?: string | undefined;
|
|
963
182
|
/**
|
|
964
|
-
* <p>
|
|
183
|
+
* <p>If set to <code>true</code>, <code>update</code> indicates that this is an update request. The default is <code>false</code>. You must supply either the <code>mlModelTrainingJobId</code> or the <code>mlModelTransformJobId</code>.</p>
|
|
965
184
|
* @public
|
|
966
185
|
*/
|
|
967
|
-
|
|
186
|
+
update?: boolean | undefined;
|
|
968
187
|
/**
|
|
969
|
-
* <p>The
|
|
188
|
+
* <p>The ARN of an IAM role providing Neptune access to SageMaker and Amazon S3 resources. This must be listed in your DB cluster parameter group or an error will be thrown.</p>
|
|
970
189
|
* @public
|
|
971
190
|
*/
|
|
972
|
-
|
|
973
|
-
}
|
|
974
|
-
/**
|
|
975
|
-
* <p>Raised when the HTTP method used by a request is not supported by the endpoint being used.</p>
|
|
976
|
-
* @public
|
|
977
|
-
*/
|
|
978
|
-
export declare class MethodNotAllowedException extends __BaseException {
|
|
979
|
-
readonly name: "MethodNotAllowedException";
|
|
980
|
-
readonly $fault: "client";
|
|
191
|
+
neptuneIamRoleArn?: string | undefined;
|
|
981
192
|
/**
|
|
982
|
-
* <p>
|
|
193
|
+
* <p>Model type for training. By default the Neptune ML model is automatically based on the <code>modelType</code> used in data processing, but you can specify a different model type here. The default is <code>rgcn</code> for heterogeneous graphs and <code>kge</code> for knowledge graphs. The only valid value for heterogeneous graphs is <code>rgcn</code>. Valid values for knowledge graphs are: <code>kge</code>, <code>transe</code>, <code>distmult</code>, and <code>rotate</code>.</p>
|
|
983
194
|
* @public
|
|
984
195
|
*/
|
|
985
|
-
|
|
196
|
+
modelName?: string | undefined;
|
|
986
197
|
/**
|
|
987
|
-
* <p>The
|
|
198
|
+
* <p>The type of Neptune ML instance to use for online servicing. The default is <code>ml.m5.xlarge</code>. Choosing the ML instance for an inference endpoint depends on the task type, the graph size, and your budget.</p>
|
|
988
199
|
* @public
|
|
989
200
|
*/
|
|
990
|
-
|
|
201
|
+
instanceType?: string | undefined;
|
|
991
202
|
/**
|
|
992
|
-
* <p>The
|
|
203
|
+
* <p>The minimum number of Amazon EC2 instances to deploy to an endpoint for prediction. The default is 1</p>
|
|
993
204
|
* @public
|
|
994
205
|
*/
|
|
995
|
-
|
|
206
|
+
instanceCount?: number | undefined;
|
|
996
207
|
/**
|
|
997
|
-
*
|
|
208
|
+
* <p>The Amazon Key Management Service (Amazon KMS) key that SageMaker uses to encrypt data on the storage volume attached to the ML compute instances that run the training job. The default is None.</p>
|
|
209
|
+
* @public
|
|
998
210
|
*/
|
|
999
|
-
|
|
211
|
+
volumeEncryptionKMSKey?: string | undefined;
|
|
1000
212
|
}
|
|
1001
213
|
/**
|
|
1002
|
-
* <p>Raised when the server shuts down while processing a request.</p>
|
|
1003
214
|
* @public
|
|
1004
215
|
*/
|
|
1005
|
-
export
|
|
1006
|
-
readonly name: "ServerShutdownException";
|
|
1007
|
-
readonly $fault: "server";
|
|
216
|
+
export interface CreateMLEndpointOutput {
|
|
1008
217
|
/**
|
|
1009
|
-
* <p>
|
|
218
|
+
* <p>The unique ID of the new inference endpoint.</p>
|
|
1010
219
|
* @public
|
|
1011
220
|
*/
|
|
1012
|
-
|
|
221
|
+
id?: string | undefined;
|
|
1013
222
|
/**
|
|
1014
|
-
* <p>The
|
|
223
|
+
* <p>The ARN for the new inference endpoint.</p>
|
|
1015
224
|
* @public
|
|
1016
225
|
*/
|
|
1017
|
-
|
|
226
|
+
arn?: string | undefined;
|
|
1018
227
|
/**
|
|
1019
|
-
* <p>The
|
|
228
|
+
* <p>The endpoint creation time, in milliseconds.</p>
|
|
1020
229
|
* @public
|
|
1021
230
|
*/
|
|
1022
|
-
|
|
1023
|
-
/**
|
|
1024
|
-
* @internal
|
|
1025
|
-
*/
|
|
1026
|
-
constructor(opts: __ExceptionOptionType<ServerShutdownException, __BaseException>);
|
|
231
|
+
creationTimeInMillis?: number | undefined;
|
|
1027
232
|
}
|
|
1028
233
|
/**
|
|
1029
|
-
* <p>Raised when a user cancelled a request.</p>
|
|
1030
234
|
* @public
|
|
1031
235
|
*/
|
|
1032
|
-
export
|
|
1033
|
-
readonly name: "CancelledByUserException";
|
|
1034
|
-
readonly $fault: "server";
|
|
236
|
+
export interface DeleteMLEndpointInput {
|
|
1035
237
|
/**
|
|
1036
|
-
* <p>
|
|
238
|
+
* <p>The unique identifier of the inference endpoint.</p>
|
|
1037
239
|
* @public
|
|
1038
240
|
*/
|
|
1039
|
-
|
|
241
|
+
id: string | undefined;
|
|
1040
242
|
/**
|
|
1041
|
-
* <p>The
|
|
243
|
+
* <p>The ARN of an IAM role providing Neptune access to SageMaker and Amazon S3 resources. This must be listed in your DB cluster parameter group or an error will be thrown.</p>
|
|
1042
244
|
* @public
|
|
1043
245
|
*/
|
|
1044
|
-
|
|
246
|
+
neptuneIamRoleArn?: string | undefined;
|
|
1045
247
|
/**
|
|
1046
|
-
* <p>
|
|
248
|
+
* <p>If this flag is set to <code>TRUE</code>, all Neptune ML S3 artifacts should be deleted when the job is stopped. The default is <code>FALSE</code>.</p>
|
|
1047
249
|
* @public
|
|
1048
250
|
*/
|
|
1049
|
-
|
|
1050
|
-
/**
|
|
1051
|
-
* @internal
|
|
1052
|
-
*/
|
|
1053
|
-
constructor(opts: __ExceptionOptionType<CancelledByUserException, __BaseException>);
|
|
251
|
+
clean?: boolean | undefined;
|
|
1054
252
|
}
|
|
1055
253
|
/**
|
|
1056
254
|
* @public
|
|
1057
255
|
*/
|
|
1058
|
-
export interface
|
|
256
|
+
export interface DeleteMLEndpointOutput {
|
|
1059
257
|
/**
|
|
1060
|
-
* <p>The
|
|
258
|
+
* <p>The status of the cancellation.</p>
|
|
1061
259
|
* @public
|
|
1062
260
|
*/
|
|
1063
|
-
|
|
261
|
+
status?: string | undefined;
|
|
1064
262
|
}
|
|
1065
263
|
/**
|
|
264
|
+
* <p>The payload for DeleteStatistics.</p>
|
|
1066
265
|
* @public
|
|
1067
266
|
*/
|
|
1068
|
-
export interface
|
|
267
|
+
export interface DeleteStatisticsValueMap {
|
|
1069
268
|
/**
|
|
1070
|
-
* <p>
|
|
269
|
+
* <p>The current status of the statistics.</p>
|
|
1071
270
|
* @public
|
|
1072
271
|
*/
|
|
1073
|
-
|
|
272
|
+
active?: boolean | undefined;
|
|
273
|
+
/**
|
|
274
|
+
* <p>The ID of the statistics generation run that is currently occurring.</p>
|
|
275
|
+
* @public
|
|
276
|
+
*/
|
|
277
|
+
statisticsId?: string | undefined;
|
|
1074
278
|
}
|
|
1075
279
|
/**
|
|
1076
|
-
* <p>Raised when a query is submitted that is syntactically incorrect or does not pass additional validation.</p>
|
|
1077
280
|
* @public
|
|
1078
281
|
*/
|
|
1079
|
-
export
|
|
1080
|
-
readonly name: "MalformedQueryException";
|
|
1081
|
-
readonly $fault: "client";
|
|
282
|
+
export interface DeletePropertygraphStatisticsOutput {
|
|
1082
283
|
/**
|
|
1083
|
-
* <p>
|
|
284
|
+
* <p>The HTTP response code: 200 if the delete was successful, or 204 if there were no statistics to delete.</p>
|
|
1084
285
|
* @public
|
|
1085
286
|
*/
|
|
1086
|
-
|
|
287
|
+
statusCode?: number | undefined;
|
|
1087
288
|
/**
|
|
1088
|
-
* <p>The
|
|
289
|
+
* <p>The cancel status.</p>
|
|
1089
290
|
* @public
|
|
1090
291
|
*/
|
|
1091
|
-
|
|
292
|
+
status?: string | undefined;
|
|
1092
293
|
/**
|
|
1093
|
-
* <p>The
|
|
294
|
+
* <p>The deletion payload.</p>
|
|
1094
295
|
* @public
|
|
1095
296
|
*/
|
|
1096
|
-
|
|
1097
|
-
/**
|
|
1098
|
-
* @internal
|
|
1099
|
-
*/
|
|
1100
|
-
constructor(opts: __ExceptionOptionType<MalformedQueryException, __BaseException>);
|
|
297
|
+
payload?: DeleteStatisticsValueMap | undefined;
|
|
1101
298
|
}
|
|
1102
299
|
/**
|
|
1103
|
-
* <p>Raised when a request fails because of insufficient memory resources. The request can be retried.</p>
|
|
1104
300
|
* @public
|
|
1105
301
|
*/
|
|
1106
|
-
export
|
|
1107
|
-
readonly name: "MemoryLimitExceededException";
|
|
1108
|
-
readonly $fault: "server";
|
|
1109
|
-
$retryable: {};
|
|
302
|
+
export interface DeleteSparqlStatisticsOutput {
|
|
1110
303
|
/**
|
|
1111
|
-
* <p>
|
|
304
|
+
* <p>The HTTP response code: 200 if the delete was successful, or 204 if there were no statistics to delete.</p>
|
|
1112
305
|
* @public
|
|
1113
306
|
*/
|
|
1114
|
-
|
|
307
|
+
statusCode?: number | undefined;
|
|
1115
308
|
/**
|
|
1116
|
-
* <p>The
|
|
309
|
+
* <p>The cancel status.</p>
|
|
1117
310
|
* @public
|
|
1118
311
|
*/
|
|
1119
|
-
|
|
312
|
+
status?: string | undefined;
|
|
1120
313
|
/**
|
|
1121
|
-
* <p>The
|
|
314
|
+
* <p>The deletion payload.</p>
|
|
1122
315
|
* @public
|
|
1123
316
|
*/
|
|
1124
|
-
|
|
1125
|
-
/**
|
|
1126
|
-
* @internal
|
|
1127
|
-
*/
|
|
1128
|
-
constructor(opts: __ExceptionOptionType<MemoryLimitExceededException, __BaseException>);
|
|
317
|
+
payload?: DeleteStatisticsValueMap | undefined;
|
|
1129
318
|
}
|
|
1130
319
|
/**
|
|
1131
|
-
* <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>
|
|
1132
320
|
* @public
|
|
1133
321
|
*/
|
|
1134
|
-
export
|
|
1135
|
-
readonly name: "QueryLimitExceededException";
|
|
1136
|
-
readonly $fault: "server";
|
|
1137
|
-
$retryable: {};
|
|
1138
|
-
/**
|
|
1139
|
-
* <p>A detailed message describing the problem.</p>
|
|
1140
|
-
* @public
|
|
1141
|
-
*/
|
|
1142
|
-
detailedMessage: string | undefined;
|
|
322
|
+
export interface ExecuteFastResetInput {
|
|
1143
323
|
/**
|
|
1144
|
-
* <p>The
|
|
324
|
+
* <p>The fast reset action. One of the following values:</p> <ul> <li> <p> <b> <code>initiateDatabaseReset</code> </b> – This action generates a unique token needed to actually perform the fast reset.</p> </li> <li> <p> <b> <code>performDatabaseReset</code> </b> – This action uses the token generated by the <code>initiateDatabaseReset</code> action to actually perform the fast reset.</p> <p/> </li> </ul>
|
|
1145
325
|
* @public
|
|
1146
326
|
*/
|
|
1147
|
-
|
|
327
|
+
action: Action | undefined;
|
|
1148
328
|
/**
|
|
1149
|
-
* <p>The
|
|
329
|
+
* <p>The fast-reset token to initiate the reset.</p>
|
|
1150
330
|
* @public
|
|
1151
331
|
*/
|
|
1152
|
-
|
|
1153
|
-
/**
|
|
1154
|
-
* @internal
|
|
1155
|
-
*/
|
|
1156
|
-
constructor(opts: __ExceptionOptionType<QueryLimitExceededException, __BaseException>);
|
|
332
|
+
token?: string | undefined;
|
|
1157
333
|
}
|
|
1158
334
|
/**
|
|
1159
|
-
* <p>
|
|
335
|
+
* <p>A structure containing the fast reset token used to initiate a fast reset.</p>
|
|
1160
336
|
* @public
|
|
1161
337
|
*/
|
|
1162
|
-
export
|
|
1163
|
-
readonly name: "QueryLimitException";
|
|
1164
|
-
readonly $fault: "client";
|
|
338
|
+
export interface FastResetToken {
|
|
1165
339
|
/**
|
|
1166
|
-
* <p>A
|
|
340
|
+
* <p>A UUID generated by the database in the <code>initiateDatabaseReset</code> action, and then consumed by the <code>performDatabaseReset</code> to reset the database.</p>
|
|
1167
341
|
* @public
|
|
1168
342
|
*/
|
|
1169
|
-
|
|
343
|
+
token?: string | undefined;
|
|
344
|
+
}
|
|
345
|
+
/**
|
|
346
|
+
* @public
|
|
347
|
+
*/
|
|
348
|
+
export interface ExecuteFastResetOutput {
|
|
1170
349
|
/**
|
|
1171
|
-
* <p>The
|
|
350
|
+
* <p>The <code>status</code> is only returned for the <code>performDatabaseReset</code> action, and indicates whether or not the fast reset rquest is accepted.</p>
|
|
1172
351
|
* @public
|
|
1173
352
|
*/
|
|
1174
|
-
|
|
353
|
+
status: string | undefined;
|
|
1175
354
|
/**
|
|
1176
|
-
* <p>The
|
|
355
|
+
* <p>The <code>payload</code> is only returned by the <code>initiateDatabaseReset</code> action, and contains the unique token to use with the <code>performDatabaseReset</code> action to make the reset occur.</p>
|
|
1177
356
|
* @public
|
|
1178
357
|
*/
|
|
1179
|
-
|
|
1180
|
-
/**
|
|
1181
|
-
* @internal
|
|
1182
|
-
*/
|
|
1183
|
-
constructor(opts: __ExceptionOptionType<QueryLimitException, __BaseException>);
|
|
358
|
+
payload?: FastResetToken | undefined;
|
|
1184
359
|
}
|
|
1185
360
|
/**
|
|
1186
|
-
* <p>Raised when the body of a query is too large.</p>
|
|
1187
361
|
* @public
|
|
1188
362
|
*/
|
|
1189
|
-
export
|
|
1190
|
-
readonly name: "QueryTooLargeException";
|
|
1191
|
-
readonly $fault: "client";
|
|
1192
|
-
/**
|
|
1193
|
-
* <p>A detailed message describing the problem.</p>
|
|
1194
|
-
* @public
|
|
1195
|
-
*/
|
|
1196
|
-
detailedMessage: string | undefined;
|
|
363
|
+
export interface ExecuteGremlinExplainQueryInput {
|
|
1197
364
|
/**
|
|
1198
|
-
* <p>The
|
|
365
|
+
* <p>The Gremlin explain query string.</p>
|
|
1199
366
|
* @public
|
|
1200
367
|
*/
|
|
1201
|
-
|
|
368
|
+
gremlinQuery: string | undefined;
|
|
369
|
+
}
|
|
370
|
+
/**
|
|
371
|
+
* @public
|
|
372
|
+
*/
|
|
373
|
+
export interface ExecuteGremlinExplainQueryOutput {
|
|
1202
374
|
/**
|
|
1203
|
-
* <p>
|
|
375
|
+
* <p>A text blob containing the Gremlin explain result, as described in <a href="https://docs.aws.amazon.com/neptune/latest/userguide/gremlin-traversal-tuning.html">Tuning Gremlin queries</a>.</p>
|
|
1204
376
|
* @public
|
|
1205
377
|
*/
|
|
1206
|
-
|
|
1207
|
-
/**
|
|
1208
|
-
* @internal
|
|
1209
|
-
*/
|
|
1210
|
-
constructor(opts: __ExceptionOptionType<QueryTooLargeException, __BaseException>);
|
|
378
|
+
output?: Uint8Array | undefined;
|
|
1211
379
|
}
|
|
1212
380
|
/**
|
|
1213
381
|
* @public
|
|
@@ -1310,19 +478,6 @@ export interface ExecuteGremlinQueryOutput {
|
|
|
1310
478
|
*/
|
|
1311
479
|
meta?: __DocumentType | undefined;
|
|
1312
480
|
}
|
|
1313
|
-
/**
|
|
1314
|
-
* @public
|
|
1315
|
-
* @enum
|
|
1316
|
-
*/
|
|
1317
|
-
export declare const OpenCypherExplainMode: {
|
|
1318
|
-
readonly DETAILS: "details";
|
|
1319
|
-
readonly DYNAMIC: "dynamic";
|
|
1320
|
-
readonly STATIC: "static";
|
|
1321
|
-
};
|
|
1322
|
-
/**
|
|
1323
|
-
* @public
|
|
1324
|
-
*/
|
|
1325
|
-
export type OpenCypherExplainMode = (typeof OpenCypherExplainMode)[keyof typeof OpenCypherExplainMode];
|
|
1326
481
|
/**
|
|
1327
482
|
* @public
|
|
1328
483
|
*/
|
|
@@ -1884,58 +1039,6 @@ export interface GetPropertygraphStatisticsOutput {
|
|
|
1884
1039
|
*/
|
|
1885
1040
|
payload: Statistics | undefined;
|
|
1886
1041
|
}
|
|
1887
|
-
/**
|
|
1888
|
-
* <p>Raised when a request attempts to access an stream that has expired.</p>
|
|
1889
|
-
* @public
|
|
1890
|
-
*/
|
|
1891
|
-
export declare class ExpiredStreamException extends __BaseException {
|
|
1892
|
-
readonly name: "ExpiredStreamException";
|
|
1893
|
-
readonly $fault: "client";
|
|
1894
|
-
/**
|
|
1895
|
-
* <p>A detailed message describing the problem.</p>
|
|
1896
|
-
* @public
|
|
1897
|
-
*/
|
|
1898
|
-
detailedMessage: string | undefined;
|
|
1899
|
-
/**
|
|
1900
|
-
* <p>The ID of the request in question.</p>
|
|
1901
|
-
* @public
|
|
1902
|
-
*/
|
|
1903
|
-
requestId: string | undefined;
|
|
1904
|
-
/**
|
|
1905
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
1906
|
-
* @public
|
|
1907
|
-
*/
|
|
1908
|
-
code: string | undefined;
|
|
1909
|
-
/**
|
|
1910
|
-
* @internal
|
|
1911
|
-
*/
|
|
1912
|
-
constructor(opts: __ExceptionOptionType<ExpiredStreamException, __BaseException>);
|
|
1913
|
-
}
|
|
1914
|
-
/**
|
|
1915
|
-
* @public
|
|
1916
|
-
* @enum
|
|
1917
|
-
*/
|
|
1918
|
-
export declare const Encoding: {
|
|
1919
|
-
readonly GZIP: "gzip";
|
|
1920
|
-
};
|
|
1921
|
-
/**
|
|
1922
|
-
* @public
|
|
1923
|
-
*/
|
|
1924
|
-
export type Encoding = (typeof Encoding)[keyof typeof Encoding];
|
|
1925
|
-
/**
|
|
1926
|
-
* @public
|
|
1927
|
-
* @enum
|
|
1928
|
-
*/
|
|
1929
|
-
export declare const IteratorType: {
|
|
1930
|
-
readonly AFTER_SEQUENCE_NUMBER: "AFTER_SEQUENCE_NUMBER";
|
|
1931
|
-
readonly AT_SEQUENCE_NUMBER: "AT_SEQUENCE_NUMBER";
|
|
1932
|
-
readonly LATEST: "LATEST";
|
|
1933
|
-
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
1934
|
-
};
|
|
1935
|
-
/**
|
|
1936
|
-
* @public
|
|
1937
|
-
*/
|
|
1938
|
-
export type IteratorType = (typeof IteratorType)[keyof typeof IteratorType];
|
|
1939
1042
|
/**
|
|
1940
1043
|
* @public
|
|
1941
1044
|
*/
|
|
@@ -2063,73 +1166,6 @@ export interface GetPropertygraphStreamOutput {
|
|
|
2063
1166
|
*/
|
|
2064
1167
|
totalRecords: number | undefined;
|
|
2065
1168
|
}
|
|
2066
|
-
/**
|
|
2067
|
-
* <p>Raised when stream records requested by a query cannot be found.</p>
|
|
2068
|
-
* @public
|
|
2069
|
-
*/
|
|
2070
|
-
export declare class StreamRecordsNotFoundException extends __BaseException {
|
|
2071
|
-
readonly name: "StreamRecordsNotFoundException";
|
|
2072
|
-
readonly $fault: "client";
|
|
2073
|
-
/**
|
|
2074
|
-
* <p>A detailed message describing the problem.</p>
|
|
2075
|
-
* @public
|
|
2076
|
-
*/
|
|
2077
|
-
detailedMessage: string | undefined;
|
|
2078
|
-
/**
|
|
2079
|
-
* <p>The ID of the request in question.</p>
|
|
2080
|
-
* @public
|
|
2081
|
-
*/
|
|
2082
|
-
requestId: string | undefined;
|
|
2083
|
-
/**
|
|
2084
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
2085
|
-
* @public
|
|
2086
|
-
*/
|
|
2087
|
-
code: string | undefined;
|
|
2088
|
-
/**
|
|
2089
|
-
* @internal
|
|
2090
|
-
*/
|
|
2091
|
-
constructor(opts: __ExceptionOptionType<StreamRecordsNotFoundException, __BaseException>);
|
|
2092
|
-
}
|
|
2093
|
-
/**
|
|
2094
|
-
* <p>Raised when the rate of requests exceeds the maximum throughput. Requests can be retried after encountering this exception.</p>
|
|
2095
|
-
* @public
|
|
2096
|
-
*/
|
|
2097
|
-
export declare class ThrottlingException extends __BaseException {
|
|
2098
|
-
readonly name: "ThrottlingException";
|
|
2099
|
-
readonly $fault: "server";
|
|
2100
|
-
$retryable: {};
|
|
2101
|
-
/**
|
|
2102
|
-
* <p>A detailed message describing the problem.</p>
|
|
2103
|
-
* @public
|
|
2104
|
-
*/
|
|
2105
|
-
detailedMessage: string | undefined;
|
|
2106
|
-
/**
|
|
2107
|
-
* <p>The ID of the request that could not be processed for this reason.</p>
|
|
2108
|
-
* @public
|
|
2109
|
-
*/
|
|
2110
|
-
requestId: string | undefined;
|
|
2111
|
-
/**
|
|
2112
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
2113
|
-
* @public
|
|
2114
|
-
*/
|
|
2115
|
-
code: string | undefined;
|
|
2116
|
-
/**
|
|
2117
|
-
* @internal
|
|
2118
|
-
*/
|
|
2119
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
2120
|
-
}
|
|
2121
|
-
/**
|
|
2122
|
-
* @public
|
|
2123
|
-
* @enum
|
|
2124
|
-
*/
|
|
2125
|
-
export declare const GraphSummaryType: {
|
|
2126
|
-
readonly BASIC: "basic";
|
|
2127
|
-
readonly DETAILED: "detailed";
|
|
2128
|
-
};
|
|
2129
|
-
/**
|
|
2130
|
-
* @public
|
|
2131
|
-
*/
|
|
2132
|
-
export type GraphSummaryType = (typeof GraphSummaryType)[keyof typeof GraphSummaryType];
|
|
2133
1169
|
/**
|
|
2134
1170
|
* @public
|
|
2135
1171
|
*/
|
|
@@ -2731,19 +1767,6 @@ export interface ListOpenCypherQueriesOutput {
|
|
|
2731
1767
|
*/
|
|
2732
1768
|
queries?: GremlinQueryStatus[] | undefined;
|
|
2733
1769
|
}
|
|
2734
|
-
/**
|
|
2735
|
-
* @public
|
|
2736
|
-
* @enum
|
|
2737
|
-
*/
|
|
2738
|
-
export declare const StatisticsAutoGenerationMode: {
|
|
2739
|
-
readonly DISABLE_AUTOCOMPUTE: "disableAutoCompute";
|
|
2740
|
-
readonly ENABLE_AUTOCOMPUTE: "enableAutoCompute";
|
|
2741
|
-
readonly REFRESH: "refresh";
|
|
2742
|
-
};
|
|
2743
|
-
/**
|
|
2744
|
-
* @public
|
|
2745
|
-
*/
|
|
2746
|
-
export type StatisticsAutoGenerationMode = (typeof StatisticsAutoGenerationMode)[keyof typeof StatisticsAutoGenerationMode];
|
|
2747
1770
|
/**
|
|
2748
1771
|
* @public
|
|
2749
1772
|
*/
|
|
@@ -2805,123 +1828,6 @@ export interface ManageSparqlStatisticsOutput {
|
|
|
2805
1828
|
*/
|
|
2806
1829
|
payload?: RefreshStatisticsIdMap | undefined;
|
|
2807
1830
|
}
|
|
2808
|
-
/**
|
|
2809
|
-
* <p>Raised when there is a problem accessing Amazon S3.</p>
|
|
2810
|
-
* @public
|
|
2811
|
-
*/
|
|
2812
|
-
export declare class S3Exception extends __BaseException {
|
|
2813
|
-
readonly name: "S3Exception";
|
|
2814
|
-
readonly $fault: "client";
|
|
2815
|
-
$retryable: {};
|
|
2816
|
-
/**
|
|
2817
|
-
* <p>A detailed message describing the problem.</p>
|
|
2818
|
-
* @public
|
|
2819
|
-
*/
|
|
2820
|
-
detailedMessage: string | undefined;
|
|
2821
|
-
/**
|
|
2822
|
-
* <p>The ID of the request in question.</p>
|
|
2823
|
-
* @public
|
|
2824
|
-
*/
|
|
2825
|
-
requestId: string | undefined;
|
|
2826
|
-
/**
|
|
2827
|
-
* <p>The HTTP status code returned with the exception.</p>
|
|
2828
|
-
* @public
|
|
2829
|
-
*/
|
|
2830
|
-
code: string | undefined;
|
|
2831
|
-
/**
|
|
2832
|
-
* @internal
|
|
2833
|
-
*/
|
|
2834
|
-
constructor(opts: __ExceptionOptionType<S3Exception, __BaseException>);
|
|
2835
|
-
}
|
|
2836
|
-
/**
|
|
2837
|
-
* @public
|
|
2838
|
-
* @enum
|
|
2839
|
-
*/
|
|
2840
|
-
export declare const Format: {
|
|
2841
|
-
readonly CSV: "csv";
|
|
2842
|
-
readonly NQUADS: "nquads";
|
|
2843
|
-
readonly NTRIPLES: "ntriples";
|
|
2844
|
-
readonly OPENCYPHER: "opencypher";
|
|
2845
|
-
readonly RDFXML: "rdfxml";
|
|
2846
|
-
readonly TURTLE: "turtle";
|
|
2847
|
-
};
|
|
2848
|
-
/**
|
|
2849
|
-
* @public
|
|
2850
|
-
*/
|
|
2851
|
-
export type Format = (typeof Format)[keyof typeof Format];
|
|
2852
|
-
/**
|
|
2853
|
-
* @public
|
|
2854
|
-
* @enum
|
|
2855
|
-
*/
|
|
2856
|
-
export declare const Mode: {
|
|
2857
|
-
readonly AUTO: "AUTO";
|
|
2858
|
-
readonly NEW: "NEW";
|
|
2859
|
-
readonly RESUME: "RESUME";
|
|
2860
|
-
};
|
|
2861
|
-
/**
|
|
2862
|
-
* @public
|
|
2863
|
-
*/
|
|
2864
|
-
export type Mode = (typeof Mode)[keyof typeof Mode];
|
|
2865
|
-
/**
|
|
2866
|
-
* @public
|
|
2867
|
-
* @enum
|
|
2868
|
-
*/
|
|
2869
|
-
export declare const Parallelism: {
|
|
2870
|
-
readonly HIGH: "HIGH";
|
|
2871
|
-
readonly LOW: "LOW";
|
|
2872
|
-
readonly MEDIUM: "MEDIUM";
|
|
2873
|
-
readonly OVERSUBSCRIBE: "OVERSUBSCRIBE";
|
|
2874
|
-
};
|
|
2875
|
-
/**
|
|
2876
|
-
* @public
|
|
2877
|
-
*/
|
|
2878
|
-
export type Parallelism = (typeof Parallelism)[keyof typeof Parallelism];
|
|
2879
|
-
/**
|
|
2880
|
-
* @public
|
|
2881
|
-
* @enum
|
|
2882
|
-
*/
|
|
2883
|
-
export declare const S3BucketRegion: {
|
|
2884
|
-
readonly AF_SOUTH_1: "af-south-1";
|
|
2885
|
-
readonly AP_EAST_1: "ap-east-1";
|
|
2886
|
-
readonly AP_EAST_2: "ap-east-2";
|
|
2887
|
-
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
2888
|
-
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
2889
|
-
readonly AP_NORTHEAST_3: "ap-northeast-3";
|
|
2890
|
-
readonly AP_SOUTHEAST_1: "ap-southeast-1";
|
|
2891
|
-
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
2892
|
-
readonly AP_SOUTHEAST_3: "ap-southeast-3";
|
|
2893
|
-
readonly AP_SOUTHEAST_4: "ap-southeast-4";
|
|
2894
|
-
readonly AP_SOUTHEAST_5: "ap-southeast-5";
|
|
2895
|
-
readonly AP_SOUTHEAST_7: "ap-southeast-7";
|
|
2896
|
-
readonly AP_SOUTH_1: "ap-south-1";
|
|
2897
|
-
readonly AP_SOUTH_2: "ap-south-2";
|
|
2898
|
-
readonly CA_CENTRAL_1: "ca-central-1";
|
|
2899
|
-
readonly CA_WEST_1: "ca-west-1";
|
|
2900
|
-
readonly CN_NORTHWEST_1: "cn-northwest-1";
|
|
2901
|
-
readonly CN_NORTH_1: "cn-north-1";
|
|
2902
|
-
readonly EU_CENTRAL_1: "eu-central-1";
|
|
2903
|
-
readonly EU_CENTRAL_2: "eu-central-2";
|
|
2904
|
-
readonly EU_NORTH_1: "eu-north-1";
|
|
2905
|
-
readonly EU_SOUTH_2: "eu-south-2";
|
|
2906
|
-
readonly EU_WEST_1: "eu-west-1";
|
|
2907
|
-
readonly EU_WEST_2: "eu-west-2";
|
|
2908
|
-
readonly EU_WEST_3: "eu-west-3";
|
|
2909
|
-
readonly IL_CENTRAL_1: "il-central-1";
|
|
2910
|
-
readonly ME_CENTRAL_1: "me-central-1";
|
|
2911
|
-
readonly ME_SOUTH_1: "me-south-1";
|
|
2912
|
-
readonly MX_CENTRAL_1: "mx-central-1";
|
|
2913
|
-
readonly SA_EAST_1: "sa-east-1";
|
|
2914
|
-
readonly US_EAST_1: "us-east-1";
|
|
2915
|
-
readonly US_EAST_2: "us-east-2";
|
|
2916
|
-
readonly US_GOV_EAST_1: "us-gov-east-1";
|
|
2917
|
-
readonly US_GOV_WEST_1: "us-gov-west-1";
|
|
2918
|
-
readonly US_WEST_1: "us-west-1";
|
|
2919
|
-
readonly US_WEST_2: "us-west-2";
|
|
2920
|
-
};
|
|
2921
|
-
/**
|
|
2922
|
-
* @public
|
|
2923
|
-
*/
|
|
2924
|
-
export type S3BucketRegion = (typeof S3BucketRegion)[keyof typeof S3BucketRegion];
|
|
2925
1831
|
/**
|
|
2926
1832
|
* @public
|
|
2927
1833
|
*/
|