@aws-sdk/client-dynamodb 3.986.0 → 3.988.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 +76 -3219
- package/dist-cjs/models/DynamoDBServiceException.js +12 -0
- package/dist-cjs/models/errors.js +478 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +2390 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +228 -222
- package/dist-types/schemas/schemas_0.d.ts +43 -36
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +38 -36
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -14,10 +14,13 @@ var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
|
14
14
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
15
15
|
var smithyClient = require('@smithy/smithy-client');
|
|
16
16
|
var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
17
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
17
18
|
var runtimeConfig = require('./runtimeConfig');
|
|
18
19
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
19
20
|
var protocolHttp = require('@smithy/protocol-http');
|
|
20
21
|
var utilWaiter = require('@smithy/util-waiter');
|
|
22
|
+
var errors = require('./models/errors');
|
|
23
|
+
var DynamoDBServiceException = require('./models/DynamoDBServiceException');
|
|
21
24
|
|
|
22
25
|
const resolveClientEndpointParameters = (options) => {
|
|
23
26
|
return Object.assign(options, {
|
|
@@ -35,2815 +38,6 @@ const commonParams = {
|
|
|
35
38
|
AccountIdEndpointMode: { type: "builtInParams", name: "accountIdEndpointMode" },
|
|
36
39
|
};
|
|
37
40
|
|
|
38
|
-
class DynamoDBServiceException extends smithyClient.ServiceException {
|
|
39
|
-
constructor(options) {
|
|
40
|
-
super(options);
|
|
41
|
-
Object.setPrototypeOf(this, DynamoDBServiceException.prototype);
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
class BackupInUseException extends DynamoDBServiceException {
|
|
46
|
-
name = "BackupInUseException";
|
|
47
|
-
$fault = "client";
|
|
48
|
-
constructor(opts) {
|
|
49
|
-
super({
|
|
50
|
-
name: "BackupInUseException",
|
|
51
|
-
$fault: "client",
|
|
52
|
-
...opts,
|
|
53
|
-
});
|
|
54
|
-
Object.setPrototypeOf(this, BackupInUseException.prototype);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
class BackupNotFoundException extends DynamoDBServiceException {
|
|
58
|
-
name = "BackupNotFoundException";
|
|
59
|
-
$fault = "client";
|
|
60
|
-
constructor(opts) {
|
|
61
|
-
super({
|
|
62
|
-
name: "BackupNotFoundException",
|
|
63
|
-
$fault: "client",
|
|
64
|
-
...opts,
|
|
65
|
-
});
|
|
66
|
-
Object.setPrototypeOf(this, BackupNotFoundException.prototype);
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
class InternalServerError extends DynamoDBServiceException {
|
|
70
|
-
name = "InternalServerError";
|
|
71
|
-
$fault = "server";
|
|
72
|
-
constructor(opts) {
|
|
73
|
-
super({
|
|
74
|
-
name: "InternalServerError",
|
|
75
|
-
$fault: "server",
|
|
76
|
-
...opts,
|
|
77
|
-
});
|
|
78
|
-
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
class RequestLimitExceeded extends DynamoDBServiceException {
|
|
82
|
-
name = "RequestLimitExceeded";
|
|
83
|
-
$fault = "client";
|
|
84
|
-
ThrottlingReasons;
|
|
85
|
-
constructor(opts) {
|
|
86
|
-
super({
|
|
87
|
-
name: "RequestLimitExceeded",
|
|
88
|
-
$fault: "client",
|
|
89
|
-
...opts,
|
|
90
|
-
});
|
|
91
|
-
Object.setPrototypeOf(this, RequestLimitExceeded.prototype);
|
|
92
|
-
this.ThrottlingReasons = opts.ThrottlingReasons;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
class ThrottlingException extends DynamoDBServiceException {
|
|
96
|
-
name = "ThrottlingException";
|
|
97
|
-
$fault = "client";
|
|
98
|
-
throttlingReasons;
|
|
99
|
-
constructor(opts) {
|
|
100
|
-
super({
|
|
101
|
-
name: "ThrottlingException",
|
|
102
|
-
$fault: "client",
|
|
103
|
-
...opts,
|
|
104
|
-
});
|
|
105
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
106
|
-
this.throttlingReasons = opts.throttlingReasons;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
class InvalidEndpointException extends DynamoDBServiceException {
|
|
110
|
-
name = "InvalidEndpointException";
|
|
111
|
-
$fault = "client";
|
|
112
|
-
Message;
|
|
113
|
-
constructor(opts) {
|
|
114
|
-
super({
|
|
115
|
-
name: "InvalidEndpointException",
|
|
116
|
-
$fault: "client",
|
|
117
|
-
...opts,
|
|
118
|
-
});
|
|
119
|
-
Object.setPrototypeOf(this, InvalidEndpointException.prototype);
|
|
120
|
-
this.Message = opts.Message;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
class ProvisionedThroughputExceededException extends DynamoDBServiceException {
|
|
124
|
-
name = "ProvisionedThroughputExceededException";
|
|
125
|
-
$fault = "client";
|
|
126
|
-
ThrottlingReasons;
|
|
127
|
-
constructor(opts) {
|
|
128
|
-
super({
|
|
129
|
-
name: "ProvisionedThroughputExceededException",
|
|
130
|
-
$fault: "client",
|
|
131
|
-
...opts,
|
|
132
|
-
});
|
|
133
|
-
Object.setPrototypeOf(this, ProvisionedThroughputExceededException.prototype);
|
|
134
|
-
this.ThrottlingReasons = opts.ThrottlingReasons;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
class ResourceNotFoundException extends DynamoDBServiceException {
|
|
138
|
-
name = "ResourceNotFoundException";
|
|
139
|
-
$fault = "client";
|
|
140
|
-
constructor(opts) {
|
|
141
|
-
super({
|
|
142
|
-
name: "ResourceNotFoundException",
|
|
143
|
-
$fault: "client",
|
|
144
|
-
...opts,
|
|
145
|
-
});
|
|
146
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
class ItemCollectionSizeLimitExceededException extends DynamoDBServiceException {
|
|
150
|
-
name = "ItemCollectionSizeLimitExceededException";
|
|
151
|
-
$fault = "client";
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "ItemCollectionSizeLimitExceededException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, ItemCollectionSizeLimitExceededException.prototype);
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
class ReplicatedWriteConflictException extends DynamoDBServiceException {
|
|
162
|
-
name = "ReplicatedWriteConflictException";
|
|
163
|
-
$fault = "client";
|
|
164
|
-
$retryable = {};
|
|
165
|
-
constructor(opts) {
|
|
166
|
-
super({
|
|
167
|
-
name: "ReplicatedWriteConflictException",
|
|
168
|
-
$fault: "client",
|
|
169
|
-
...opts,
|
|
170
|
-
});
|
|
171
|
-
Object.setPrototypeOf(this, ReplicatedWriteConflictException.prototype);
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
class ContinuousBackupsUnavailableException extends DynamoDBServiceException {
|
|
175
|
-
name = "ContinuousBackupsUnavailableException";
|
|
176
|
-
$fault = "client";
|
|
177
|
-
constructor(opts) {
|
|
178
|
-
super({
|
|
179
|
-
name: "ContinuousBackupsUnavailableException",
|
|
180
|
-
$fault: "client",
|
|
181
|
-
...opts,
|
|
182
|
-
});
|
|
183
|
-
Object.setPrototypeOf(this, ContinuousBackupsUnavailableException.prototype);
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
class LimitExceededException extends DynamoDBServiceException {
|
|
187
|
-
name = "LimitExceededException";
|
|
188
|
-
$fault = "client";
|
|
189
|
-
constructor(opts) {
|
|
190
|
-
super({
|
|
191
|
-
name: "LimitExceededException",
|
|
192
|
-
$fault: "client",
|
|
193
|
-
...opts,
|
|
194
|
-
});
|
|
195
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
class TableInUseException extends DynamoDBServiceException {
|
|
199
|
-
name = "TableInUseException";
|
|
200
|
-
$fault = "client";
|
|
201
|
-
constructor(opts) {
|
|
202
|
-
super({
|
|
203
|
-
name: "TableInUseException",
|
|
204
|
-
$fault: "client",
|
|
205
|
-
...opts,
|
|
206
|
-
});
|
|
207
|
-
Object.setPrototypeOf(this, TableInUseException.prototype);
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
class TableNotFoundException extends DynamoDBServiceException {
|
|
211
|
-
name = "TableNotFoundException";
|
|
212
|
-
$fault = "client";
|
|
213
|
-
constructor(opts) {
|
|
214
|
-
super({
|
|
215
|
-
name: "TableNotFoundException",
|
|
216
|
-
$fault: "client",
|
|
217
|
-
...opts,
|
|
218
|
-
});
|
|
219
|
-
Object.setPrototypeOf(this, TableNotFoundException.prototype);
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
class GlobalTableAlreadyExistsException extends DynamoDBServiceException {
|
|
223
|
-
name = "GlobalTableAlreadyExistsException";
|
|
224
|
-
$fault = "client";
|
|
225
|
-
constructor(opts) {
|
|
226
|
-
super({
|
|
227
|
-
name: "GlobalTableAlreadyExistsException",
|
|
228
|
-
$fault: "client",
|
|
229
|
-
...opts,
|
|
230
|
-
});
|
|
231
|
-
Object.setPrototypeOf(this, GlobalTableAlreadyExistsException.prototype);
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
class ResourceInUseException extends DynamoDBServiceException {
|
|
235
|
-
name = "ResourceInUseException";
|
|
236
|
-
$fault = "client";
|
|
237
|
-
constructor(opts) {
|
|
238
|
-
super({
|
|
239
|
-
name: "ResourceInUseException",
|
|
240
|
-
$fault: "client",
|
|
241
|
-
...opts,
|
|
242
|
-
});
|
|
243
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
class TransactionConflictException extends DynamoDBServiceException {
|
|
247
|
-
name = "TransactionConflictException";
|
|
248
|
-
$fault = "client";
|
|
249
|
-
constructor(opts) {
|
|
250
|
-
super({
|
|
251
|
-
name: "TransactionConflictException",
|
|
252
|
-
$fault: "client",
|
|
253
|
-
...opts,
|
|
254
|
-
});
|
|
255
|
-
Object.setPrototypeOf(this, TransactionConflictException.prototype);
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
class PolicyNotFoundException extends DynamoDBServiceException {
|
|
259
|
-
name = "PolicyNotFoundException";
|
|
260
|
-
$fault = "client";
|
|
261
|
-
constructor(opts) {
|
|
262
|
-
super({
|
|
263
|
-
name: "PolicyNotFoundException",
|
|
264
|
-
$fault: "client",
|
|
265
|
-
...opts,
|
|
266
|
-
});
|
|
267
|
-
Object.setPrototypeOf(this, PolicyNotFoundException.prototype);
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
|
-
class ExportNotFoundException extends DynamoDBServiceException {
|
|
271
|
-
name = "ExportNotFoundException";
|
|
272
|
-
$fault = "client";
|
|
273
|
-
constructor(opts) {
|
|
274
|
-
super({
|
|
275
|
-
name: "ExportNotFoundException",
|
|
276
|
-
$fault: "client",
|
|
277
|
-
...opts,
|
|
278
|
-
});
|
|
279
|
-
Object.setPrototypeOf(this, ExportNotFoundException.prototype);
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
class GlobalTableNotFoundException extends DynamoDBServiceException {
|
|
283
|
-
name = "GlobalTableNotFoundException";
|
|
284
|
-
$fault = "client";
|
|
285
|
-
constructor(opts) {
|
|
286
|
-
super({
|
|
287
|
-
name: "GlobalTableNotFoundException",
|
|
288
|
-
$fault: "client",
|
|
289
|
-
...opts,
|
|
290
|
-
});
|
|
291
|
-
Object.setPrototypeOf(this, GlobalTableNotFoundException.prototype);
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
|
-
class ImportNotFoundException extends DynamoDBServiceException {
|
|
295
|
-
name = "ImportNotFoundException";
|
|
296
|
-
$fault = "client";
|
|
297
|
-
constructor(opts) {
|
|
298
|
-
super({
|
|
299
|
-
name: "ImportNotFoundException",
|
|
300
|
-
$fault: "client",
|
|
301
|
-
...opts,
|
|
302
|
-
});
|
|
303
|
-
Object.setPrototypeOf(this, ImportNotFoundException.prototype);
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
class DuplicateItemException extends DynamoDBServiceException {
|
|
307
|
-
name = "DuplicateItemException";
|
|
308
|
-
$fault = "client";
|
|
309
|
-
constructor(opts) {
|
|
310
|
-
super({
|
|
311
|
-
name: "DuplicateItemException",
|
|
312
|
-
$fault: "client",
|
|
313
|
-
...opts,
|
|
314
|
-
});
|
|
315
|
-
Object.setPrototypeOf(this, DuplicateItemException.prototype);
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
class IdempotentParameterMismatchException extends DynamoDBServiceException {
|
|
319
|
-
name = "IdempotentParameterMismatchException";
|
|
320
|
-
$fault = "client";
|
|
321
|
-
Message;
|
|
322
|
-
constructor(opts) {
|
|
323
|
-
super({
|
|
324
|
-
name: "IdempotentParameterMismatchException",
|
|
325
|
-
$fault: "client",
|
|
326
|
-
...opts,
|
|
327
|
-
});
|
|
328
|
-
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
329
|
-
this.Message = opts.Message;
|
|
330
|
-
}
|
|
331
|
-
}
|
|
332
|
-
class TransactionInProgressException extends DynamoDBServiceException {
|
|
333
|
-
name = "TransactionInProgressException";
|
|
334
|
-
$fault = "client";
|
|
335
|
-
Message;
|
|
336
|
-
constructor(opts) {
|
|
337
|
-
super({
|
|
338
|
-
name: "TransactionInProgressException",
|
|
339
|
-
$fault: "client",
|
|
340
|
-
...opts,
|
|
341
|
-
});
|
|
342
|
-
Object.setPrototypeOf(this, TransactionInProgressException.prototype);
|
|
343
|
-
this.Message = opts.Message;
|
|
344
|
-
}
|
|
345
|
-
}
|
|
346
|
-
class ExportConflictException extends DynamoDBServiceException {
|
|
347
|
-
name = "ExportConflictException";
|
|
348
|
-
$fault = "client";
|
|
349
|
-
constructor(opts) {
|
|
350
|
-
super({
|
|
351
|
-
name: "ExportConflictException",
|
|
352
|
-
$fault: "client",
|
|
353
|
-
...opts,
|
|
354
|
-
});
|
|
355
|
-
Object.setPrototypeOf(this, ExportConflictException.prototype);
|
|
356
|
-
}
|
|
357
|
-
}
|
|
358
|
-
class InvalidExportTimeException extends DynamoDBServiceException {
|
|
359
|
-
name = "InvalidExportTimeException";
|
|
360
|
-
$fault = "client";
|
|
361
|
-
constructor(opts) {
|
|
362
|
-
super({
|
|
363
|
-
name: "InvalidExportTimeException",
|
|
364
|
-
$fault: "client",
|
|
365
|
-
...opts,
|
|
366
|
-
});
|
|
367
|
-
Object.setPrototypeOf(this, InvalidExportTimeException.prototype);
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
class PointInTimeRecoveryUnavailableException extends DynamoDBServiceException {
|
|
371
|
-
name = "PointInTimeRecoveryUnavailableException";
|
|
372
|
-
$fault = "client";
|
|
373
|
-
constructor(opts) {
|
|
374
|
-
super({
|
|
375
|
-
name: "PointInTimeRecoveryUnavailableException",
|
|
376
|
-
$fault: "client",
|
|
377
|
-
...opts,
|
|
378
|
-
});
|
|
379
|
-
Object.setPrototypeOf(this, PointInTimeRecoveryUnavailableException.prototype);
|
|
380
|
-
}
|
|
381
|
-
}
|
|
382
|
-
class ImportConflictException extends DynamoDBServiceException {
|
|
383
|
-
name = "ImportConflictException";
|
|
384
|
-
$fault = "client";
|
|
385
|
-
constructor(opts) {
|
|
386
|
-
super({
|
|
387
|
-
name: "ImportConflictException",
|
|
388
|
-
$fault: "client",
|
|
389
|
-
...opts,
|
|
390
|
-
});
|
|
391
|
-
Object.setPrototypeOf(this, ImportConflictException.prototype);
|
|
392
|
-
}
|
|
393
|
-
}
|
|
394
|
-
class TableAlreadyExistsException extends DynamoDBServiceException {
|
|
395
|
-
name = "TableAlreadyExistsException";
|
|
396
|
-
$fault = "client";
|
|
397
|
-
constructor(opts) {
|
|
398
|
-
super({
|
|
399
|
-
name: "TableAlreadyExistsException",
|
|
400
|
-
$fault: "client",
|
|
401
|
-
...opts,
|
|
402
|
-
});
|
|
403
|
-
Object.setPrototypeOf(this, TableAlreadyExistsException.prototype);
|
|
404
|
-
}
|
|
405
|
-
}
|
|
406
|
-
class InvalidRestoreTimeException extends DynamoDBServiceException {
|
|
407
|
-
name = "InvalidRestoreTimeException";
|
|
408
|
-
$fault = "client";
|
|
409
|
-
constructor(opts) {
|
|
410
|
-
super({
|
|
411
|
-
name: "InvalidRestoreTimeException",
|
|
412
|
-
$fault: "client",
|
|
413
|
-
...opts,
|
|
414
|
-
});
|
|
415
|
-
Object.setPrototypeOf(this, InvalidRestoreTimeException.prototype);
|
|
416
|
-
}
|
|
417
|
-
}
|
|
418
|
-
class ReplicaAlreadyExistsException extends DynamoDBServiceException {
|
|
419
|
-
name = "ReplicaAlreadyExistsException";
|
|
420
|
-
$fault = "client";
|
|
421
|
-
constructor(opts) {
|
|
422
|
-
super({
|
|
423
|
-
name: "ReplicaAlreadyExistsException",
|
|
424
|
-
$fault: "client",
|
|
425
|
-
...opts,
|
|
426
|
-
});
|
|
427
|
-
Object.setPrototypeOf(this, ReplicaAlreadyExistsException.prototype);
|
|
428
|
-
}
|
|
429
|
-
}
|
|
430
|
-
class ReplicaNotFoundException extends DynamoDBServiceException {
|
|
431
|
-
name = "ReplicaNotFoundException";
|
|
432
|
-
$fault = "client";
|
|
433
|
-
constructor(opts) {
|
|
434
|
-
super({
|
|
435
|
-
name: "ReplicaNotFoundException",
|
|
436
|
-
$fault: "client",
|
|
437
|
-
...opts,
|
|
438
|
-
});
|
|
439
|
-
Object.setPrototypeOf(this, ReplicaNotFoundException.prototype);
|
|
440
|
-
}
|
|
441
|
-
}
|
|
442
|
-
class IndexNotFoundException extends DynamoDBServiceException {
|
|
443
|
-
name = "IndexNotFoundException";
|
|
444
|
-
$fault = "client";
|
|
445
|
-
constructor(opts) {
|
|
446
|
-
super({
|
|
447
|
-
name: "IndexNotFoundException",
|
|
448
|
-
$fault: "client",
|
|
449
|
-
...opts,
|
|
450
|
-
});
|
|
451
|
-
Object.setPrototypeOf(this, IndexNotFoundException.prototype);
|
|
452
|
-
}
|
|
453
|
-
}
|
|
454
|
-
class ConditionalCheckFailedException extends DynamoDBServiceException {
|
|
455
|
-
name = "ConditionalCheckFailedException";
|
|
456
|
-
$fault = "client";
|
|
457
|
-
Item;
|
|
458
|
-
constructor(opts) {
|
|
459
|
-
super({
|
|
460
|
-
name: "ConditionalCheckFailedException",
|
|
461
|
-
$fault: "client",
|
|
462
|
-
...opts,
|
|
463
|
-
});
|
|
464
|
-
Object.setPrototypeOf(this, ConditionalCheckFailedException.prototype);
|
|
465
|
-
this.Item = opts.Item;
|
|
466
|
-
}
|
|
467
|
-
}
|
|
468
|
-
class TransactionCanceledException extends DynamoDBServiceException {
|
|
469
|
-
name = "TransactionCanceledException";
|
|
470
|
-
$fault = "client";
|
|
471
|
-
Message;
|
|
472
|
-
CancellationReasons;
|
|
473
|
-
constructor(opts) {
|
|
474
|
-
super({
|
|
475
|
-
name: "TransactionCanceledException",
|
|
476
|
-
$fault: "client",
|
|
477
|
-
...opts,
|
|
478
|
-
});
|
|
479
|
-
Object.setPrototypeOf(this, TransactionCanceledException.prototype);
|
|
480
|
-
this.Message = opts.Message;
|
|
481
|
-
this.CancellationReasons = opts.CancellationReasons;
|
|
482
|
-
}
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
const _A = "Action";
|
|
486
|
-
const _ABA = "ArchivalBackupArn";
|
|
487
|
-
const _ACDTP = "ApproximateCreationDateTimePrecision";
|
|
488
|
-
const _AD = "AttributeDefinition";
|
|
489
|
-
const _ADT = "ArchivalDateTime";
|
|
490
|
-
const _ADt = "AttributeDefinitions";
|
|
491
|
-
const _AM = "AttributeMap";
|
|
492
|
-
const _AMRCU = "AccountMaxReadCapacityUnits";
|
|
493
|
-
const _AMWCU = "AccountMaxWriteCapacityUnits";
|
|
494
|
-
const _AN = "AttributeName";
|
|
495
|
-
const _AR = "ArchivalReason";
|
|
496
|
-
const _AS = "ArchivalSummary";
|
|
497
|
-
const _ASD = "AutoScalingDisabled";
|
|
498
|
-
const _ASPD = "AutoScalingPolicyDescription";
|
|
499
|
-
const _ASPDL = "AutoScalingPolicyDescriptionList";
|
|
500
|
-
const _ASPU = "AutoScalingPolicyUpdate";
|
|
501
|
-
const _ASRA = "AutoScalingRoleArn";
|
|
502
|
-
const _ASSD = "AutoScalingSettingsDescription";
|
|
503
|
-
const _ASSU = "AutoScalingSettingsUpdate";
|
|
504
|
-
const _ASTTSPCD = "AutoScalingTargetTrackingScalingPolicyConfigurationDescription";
|
|
505
|
-
const _ASTTSPCU = "AutoScalingTargetTrackingScalingPolicyConfigurationUpdate";
|
|
506
|
-
const _AT = "AttributeType";
|
|
507
|
-
const _ATG = "AttributesToGet";
|
|
508
|
-
const _AU = "AttributeUpdates";
|
|
509
|
-
const _AV = "AttributeValue";
|
|
510
|
-
const _AVL = "AttributeValueList";
|
|
511
|
-
const _AVU = "AttributeValueUpdate";
|
|
512
|
-
const _Ad = "Address";
|
|
513
|
-
const _At = "Attributes";
|
|
514
|
-
const _B = "Backfilling";
|
|
515
|
-
const _BA = "BackupArn";
|
|
516
|
-
const _BCDT = "BackupCreationDateTime";
|
|
517
|
-
const _BD = "BackupDescription";
|
|
518
|
-
const _BDa = "BackupDetails";
|
|
519
|
-
const _BEDT = "BackupExpiryDateTime";
|
|
520
|
-
const _BES = "BatchExecuteStatement";
|
|
521
|
-
const _BESI = "BatchExecuteStatementInput";
|
|
522
|
-
const _BESO = "BatchExecuteStatementOutput";
|
|
523
|
-
const _BGI = "BatchGetItem";
|
|
524
|
-
const _BGII = "BatchGetItemInput";
|
|
525
|
-
const _BGIO = "BatchGetItemOutput";
|
|
526
|
-
const _BGRM = "BatchGetResponseMap";
|
|
527
|
-
const _BGRMa = "BatchGetRequestMap";
|
|
528
|
-
const _BIUE = "BackupInUseException";
|
|
529
|
-
const _BM = "BillingMode";
|
|
530
|
-
const _BMO = "BillingModeOverride";
|
|
531
|
-
const _BMS = "BillingModeSummary";
|
|
532
|
-
const _BN = "BackupName";
|
|
533
|
-
const _BNFE = "BackupNotFoundException";
|
|
534
|
-
const _BOOL = "BOOL";
|
|
535
|
-
const _BS = "BackupStatus";
|
|
536
|
-
const _BSB = "BackupSizeBytes";
|
|
537
|
-
const _BSBi = "BilledSizeBytes";
|
|
538
|
-
const _BSE = "BatchStatementError";
|
|
539
|
-
const _BSR = "BatchStatementRequest";
|
|
540
|
-
const _BSRa = "BatchStatementResponse";
|
|
541
|
-
const _BS_ = "BS";
|
|
542
|
-
const _BSa = "BackupSummary";
|
|
543
|
-
const _BSac = "BackupSummaries";
|
|
544
|
-
const _BT = "BackupType";
|
|
545
|
-
const _BWI = "BatchWriteItem";
|
|
546
|
-
const _BWII = "BatchWriteItemInput";
|
|
547
|
-
const _BWIO = "BatchWriteItemOutput";
|
|
548
|
-
const _BWIRM = "BatchWriteItemRequestMap";
|
|
549
|
-
const _B_ = "B";
|
|
550
|
-
const _C = "Code";
|
|
551
|
-
const _CB = "CreateBackup";
|
|
552
|
-
const _CBD = "ContinuousBackupsDescription";
|
|
553
|
-
const _CBI = "CreateBackupInput";
|
|
554
|
-
const _CBO = "CreateBackupOutput";
|
|
555
|
-
const _CBS = "ContinuousBackupsStatus";
|
|
556
|
-
const _CBUE = "ContinuousBackupsUnavailableException";
|
|
557
|
-
const _CC = "ConsumedCapacity";
|
|
558
|
-
const _CCFE = "ConditionalCheckFailedException";
|
|
559
|
-
const _CCM = "ConsumedCapacityMultiple";
|
|
560
|
-
const _CCo = "ConditionCheck";
|
|
561
|
-
const _CDT = "CreationDateTime";
|
|
562
|
-
const _CE = "ConditionExpression";
|
|
563
|
-
const _CGSIA = "CreateGlobalSecondaryIndexAction";
|
|
564
|
-
const _CGT = "CreateGlobalTable";
|
|
565
|
-
const _CGTI = "CreateGlobalTableInput";
|
|
566
|
-
const _CGTO = "CreateGlobalTableOutput";
|
|
567
|
-
const _CGTWGMA = "CreateGlobalTableWitnessGroupMemberAction";
|
|
568
|
-
const _CIA = "ContributorInsightsAction";
|
|
569
|
-
const _CIM = "ContributorInsightsMode";
|
|
570
|
-
const _CIRL = "ContributorInsightsRuleList";
|
|
571
|
-
const _CIS = "ContributorInsightsSummary";
|
|
572
|
-
const _CISo = "ContributorInsightsStatus";
|
|
573
|
-
const _CISon = "ContributorInsightsSummaries";
|
|
574
|
-
const _CO = "ComparisonOperator";
|
|
575
|
-
const _COo = "ConditionalOperator";
|
|
576
|
-
const _COs = "CsvOptions";
|
|
577
|
-
const _CPIM = "CachePeriodInMinutes";
|
|
578
|
-
const _CR = "ConsistentRead";
|
|
579
|
-
const _CRA = "CreateReplicaAction";
|
|
580
|
-
const _CRGMA = "CreateReplicationGroupMemberAction";
|
|
581
|
-
const _CRL = "CancellationReasonList";
|
|
582
|
-
const _CRSRA = "ConfirmRemoveSelfResourceAccess";
|
|
583
|
-
const _CRT = "ClientRequestToken";
|
|
584
|
-
const _CRa = "CancellationReason";
|
|
585
|
-
const _CRan = "CancellationReasons";
|
|
586
|
-
const _CT = "ClientToken";
|
|
587
|
-
const _CTI = "CreateTableInput";
|
|
588
|
-
const _CTO = "CreateTableOutput";
|
|
589
|
-
const _CTr = "CreateTable";
|
|
590
|
-
const _CU = "CapacityUnits";
|
|
591
|
-
const _CWLGA = "CloudWatchLogGroupArn";
|
|
592
|
-
const _Ca = "Capacity";
|
|
593
|
-
const _Co = "Condition";
|
|
594
|
-
const _Cou = "Count";
|
|
595
|
-
const _Cr = "Create";
|
|
596
|
-
const _Cs = "Csv";
|
|
597
|
-
const _D = "Delimiter";
|
|
598
|
-
const _DB = "DeleteBackup";
|
|
599
|
-
const _DBI = "DeleteBackupInput";
|
|
600
|
-
const _DBIe = "DescribeBackupInput";
|
|
601
|
-
const _DBO = "DeleteBackupOutput";
|
|
602
|
-
const _DBOe = "DescribeBackupOutput";
|
|
603
|
-
const _DBe = "DescribeBackup";
|
|
604
|
-
const _DCB = "DescribeContinuousBackups";
|
|
605
|
-
const _DCBI = "DescribeContinuousBackupsInput";
|
|
606
|
-
const _DCBO = "DescribeContinuousBackupsOutput";
|
|
607
|
-
const _DCI = "DescribeContributorInsights";
|
|
608
|
-
const _DCII = "DescribeContributorInsightsInput";
|
|
609
|
-
const _DCIO = "DescribeContributorInsightsOutput";
|
|
610
|
-
const _DE = "DescribeEndpoints";
|
|
611
|
-
const _DEI = "DescribeExportInput";
|
|
612
|
-
const _DEO = "DescribeExportOutput";
|
|
613
|
-
const _DER = "DescribeEndpointsRequest";
|
|
614
|
-
const _DERe = "DescribeEndpointsResponse";
|
|
615
|
-
const _DEe = "DescribeExport";
|
|
616
|
-
const _DGSIA = "DeleteGlobalSecondaryIndexAction";
|
|
617
|
-
const _DGT = "DescribeGlobalTable";
|
|
618
|
-
const _DGTI = "DescribeGlobalTableInput";
|
|
619
|
-
const _DGTO = "DescribeGlobalTableOutput";
|
|
620
|
-
const _DGTS = "DescribeGlobalTableSettings";
|
|
621
|
-
const _DGTSI = "DescribeGlobalTableSettingsInput";
|
|
622
|
-
const _DGTSO = "DescribeGlobalTableSettingsOutput";
|
|
623
|
-
const _DGTWGMA = "DeleteGlobalTableWitnessGroupMemberAction";
|
|
624
|
-
const _DI = "DeleteItem";
|
|
625
|
-
const _DIE = "DuplicateItemException";
|
|
626
|
-
const _DII = "DeleteItemInput";
|
|
627
|
-
const _DIIe = "DescribeImportInput";
|
|
628
|
-
const _DIO = "DeleteItemOutput";
|
|
629
|
-
const _DIOe = "DescribeImportOutput";
|
|
630
|
-
const _DIe = "DescribeImport";
|
|
631
|
-
const _DKSD = "DescribeKinesisStreamingDestination";
|
|
632
|
-
const _DKSDI = "DescribeKinesisStreamingDestinationInput";
|
|
633
|
-
const _DKSDO = "DescribeKinesisStreamingDestinationOutput";
|
|
634
|
-
const _DKSDi = "DisableKinesisStreamingDestination";
|
|
635
|
-
const _DL = "DescribeLimits";
|
|
636
|
-
const _DLI = "DescribeLimitsInput";
|
|
637
|
-
const _DLO = "DescribeLimitsOutput";
|
|
638
|
-
const _DPE = "DeletionProtectionEnabled";
|
|
639
|
-
const _DR = "DeleteRequest";
|
|
640
|
-
const _DRA = "DeleteReplicaAction";
|
|
641
|
-
const _DRGMA = "DeleteReplicationGroupMemberAction";
|
|
642
|
-
const _DRP = "DeleteResourcePolicy";
|
|
643
|
-
const _DRPI = "DeleteResourcePolicyInput";
|
|
644
|
-
const _DRPO = "DeleteResourcePolicyOutput";
|
|
645
|
-
const _DS = "DestinationStatus";
|
|
646
|
-
const _DSD = "DestinationStatusDescription";
|
|
647
|
-
const _DSI = "DisableScaleIn";
|
|
648
|
-
const _DT = "DeleteTable";
|
|
649
|
-
const _DTI = "DeleteTableInput";
|
|
650
|
-
const _DTIe = "DescribeTableInput";
|
|
651
|
-
const _DTO = "DeleteTableOutput";
|
|
652
|
-
const _DTOe = "DescribeTableOutput";
|
|
653
|
-
const _DTRAS = "DescribeTableReplicaAutoScaling";
|
|
654
|
-
const _DTRASI = "DescribeTableReplicaAutoScalingInput";
|
|
655
|
-
const _DTRASO = "DescribeTableReplicaAutoScalingOutput";
|
|
656
|
-
const _DTTL = "DescribeTimeToLive";
|
|
657
|
-
const _DTTLI = "DescribeTimeToLiveInput";
|
|
658
|
-
const _DTTLO = "DescribeTimeToLiveOutput";
|
|
659
|
-
const _DTe = "DescribeTable";
|
|
660
|
-
const _De = "Delete";
|
|
661
|
-
const _E = "Error";
|
|
662
|
-
const _EA = "ExportArn";
|
|
663
|
-
const _EAM = "ExpectedAttributeMap";
|
|
664
|
-
const _EAN = "ExpressionAttributeNames";
|
|
665
|
-
const _EAV = "ExpressionAttributeValues";
|
|
666
|
-
const _EAVM = "ExpressionAttributeValueMap";
|
|
667
|
-
const _EAVx = "ExpectedAttributeValue";
|
|
668
|
-
const _EC = "ErrorCount";
|
|
669
|
-
const _ECE = "ExportConflictException";
|
|
670
|
-
const _ED = "ExportDescription";
|
|
671
|
-
const _EDx = "ExceptionDescription";
|
|
672
|
-
const _EF = "ExportFormat";
|
|
673
|
-
const _EFT = "ExportFromTime";
|
|
674
|
-
const _EKSC = "EnableKinesisStreamingConfiguration";
|
|
675
|
-
const _EKSD = "EnableKinesisStreamingDestination";
|
|
676
|
-
const _EM = "ExportManifest";
|
|
677
|
-
const _EN = "ExceptionName";
|
|
678
|
-
const _ENFE = "ExportNotFoundException";
|
|
679
|
-
const _ERDT = "EarliestRestorableDateTime";
|
|
680
|
-
const _ERI = "ExpectedRevisionId";
|
|
681
|
-
const _ES = "ExportStatus";
|
|
682
|
-
const _ESBA = "ExclusiveStartBackupArn";
|
|
683
|
-
const _ESGTN = "ExclusiveStartGlobalTableName";
|
|
684
|
-
const _ESI = "ExecuteStatementInput";
|
|
685
|
-
const _ESK = "ExclusiveStartKey";
|
|
686
|
-
const _ESO = "ExecuteStatementOutput";
|
|
687
|
-
const _ESTN = "ExclusiveStartTableName";
|
|
688
|
-
const _ESx = "ExportSummary";
|
|
689
|
-
const _ESxe = "ExecuteStatement";
|
|
690
|
-
const _ESxp = "ExportSummaries";
|
|
691
|
-
const _ET = "EndTime";
|
|
692
|
-
const _ETI = "ExecuteTransactionInput";
|
|
693
|
-
const _ETO = "ExecuteTransactionOutput";
|
|
694
|
-
const _ETT = "ExportToTime";
|
|
695
|
-
const _ETTPIT = "ExportTableToPointInTime";
|
|
696
|
-
const _ETTPITI = "ExportTableToPointInTimeInput";
|
|
697
|
-
const _ETTPITO = "ExportTableToPointInTimeOutput";
|
|
698
|
-
const _ETx = "ExportTime";
|
|
699
|
-
const _ETxe = "ExecuteTransaction";
|
|
700
|
-
const _ETxp = "ExportType";
|
|
701
|
-
const _EVT = "ExportViewType";
|
|
702
|
-
const _En = "Endpoints";
|
|
703
|
-
const _Ena = "Enabled";
|
|
704
|
-
const _End = "Endpoint";
|
|
705
|
-
const _Ex = "Expected";
|
|
706
|
-
const _Exi = "Exists";
|
|
707
|
-
const _FC = "FailureCode";
|
|
708
|
-
const _FCM = "FilterConditionMap";
|
|
709
|
-
const _FE = "FailureException";
|
|
710
|
-
const _FEi = "FilterExpression";
|
|
711
|
-
const _FM = "FailureMessage";
|
|
712
|
-
const _G = "Get";
|
|
713
|
-
const _GI = "GetItem";
|
|
714
|
-
const _GII = "GetItemInput";
|
|
715
|
-
const _GIO = "GetItemOutput";
|
|
716
|
-
const _GRP = "GetResourcePolicy";
|
|
717
|
-
const _GRPI = "GetResourcePolicyInput";
|
|
718
|
-
const _GRPO = "GetResourcePolicyOutput";
|
|
719
|
-
const _GSI = "GlobalSecondaryIndexes";
|
|
720
|
-
const _GSIASU = "GlobalSecondaryIndexAutoScalingUpdate";
|
|
721
|
-
const _GSIASUL = "GlobalSecondaryIndexAutoScalingUpdateList";
|
|
722
|
-
const _GSID = "GlobalSecondaryIndexDescription";
|
|
723
|
-
const _GSIDL = "GlobalSecondaryIndexDescriptionList";
|
|
724
|
-
const _GSII = "GlobalSecondaryIndexInfo";
|
|
725
|
-
const _GSIL = "GlobalSecondaryIndexList";
|
|
726
|
-
const _GSIO = "GlobalSecondaryIndexOverride";
|
|
727
|
-
const _GSIU = "GlobalSecondaryIndexUpdate";
|
|
728
|
-
const _GSIUL = "GlobalSecondaryIndexUpdateList";
|
|
729
|
-
const _GSIUl = "GlobalSecondaryIndexUpdates";
|
|
730
|
-
const _GSIWTD = "GlobalSecondaryIndexWarmThroughputDescription";
|
|
731
|
-
const _GSIl = "GlobalSecondaryIndex";
|
|
732
|
-
const _GT = "GlobalTable";
|
|
733
|
-
const _GTA = "GlobalTableArn";
|
|
734
|
-
const _GTAEE = "GlobalTableAlreadyExistsException";
|
|
735
|
-
const _GTBM = "GlobalTableBillingMode";
|
|
736
|
-
const _GTD = "GlobalTableDescription";
|
|
737
|
-
const _GTGSISU = "GlobalTableGlobalSecondaryIndexSettingsUpdate";
|
|
738
|
-
const _GTGSISUL = "GlobalTableGlobalSecondaryIndexSettingsUpdateList";
|
|
739
|
-
const _GTL = "GlobalTableList";
|
|
740
|
-
const _GTN = "GlobalTableName";
|
|
741
|
-
const _GTNFE = "GlobalTableNotFoundException";
|
|
742
|
-
const _GTPWCASSU = "GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate";
|
|
743
|
-
const _GTPWCU = "GlobalTableProvisionedWriteCapacityUnits";
|
|
744
|
-
const _GTS = "GlobalTableStatus";
|
|
745
|
-
const _GTSA = "GlobalTableSourceArn";
|
|
746
|
-
const _GTSRM = "GlobalTableSettingsReplicationMode";
|
|
747
|
-
const _GTV = "GlobalTableVersion";
|
|
748
|
-
const _GTW = "GlobalTableWitnesses";
|
|
749
|
-
const _GTWD = "GlobalTableWitnessDescription";
|
|
750
|
-
const _GTWDL = "GlobalTableWitnessDescriptionList";
|
|
751
|
-
const _GTWGU = "GlobalTableWitnessGroupUpdate";
|
|
752
|
-
const _GTWGUL = "GlobalTableWitnessGroupUpdateList";
|
|
753
|
-
const _GTWU = "GlobalTableWitnessUpdates";
|
|
754
|
-
const _GTl = "GlobalTables";
|
|
755
|
-
const _HL = "HeaderList";
|
|
756
|
-
const _I = "Item";
|
|
757
|
-
const _IA = "ImportArn";
|
|
758
|
-
const _IAn = "IndexArn";
|
|
759
|
-
const _IC = "ItemCount";
|
|
760
|
-
const _ICE = "ImportConflictException";
|
|
761
|
-
const _ICK = "ItemCollectionKey";
|
|
762
|
-
const _ICKAM = "ItemCollectionKeyAttributeMap";
|
|
763
|
-
const _ICM = "ItemCollectionMetrics";
|
|
764
|
-
const _ICMM = "ItemCollectionMetricsMultiple";
|
|
765
|
-
const _ICMPT = "ItemCollectionMetricsPerTable";
|
|
766
|
-
const _ICSLEE = "ItemCollectionSizeLimitExceededException";
|
|
767
|
-
const _ICT = "InputCompressionType";
|
|
768
|
-
const _IEDT = "InaccessibleEncryptionDateTime";
|
|
769
|
-
const _IEE = "InvalidEndpointException";
|
|
770
|
-
const _IES = "IncrementalExportSpecification";
|
|
771
|
-
const _IETE = "InvalidExportTimeException";
|
|
772
|
-
const _IF = "InputFormat";
|
|
773
|
-
const _IFO = "InputFormatOptions";
|
|
774
|
-
const _IIC = "ImportedItemCount";
|
|
775
|
-
const _IL = "ItemList";
|
|
776
|
-
const _IN = "IndexName";
|
|
777
|
-
const _INFE = "ImportNotFoundException";
|
|
778
|
-
const _INFEn = "IndexNotFoundException";
|
|
779
|
-
const _IPME = "IdempotentParameterMismatchException";
|
|
780
|
-
const _IR = "ItemResponse";
|
|
781
|
-
const _IRL = "ItemResponseList";
|
|
782
|
-
const _IRTE = "InvalidRestoreTimeException";
|
|
783
|
-
const _IS = "IndexStatus";
|
|
784
|
-
const _ISB = "IndexSizeBytes";
|
|
785
|
-
const _ISE = "InternalServerError";
|
|
786
|
-
const _ISL = "ImportSummaryList";
|
|
787
|
-
const _ISm = "ImportSummary";
|
|
788
|
-
const _ISmp = "ImportStatus";
|
|
789
|
-
const _IT = "ImportTable";
|
|
790
|
-
const _ITD = "ImportTableDescription";
|
|
791
|
-
const _ITI = "ImportTableInput";
|
|
792
|
-
const _ITO = "ImportTableOutput";
|
|
793
|
-
const _It = "Items";
|
|
794
|
-
const _K = "Key";
|
|
795
|
-
const _KAA = "KeysAndAttributes";
|
|
796
|
-
const _KC = "KeyConditions";
|
|
797
|
-
const _KCE = "KeyConditionExpression";
|
|
798
|
-
const _KDSD = "KinesisDataStreamDestinations";
|
|
799
|
-
const _KDSDi = "KinesisDataStreamDestination";
|
|
800
|
-
const _KL = "KeyList";
|
|
801
|
-
const _KMSMKA = "KMSMasterKeyArn";
|
|
802
|
-
const _KMSMKI = "KMSMasterKeyId";
|
|
803
|
-
const _KS = "KeySchema";
|
|
804
|
-
const _KSDI = "KinesisStreamingDestinationInput";
|
|
805
|
-
const _KSDO = "KinesisStreamingDestinationOutput";
|
|
806
|
-
const _KSE = "KeySchemaElement";
|
|
807
|
-
const _KT = "KeyType";
|
|
808
|
-
const _Ke = "Keys";
|
|
809
|
-
const _L = "Limit";
|
|
810
|
-
const _LAV = "ListAttributeValue";
|
|
811
|
-
const _LB = "ListBackups";
|
|
812
|
-
const _LBI = "ListBackupsInput";
|
|
813
|
-
const _LBO = "ListBackupsOutput";
|
|
814
|
-
const _LCI = "ListContributorInsights";
|
|
815
|
-
const _LCII = "ListContributorInsightsInput";
|
|
816
|
-
const _LCIO = "ListContributorInsightsOutput";
|
|
817
|
-
const _LDDT = "LastDecreaseDateTime";
|
|
818
|
-
const _LE = "ListExports";
|
|
819
|
-
const _LEBA = "LastEvaluatedBackupArn";
|
|
820
|
-
const _LEE = "LimitExceededException";
|
|
821
|
-
const _LEGTN = "LastEvaluatedGlobalTableName";
|
|
822
|
-
const _LEI = "ListExportsInput";
|
|
823
|
-
const _LEK = "LastEvaluatedKey";
|
|
824
|
-
const _LEO = "ListExportsOutput";
|
|
825
|
-
const _LETN = "LastEvaluatedTableName";
|
|
826
|
-
const _LGT = "ListGlobalTables";
|
|
827
|
-
const _LGTI = "ListGlobalTablesInput";
|
|
828
|
-
const _LGTO = "ListGlobalTablesOutput";
|
|
829
|
-
const _LI = "ListImports";
|
|
830
|
-
const _LIDT = "LastIncreaseDateTime";
|
|
831
|
-
const _LII = "ListImportsInput";
|
|
832
|
-
const _LIO = "ListImportsOutput";
|
|
833
|
-
const _LRDT = "LatestRestorableDateTime";
|
|
834
|
-
const _LSA = "LatestStreamArn";
|
|
835
|
-
const _LSI = "LocalSecondaryIndexes";
|
|
836
|
-
const _LSID = "LocalSecondaryIndexDescription";
|
|
837
|
-
const _LSIDL = "LocalSecondaryIndexDescriptionList";
|
|
838
|
-
const _LSII = "LocalSecondaryIndexInfo";
|
|
839
|
-
const _LSIL = "LocalSecondaryIndexList";
|
|
840
|
-
const _LSIO = "LocalSecondaryIndexOverride";
|
|
841
|
-
const _LSIo = "LocalSecondaryIndex";
|
|
842
|
-
const _LSL = "LatestStreamLabel";
|
|
843
|
-
const _LT = "ListTables";
|
|
844
|
-
const _LTI = "ListTablesInput";
|
|
845
|
-
const _LTO = "ListTablesOutput";
|
|
846
|
-
const _LTOR = "ListTagsOfResource";
|
|
847
|
-
const _LTORI = "ListTagsOfResourceInput";
|
|
848
|
-
const _LTORO = "ListTagsOfResourceOutput";
|
|
849
|
-
const _LUDT = "LastUpdateDateTime";
|
|
850
|
-
const _LUTPPRDT = "LastUpdateToPayPerRequestDateTime";
|
|
851
|
-
const _L_ = "L";
|
|
852
|
-
const _M = "Message";
|
|
853
|
-
const _MAV = "MapAttributeValue";
|
|
854
|
-
const _MR = "MaxResults";
|
|
855
|
-
const _MRC = "MultiRegionConsistency";
|
|
856
|
-
const _MRRU = "MaxReadRequestUnits";
|
|
857
|
-
const _MU = "MinimumUnits";
|
|
858
|
-
const _MUa = "MaximumUnits";
|
|
859
|
-
const _MWRU = "MaxWriteRequestUnits";
|
|
860
|
-
const _M_ = "M";
|
|
861
|
-
const _N = "N";
|
|
862
|
-
const _NKA = "NonKeyAttributes";
|
|
863
|
-
const _NODT = "NumberOfDecreasesToday";
|
|
864
|
-
const _NS = "NS";
|
|
865
|
-
const _NT = "NextToken";
|
|
866
|
-
const _NULL = "NULL";
|
|
867
|
-
const _ODT = "OnDemandThroughput";
|
|
868
|
-
const _ODTO = "OnDemandThroughputOverride";
|
|
869
|
-
const _P = "Parameters";
|
|
870
|
-
const _PE = "ProjectionExpression";
|
|
871
|
-
const _PI = "PutItem";
|
|
872
|
-
const _PIC = "ProcessedItemCount";
|
|
873
|
-
const _PII = "PutItemInput";
|
|
874
|
-
const _PIIAM = "PutItemInputAttributeMap";
|
|
875
|
-
const _PIO = "PutItemOutput";
|
|
876
|
-
const _PITRD = "PointInTimeRecoveryDescription";
|
|
877
|
-
const _PITRE = "PointInTimeRecoveryEnabled";
|
|
878
|
-
const _PITRS = "PointInTimeRecoveryStatus";
|
|
879
|
-
const _PITRSo = "PointInTimeRecoverySpecification";
|
|
880
|
-
const _PITRUE = "PointInTimeRecoveryUnavailableException";
|
|
881
|
-
const _PN = "PolicyName";
|
|
882
|
-
const _PNFE = "PolicyNotFoundException";
|
|
883
|
-
const _PQLBR = "PartiQLBatchRequest";
|
|
884
|
-
const _PQLBRa = "PartiQLBatchResponse";
|
|
885
|
-
const _PR = "PutRequest";
|
|
886
|
-
const _PRCASS = "ProvisionedReadCapacityAutoScalingSettings";
|
|
887
|
-
const _PRCASSU = "ProvisionedReadCapacityAutoScalingSettingsUpdate";
|
|
888
|
-
const _PRCASU = "ProvisionedReadCapacityAutoScalingUpdate";
|
|
889
|
-
const _PRCU = "ProvisionedReadCapacityUnits";
|
|
890
|
-
const _PRP = "PutResourcePolicy";
|
|
891
|
-
const _PRPI = "PutResourcePolicyInput";
|
|
892
|
-
const _PRPO = "PutResourcePolicyOutput";
|
|
893
|
-
const _PS = "PageSize";
|
|
894
|
-
const _PSB = "ProcessedSizeBytes";
|
|
895
|
-
const _PSP = "PreparedStatementParameters";
|
|
896
|
-
const _PSa = "ParameterizedStatement";
|
|
897
|
-
const _PSar = "ParameterizedStatements";
|
|
898
|
-
const _PT = "ProvisionedThroughput";
|
|
899
|
-
const _PTD = "ProvisionedThroughputDescription";
|
|
900
|
-
const _PTEE = "ProvisionedThroughputExceededException";
|
|
901
|
-
const _PTO = "ProvisionedThroughputOverride";
|
|
902
|
-
const _PTr = "ProjectionType";
|
|
903
|
-
const _PWCASS = "ProvisionedWriteCapacityAutoScalingSettings";
|
|
904
|
-
const _PWCASSU = "ProvisionedWriteCapacityAutoScalingSettingsUpdate";
|
|
905
|
-
const _PWCASU = "ProvisionedWriteCapacityAutoScalingUpdate";
|
|
906
|
-
const _PWCU = "ProvisionedWriteCapacityUnits";
|
|
907
|
-
const _Po = "Policy";
|
|
908
|
-
const _Pr = "Projection";
|
|
909
|
-
const _Pu = "Put";
|
|
910
|
-
const _Q = "Query";
|
|
911
|
-
const _QF = "QueryFilter";
|
|
912
|
-
const _QI = "QueryInput";
|
|
913
|
-
const _QO = "QueryOutput";
|
|
914
|
-
const _R = "Responses";
|
|
915
|
-
const _RA = "ResourceArn";
|
|
916
|
-
const _RAEE = "ReplicaAlreadyExistsException";
|
|
917
|
-
const _RASD = "ReplicaAutoScalingDescription";
|
|
918
|
-
const _RASDL = "ReplicaAutoScalingDescriptionList";
|
|
919
|
-
const _RASU = "ReplicaAutoScalingUpdate";
|
|
920
|
-
const _RASUL = "ReplicaAutoScalingUpdateList";
|
|
921
|
-
const _RBMS = "ReplicaBillingModeSummary";
|
|
922
|
-
const _RCC = "ReturnConsumedCapacity";
|
|
923
|
-
const _RCU = "ReadCapacityUnits";
|
|
924
|
-
const _RD = "ReplicaDescription";
|
|
925
|
-
const _RDL = "ReplicaDescriptionList";
|
|
926
|
-
const _RDT = "RestoreDateTime";
|
|
927
|
-
const _RG = "ReplicationGroup";
|
|
928
|
-
const _RGSI = "ReplicaGlobalSecondaryIndex";
|
|
929
|
-
const _RGSIASD = "ReplicaGlobalSecondaryIndexAutoScalingDescription";
|
|
930
|
-
const _RGSIASDL = "ReplicaGlobalSecondaryIndexAutoScalingDescriptionList";
|
|
931
|
-
const _RGSIASU = "ReplicaGlobalSecondaryIndexAutoScalingUpdate";
|
|
932
|
-
const _RGSIASUL = "ReplicaGlobalSecondaryIndexAutoScalingUpdateList";
|
|
933
|
-
const _RGSID = "ReplicaGlobalSecondaryIndexDescription";
|
|
934
|
-
const _RGSIDL = "ReplicaGlobalSecondaryIndexDescriptionList";
|
|
935
|
-
const _RGSIL = "ReplicaGlobalSecondaryIndexList";
|
|
936
|
-
const _RGSIS = "ReplicaGlobalSecondaryIndexSettings";
|
|
937
|
-
const _RGSISD = "ReplicaGlobalSecondaryIndexSettingsDescription";
|
|
938
|
-
const _RGSISDL = "ReplicaGlobalSecondaryIndexSettingsDescriptionList";
|
|
939
|
-
const _RGSISU = "ReplicaGlobalSecondaryIndexSettingsUpdate";
|
|
940
|
-
const _RGSISUL = "ReplicaGlobalSecondaryIndexSettingsUpdateList";
|
|
941
|
-
const _RGSIU = "ReplicaGlobalSecondaryIndexUpdates";
|
|
942
|
-
const _RGU = "ReplicationGroupUpdate";
|
|
943
|
-
const _RGUL = "ReplicationGroupUpdateList";
|
|
944
|
-
const _RI = "RequestItems";
|
|
945
|
-
const _RICM = "ReturnItemCollectionMetrics";
|
|
946
|
-
const _RIDT = "ReplicaInaccessibleDateTime";
|
|
947
|
-
const _RIP = "RestoreInProgress";
|
|
948
|
-
const _RIUE = "ResourceInUseException";
|
|
949
|
-
const _RIe = "RevisionId";
|
|
950
|
-
const _RL = "ReplicaList";
|
|
951
|
-
const _RLE = "RequestLimitExceeded";
|
|
952
|
-
const _RN = "RegionName";
|
|
953
|
-
const _RNFE = "ReplicaNotFoundException";
|
|
954
|
-
const _RNFEe = "ResourceNotFoundException";
|
|
955
|
-
const _RP = "ResourcePolicy";
|
|
956
|
-
const _RPID = "RecoveryPeriodInDays";
|
|
957
|
-
const _RPRCASS = "ReplicaProvisionedReadCapacityAutoScalingSettings";
|
|
958
|
-
const _RPRCASSU = "ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate";
|
|
959
|
-
const _RPRCASU = "ReplicaProvisionedReadCapacityAutoScalingUpdate";
|
|
960
|
-
const _RPRCU = "ReplicaProvisionedReadCapacityUnits";
|
|
961
|
-
const _RPWCASS = "ReplicaProvisionedWriteCapacityAutoScalingSettings";
|
|
962
|
-
const _RPWCU = "ReplicaProvisionedWriteCapacityUnits";
|
|
963
|
-
const _RS = "ReplicaSettings";
|
|
964
|
-
const _RSD = "ReplicaStatusDescription";
|
|
965
|
-
const _RSDL = "ReplicaSettingsDescriptionList";
|
|
966
|
-
const _RSDe = "ReplicaSettingsDescription";
|
|
967
|
-
const _RSPP = "ReplicaStatusPercentProgress";
|
|
968
|
-
const _RSU = "ReplicaSettingsUpdate";
|
|
969
|
-
const _RSUL = "ReplicaSettingsUpdateList";
|
|
970
|
-
const _RSe = "ReplicaStatus";
|
|
971
|
-
const _RSes = "RestoreSummary";
|
|
972
|
-
const _RTC = "ReplicaTableClass";
|
|
973
|
-
const _RTCS = "ReplicaTableClassSummary";
|
|
974
|
-
const _RTFB = "RestoreTableFromBackup";
|
|
975
|
-
const _RTFBI = "RestoreTableFromBackupInput";
|
|
976
|
-
const _RTFBO = "RestoreTableFromBackupOutput";
|
|
977
|
-
const _RTTPIT = "RestoreTableToPointInTime";
|
|
978
|
-
const _RTTPITI = "RestoreTableToPointInTimeInput";
|
|
979
|
-
const _RTTPITO = "RestoreTableToPointInTimeOutput";
|
|
980
|
-
const _RU = "ReplicaUpdate";
|
|
981
|
-
const _RUL = "ReplicaUpdateList";
|
|
982
|
-
const _RUPS = "ReadUnitsPerSecond";
|
|
983
|
-
const _RUe = "ReplicaUpdates";
|
|
984
|
-
const _RV = "ReturnValues";
|
|
985
|
-
const _RVOCCF = "ReturnValuesOnConditionCheckFailure";
|
|
986
|
-
const _RWCE = "ReplicatedWriteConflictException";
|
|
987
|
-
const _Re = "Replica";
|
|
988
|
-
const _Rep = "Replicas";
|
|
989
|
-
const _S = "Statements";
|
|
990
|
-
const _SA = "StreamArn";
|
|
991
|
-
const _SB = "S3Bucket";
|
|
992
|
-
const _SBA = "SourceBackupArn";
|
|
993
|
-
const _SBO = "S3BucketOwner";
|
|
994
|
-
const _SBS = "S3BucketSource";
|
|
995
|
-
const _SC = "ScannedCount";
|
|
996
|
-
const _SD = "StreamDescription";
|
|
997
|
-
const _SE = "StreamEnabled";
|
|
998
|
-
const _SERGB = "SizeEstimateRangeGB";
|
|
999
|
-
const _SF = "ScanFilter";
|
|
1000
|
-
const _SI = "ScanInput";
|
|
1001
|
-
const _SIC = "ScaleInCooldown";
|
|
1002
|
-
const _SICM = "SecondaryIndexesCapacityMap";
|
|
1003
|
-
const _SIF = "ScanIndexForward";
|
|
1004
|
-
const _SKP = "S3KeyPrefix";
|
|
1005
|
-
const _SO = "ScanOutput";
|
|
1006
|
-
const _SOC = "ScaleOutCooldown";
|
|
1007
|
-
const _SP = "ScalingPolicies";
|
|
1008
|
-
const _SPU = "ScalingPolicyUpdate";
|
|
1009
|
-
const _SPr = "S3Prefix";
|
|
1010
|
-
const _SS = "StreamSpecification";
|
|
1011
|
-
const _SSA = "S3SseAlgorithm";
|
|
1012
|
-
const _SSED = "SSEDescription";
|
|
1013
|
-
const _SSES = "SSESpecification";
|
|
1014
|
-
const _SSESO = "SSESpecificationOverride";
|
|
1015
|
-
const _SSET = "SSEType";
|
|
1016
|
-
const _SSKKI = "S3SseKmsKeyId";
|
|
1017
|
-
const _SS_ = "SS";
|
|
1018
|
-
const _ST = "StartTime";
|
|
1019
|
-
const _STA = "SourceTableArn";
|
|
1020
|
-
const _STD = "SourceTableDetails";
|
|
1021
|
-
const _STFD = "SourceTableFeatureDetails";
|
|
1022
|
-
const _STN = "SourceTableName";
|
|
1023
|
-
const _SVT = "StreamViewType";
|
|
1024
|
-
const _S_ = "S";
|
|
1025
|
-
const _Sc = "Scan";
|
|
1026
|
-
const _Se = "Select";
|
|
1027
|
-
const _Seg = "Segment";
|
|
1028
|
-
const _St = "Statement";
|
|
1029
|
-
const _Sta = "Status";
|
|
1030
|
-
const _T = "Table";
|
|
1031
|
-
const _TA = "TableArn";
|
|
1032
|
-
const _TAEE = "TableAlreadyExistsException";
|
|
1033
|
-
const _TASD = "TableAutoScalingDescription";
|
|
1034
|
-
const _TC = "TableClass";
|
|
1035
|
-
const _TCDT = "TableCreationDateTime";
|
|
1036
|
-
const _TCE = "TransactionCanceledException";
|
|
1037
|
-
const _TCEr = "TransactionConflictException";
|
|
1038
|
-
const _TCO = "TableClassOverride";
|
|
1039
|
-
const _TCP = "TableCreationParameters";
|
|
1040
|
-
const _TCS = "TableClassSummary";
|
|
1041
|
-
const _TD = "TableDescription";
|
|
1042
|
-
const _TE = "ThrottlingException";
|
|
1043
|
-
const _TGI = "TransactGetItem";
|
|
1044
|
-
const _TGII = "TransactGetItemsInput";
|
|
1045
|
-
const _TGIL = "TransactGetItemList";
|
|
1046
|
-
const _TGIO = "TransactGetItemsOutput";
|
|
1047
|
-
const _TGIr = "TransactGetItems";
|
|
1048
|
-
const _TI = "TableId";
|
|
1049
|
-
const _TIPE = "TransactionInProgressException";
|
|
1050
|
-
const _TIUE = "TableInUseException";
|
|
1051
|
-
const _TIr = "TransactItems";
|
|
1052
|
-
const _TK = "TagKeys";
|
|
1053
|
-
const _TL = "TagList";
|
|
1054
|
-
const _TMRCU = "TableMaxReadCapacityUnits";
|
|
1055
|
-
const _TMWCU = "TableMaxWriteCapacityUnits";
|
|
1056
|
-
const _TN = "TableName";
|
|
1057
|
-
const _TNFE = "TableNotFoundException";
|
|
1058
|
-
const _TNa = "TableNames";
|
|
1059
|
-
const _TR = "ThrottlingReasons";
|
|
1060
|
-
const _TRI = "TagResourceInput";
|
|
1061
|
-
const _TRL = "ThrottlingReasonList";
|
|
1062
|
-
const _TRLB = "TimeRangeLowerBound";
|
|
1063
|
-
const _TRUB = "TimeRangeUpperBound";
|
|
1064
|
-
const _TRa = "TagResource";
|
|
1065
|
-
const _TRh = "ThrottlingReason";
|
|
1066
|
-
const _TS = "TransactStatements";
|
|
1067
|
-
const _TSB = "TableSizeBytes";
|
|
1068
|
-
const _TSa = "TableStatus";
|
|
1069
|
-
const _TSo = "TotalSegments";
|
|
1070
|
-
const _TTLD = "TimeToLiveDescription";
|
|
1071
|
-
const _TTLS = "TimeToLiveStatus";
|
|
1072
|
-
const _TTLSi = "TimeToLiveSpecification";
|
|
1073
|
-
const _TTN = "TargetTableName";
|
|
1074
|
-
const _TTSPC = "TargetTrackingScalingPolicyConfiguration";
|
|
1075
|
-
const _TV = "TargetValue";
|
|
1076
|
-
const _TWI = "TransactWriteItem";
|
|
1077
|
-
const _TWII = "TransactWriteItemsInput";
|
|
1078
|
-
const _TWIL = "TransactWriteItemList";
|
|
1079
|
-
const _TWIO = "TransactWriteItemsOutput";
|
|
1080
|
-
const _TWIr = "TransactWriteItems";
|
|
1081
|
-
const _TWTD = "TableWarmThroughputDescription";
|
|
1082
|
-
const _Ta = "Tags";
|
|
1083
|
-
const _Tag = "Tag";
|
|
1084
|
-
const _U = "Update";
|
|
1085
|
-
const _UCB = "UpdateContinuousBackups";
|
|
1086
|
-
const _UCBI = "UpdateContinuousBackupsInput";
|
|
1087
|
-
const _UCBO = "UpdateContinuousBackupsOutput";
|
|
1088
|
-
const _UCI = "UpdateContributorInsights";
|
|
1089
|
-
const _UCII = "UpdateContributorInsightsInput";
|
|
1090
|
-
const _UCIO = "UpdateContributorInsightsOutput";
|
|
1091
|
-
const _UE = "UpdateExpression";
|
|
1092
|
-
const _UGSIA = "UpdateGlobalSecondaryIndexAction";
|
|
1093
|
-
const _UGT = "UpdateGlobalTable";
|
|
1094
|
-
const _UGTI = "UpdateGlobalTableInput";
|
|
1095
|
-
const _UGTO = "UpdateGlobalTableOutput";
|
|
1096
|
-
const _UGTS = "UpdateGlobalTableSettings";
|
|
1097
|
-
const _UGTSI = "UpdateGlobalTableSettingsInput";
|
|
1098
|
-
const _UGTSO = "UpdateGlobalTableSettingsOutput";
|
|
1099
|
-
const _UI = "UnprocessedItems";
|
|
1100
|
-
const _UII = "UpdateItemInput";
|
|
1101
|
-
const _UIO = "UpdateItemOutput";
|
|
1102
|
-
const _UIp = "UpdateItem";
|
|
1103
|
-
const _UK = "UnprocessedKeys";
|
|
1104
|
-
const _UKSC = "UpdateKinesisStreamingConfiguration";
|
|
1105
|
-
const _UKSD = "UpdateKinesisStreamingDestination";
|
|
1106
|
-
const _UKSDI = "UpdateKinesisStreamingDestinationInput";
|
|
1107
|
-
const _UKSDO = "UpdateKinesisStreamingDestinationOutput";
|
|
1108
|
-
const _ULRT = "UseLatestRestorableTime";
|
|
1109
|
-
const _UR = "UntagResource";
|
|
1110
|
-
const _URGMA = "UpdateReplicationGroupMemberAction";
|
|
1111
|
-
const _URI = "UntagResourceInput";
|
|
1112
|
-
const _UT = "UpdateTable";
|
|
1113
|
-
const _UTI = "UpdateTableInput";
|
|
1114
|
-
const _UTO = "UpdateTableOutput";
|
|
1115
|
-
const _UTRAS = "UpdateTableReplicaAutoScaling";
|
|
1116
|
-
const _UTRASI = "UpdateTableReplicaAutoScalingInput";
|
|
1117
|
-
const _UTRASO = "UpdateTableReplicaAutoScalingOutput";
|
|
1118
|
-
const _UTTL = "UpdateTimeToLive";
|
|
1119
|
-
const _UTTLI = "UpdateTimeToLiveInput";
|
|
1120
|
-
const _UTTLO = "UpdateTimeToLiveOutput";
|
|
1121
|
-
const _V = "Value";
|
|
1122
|
-
const _WCU = "WriteCapacityUnits";
|
|
1123
|
-
const _WR = "WriteRequest";
|
|
1124
|
-
const _WRr = "WriteRequests";
|
|
1125
|
-
const _WS = "WitnessStatus";
|
|
1126
|
-
const _WT = "WarmThroughput";
|
|
1127
|
-
const _WUPS = "WriteUnitsPerSecond";
|
|
1128
|
-
const _aQE = "awsQueryError";
|
|
1129
|
-
const _c = "client";
|
|
1130
|
-
const _e = "error";
|
|
1131
|
-
const _hE = "httpError";
|
|
1132
|
-
const _hH = "httpHeader";
|
|
1133
|
-
const _m = "message";
|
|
1134
|
-
const _r = "reason";
|
|
1135
|
-
const _re = "resource";
|
|
1136
|
-
const _s = "server";
|
|
1137
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.dynamodb";
|
|
1138
|
-
const _tR = "throttlingReasons";
|
|
1139
|
-
const _xacrsra = "x-amz-confirm-remove-self-resource-access";
|
|
1140
|
-
const n0 = "com.amazonaws.dynamodb";
|
|
1141
|
-
var ArchivalSummary$ = [3, n0, _AS,
|
|
1142
|
-
0,
|
|
1143
|
-
[_ADT, _AR, _ABA],
|
|
1144
|
-
[4, 0, 0]
|
|
1145
|
-
];
|
|
1146
|
-
var AttributeDefinition$ = [3, n0, _AD,
|
|
1147
|
-
0,
|
|
1148
|
-
[_AN, _AT],
|
|
1149
|
-
[0, 0], 2
|
|
1150
|
-
];
|
|
1151
|
-
var AttributeValueUpdate$ = [3, n0, _AVU,
|
|
1152
|
-
0,
|
|
1153
|
-
[_V, _A],
|
|
1154
|
-
[() => AttributeValue$, 0]
|
|
1155
|
-
];
|
|
1156
|
-
var AutoScalingPolicyDescription$ = [3, n0, _ASPD,
|
|
1157
|
-
0,
|
|
1158
|
-
[_PN, _TTSPC],
|
|
1159
|
-
[0, () => AutoScalingTargetTrackingScalingPolicyConfigurationDescription$]
|
|
1160
|
-
];
|
|
1161
|
-
var AutoScalingPolicyUpdate$ = [3, n0, _ASPU,
|
|
1162
|
-
0,
|
|
1163
|
-
[_TTSPC, _PN],
|
|
1164
|
-
[() => AutoScalingTargetTrackingScalingPolicyConfigurationUpdate$, 0], 1
|
|
1165
|
-
];
|
|
1166
|
-
var AutoScalingSettingsDescription$ = [3, n0, _ASSD,
|
|
1167
|
-
0,
|
|
1168
|
-
[_MU, _MUa, _ASD, _ASRA, _SP],
|
|
1169
|
-
[1, 1, 2, 0, () => AutoScalingPolicyDescriptionList]
|
|
1170
|
-
];
|
|
1171
|
-
var AutoScalingSettingsUpdate$ = [3, n0, _ASSU,
|
|
1172
|
-
0,
|
|
1173
|
-
[_MU, _MUa, _ASD, _ASRA, _SPU],
|
|
1174
|
-
[1, 1, 2, 0, () => AutoScalingPolicyUpdate$]
|
|
1175
|
-
];
|
|
1176
|
-
var AutoScalingTargetTrackingScalingPolicyConfigurationDescription$ = [3, n0, _ASTTSPCD,
|
|
1177
|
-
0,
|
|
1178
|
-
[_TV, _DSI, _SIC, _SOC],
|
|
1179
|
-
[1, 2, 1, 1], 1
|
|
1180
|
-
];
|
|
1181
|
-
var AutoScalingTargetTrackingScalingPolicyConfigurationUpdate$ = [3, n0, _ASTTSPCU,
|
|
1182
|
-
0,
|
|
1183
|
-
[_TV, _DSI, _SIC, _SOC],
|
|
1184
|
-
[1, 2, 1, 1], 1
|
|
1185
|
-
];
|
|
1186
|
-
var BackupDescription$ = [3, n0, _BD,
|
|
1187
|
-
0,
|
|
1188
|
-
[_BDa, _STD, _STFD],
|
|
1189
|
-
[() => BackupDetails$, () => SourceTableDetails$, () => SourceTableFeatureDetails$]
|
|
1190
|
-
];
|
|
1191
|
-
var BackupDetails$ = [3, n0, _BDa,
|
|
1192
|
-
0,
|
|
1193
|
-
[_BA, _BN, _BS, _BT, _BCDT, _BSB, _BEDT],
|
|
1194
|
-
[0, 0, 0, 0, 4, 1, 4], 5
|
|
1195
|
-
];
|
|
1196
|
-
var BackupInUseException$ = [-3, n0, _BIUE,
|
|
1197
|
-
{ [_e]: _c },
|
|
1198
|
-
[_m],
|
|
1199
|
-
[0]
|
|
1200
|
-
];
|
|
1201
|
-
schema.TypeRegistry.for(n0).registerError(BackupInUseException$, BackupInUseException);
|
|
1202
|
-
var BackupNotFoundException$ = [-3, n0, _BNFE,
|
|
1203
|
-
{ [_e]: _c },
|
|
1204
|
-
[_m],
|
|
1205
|
-
[0]
|
|
1206
|
-
];
|
|
1207
|
-
schema.TypeRegistry.for(n0).registerError(BackupNotFoundException$, BackupNotFoundException);
|
|
1208
|
-
var BackupSummary$ = [3, n0, _BSa,
|
|
1209
|
-
0,
|
|
1210
|
-
[_TN, _TI, _TA, _BA, _BN, _BCDT, _BEDT, _BS, _BT, _BSB],
|
|
1211
|
-
[0, 0, 0, 0, 0, 4, 4, 0, 0, 1]
|
|
1212
|
-
];
|
|
1213
|
-
var BatchExecuteStatementInput$ = [3, n0, _BESI,
|
|
1214
|
-
0,
|
|
1215
|
-
[_S, _RCC],
|
|
1216
|
-
[() => PartiQLBatchRequest, 0], 1
|
|
1217
|
-
];
|
|
1218
|
-
var BatchExecuteStatementOutput$ = [3, n0, _BESO,
|
|
1219
|
-
0,
|
|
1220
|
-
[_R, _CC],
|
|
1221
|
-
[() => PartiQLBatchResponse, () => ConsumedCapacityMultiple]
|
|
1222
|
-
];
|
|
1223
|
-
var BatchGetItemInput$ = [3, n0, _BGII,
|
|
1224
|
-
0,
|
|
1225
|
-
[_RI, _RCC],
|
|
1226
|
-
[() => BatchGetRequestMap, 0], 1
|
|
1227
|
-
];
|
|
1228
|
-
var BatchGetItemOutput$ = [3, n0, _BGIO,
|
|
1229
|
-
0,
|
|
1230
|
-
[_R, _UK, _CC],
|
|
1231
|
-
[() => BatchGetResponseMap, () => BatchGetRequestMap, () => ConsumedCapacityMultiple]
|
|
1232
|
-
];
|
|
1233
|
-
var BatchStatementError$ = [3, n0, _BSE,
|
|
1234
|
-
0,
|
|
1235
|
-
[_C, _M, _I],
|
|
1236
|
-
[0, 0, () => AttributeMap]
|
|
1237
|
-
];
|
|
1238
|
-
var BatchStatementRequest$ = [3, n0, _BSR,
|
|
1239
|
-
0,
|
|
1240
|
-
[_St, _P, _CR, _RVOCCF],
|
|
1241
|
-
[0, () => PreparedStatementParameters, 2, 0], 1
|
|
1242
|
-
];
|
|
1243
|
-
var BatchStatementResponse$ = [3, n0, _BSRa,
|
|
1244
|
-
0,
|
|
1245
|
-
[_E, _TN, _I],
|
|
1246
|
-
[() => BatchStatementError$, 0, () => AttributeMap]
|
|
1247
|
-
];
|
|
1248
|
-
var BatchWriteItemInput$ = [3, n0, _BWII,
|
|
1249
|
-
0,
|
|
1250
|
-
[_RI, _RCC, _RICM],
|
|
1251
|
-
[() => BatchWriteItemRequestMap, 0, 0], 1
|
|
1252
|
-
];
|
|
1253
|
-
var BatchWriteItemOutput$ = [3, n0, _BWIO,
|
|
1254
|
-
0,
|
|
1255
|
-
[_UI, _ICM, _CC],
|
|
1256
|
-
[() => BatchWriteItemRequestMap, () => ItemCollectionMetricsPerTable, () => ConsumedCapacityMultiple]
|
|
1257
|
-
];
|
|
1258
|
-
var BillingModeSummary$ = [3, n0, _BMS,
|
|
1259
|
-
0,
|
|
1260
|
-
[_BM, _LUTPPRDT],
|
|
1261
|
-
[0, 4]
|
|
1262
|
-
];
|
|
1263
|
-
var CancellationReason$ = [3, n0, _CRa,
|
|
1264
|
-
0,
|
|
1265
|
-
[_I, _C, _M],
|
|
1266
|
-
[() => AttributeMap, 0, 0]
|
|
1267
|
-
];
|
|
1268
|
-
var Capacity$ = [3, n0, _Ca,
|
|
1269
|
-
0,
|
|
1270
|
-
[_RCU, _WCU, _CU],
|
|
1271
|
-
[1, 1, 1]
|
|
1272
|
-
];
|
|
1273
|
-
var Condition$ = [3, n0, _Co,
|
|
1274
|
-
0,
|
|
1275
|
-
[_CO, _AVL],
|
|
1276
|
-
[0, () => AttributeValueList], 1
|
|
1277
|
-
];
|
|
1278
|
-
var ConditionalCheckFailedException$ = [-3, n0, _CCFE,
|
|
1279
|
-
{ [_e]: _c },
|
|
1280
|
-
[_m, _I],
|
|
1281
|
-
[0, () => AttributeMap]
|
|
1282
|
-
];
|
|
1283
|
-
schema.TypeRegistry.for(n0).registerError(ConditionalCheckFailedException$, ConditionalCheckFailedException);
|
|
1284
|
-
var ConditionCheck$ = [3, n0, _CCo,
|
|
1285
|
-
0,
|
|
1286
|
-
[_K, _TN, _CE, _EAN, _EAV, _RVOCCF],
|
|
1287
|
-
[() => Key, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 3
|
|
1288
|
-
];
|
|
1289
|
-
var ConsumedCapacity$ = [3, n0, _CC,
|
|
1290
|
-
0,
|
|
1291
|
-
[_TN, _CU, _RCU, _WCU, _T, _LSI, _GSI],
|
|
1292
|
-
[0, 1, 1, 1, () => Capacity$, () => SecondaryIndexesCapacityMap, () => SecondaryIndexesCapacityMap]
|
|
1293
|
-
];
|
|
1294
|
-
var ContinuousBackupsDescription$ = [3, n0, _CBD,
|
|
1295
|
-
0,
|
|
1296
|
-
[_CBS, _PITRD],
|
|
1297
|
-
[0, () => PointInTimeRecoveryDescription$], 1
|
|
1298
|
-
];
|
|
1299
|
-
var ContinuousBackupsUnavailableException$ = [-3, n0, _CBUE,
|
|
1300
|
-
{ [_e]: _c },
|
|
1301
|
-
[_m],
|
|
1302
|
-
[0]
|
|
1303
|
-
];
|
|
1304
|
-
schema.TypeRegistry.for(n0).registerError(ContinuousBackupsUnavailableException$, ContinuousBackupsUnavailableException);
|
|
1305
|
-
var ContributorInsightsSummary$ = [3, n0, _CIS,
|
|
1306
|
-
0,
|
|
1307
|
-
[_TN, _IN, _CISo, _CIM],
|
|
1308
|
-
[0, 0, 0, 0]
|
|
1309
|
-
];
|
|
1310
|
-
var CreateBackupInput$ = [3, n0, _CBI,
|
|
1311
|
-
0,
|
|
1312
|
-
[_TN, _BN],
|
|
1313
|
-
[0, 0], 2
|
|
1314
|
-
];
|
|
1315
|
-
var CreateBackupOutput$ = [3, n0, _CBO,
|
|
1316
|
-
0,
|
|
1317
|
-
[_BDa],
|
|
1318
|
-
[() => BackupDetails$]
|
|
1319
|
-
];
|
|
1320
|
-
var CreateGlobalSecondaryIndexAction$ = [3, n0, _CGSIA,
|
|
1321
|
-
0,
|
|
1322
|
-
[_IN, _KS, _Pr, _PT, _ODT, _WT],
|
|
1323
|
-
[0, () => KeySchema, () => Projection$, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => WarmThroughput$], 3
|
|
1324
|
-
];
|
|
1325
|
-
var CreateGlobalTableInput$ = [3, n0, _CGTI,
|
|
1326
|
-
0,
|
|
1327
|
-
[_GTN, _RG],
|
|
1328
|
-
[0, () => ReplicaList], 2
|
|
1329
|
-
];
|
|
1330
|
-
var CreateGlobalTableOutput$ = [3, n0, _CGTO,
|
|
1331
|
-
0,
|
|
1332
|
-
[_GTD],
|
|
1333
|
-
[() => GlobalTableDescription$]
|
|
1334
|
-
];
|
|
1335
|
-
var CreateGlobalTableWitnessGroupMemberAction$ = [3, n0, _CGTWGMA,
|
|
1336
|
-
0,
|
|
1337
|
-
[_RN],
|
|
1338
|
-
[0], 1
|
|
1339
|
-
];
|
|
1340
|
-
var CreateReplicaAction$ = [3, n0, _CRA,
|
|
1341
|
-
0,
|
|
1342
|
-
[_RN],
|
|
1343
|
-
[0], 1
|
|
1344
|
-
];
|
|
1345
|
-
var CreateReplicationGroupMemberAction$ = [3, n0, _CRGMA,
|
|
1346
|
-
0,
|
|
1347
|
-
[_RN, _KMSMKI, _PTO, _ODTO, _GSI, _TCO],
|
|
1348
|
-
[0, 0, () => ProvisionedThroughputOverride$, () => OnDemandThroughputOverride$, () => ReplicaGlobalSecondaryIndexList, 0], 1
|
|
1349
|
-
];
|
|
1350
|
-
var CreateTableInput$ = [3, n0, _CTI,
|
|
1351
|
-
0,
|
|
1352
|
-
[_TN, _ADt, _KS, _LSI, _GSI, _BM, _PT, _SS, _SSES, _Ta, _TC, _DPE, _WT, _RP, _ODT, _GTSA, _GTSRM],
|
|
1353
|
-
[0, () => AttributeDefinitions, () => KeySchema, () => LocalSecondaryIndexList, () => GlobalSecondaryIndexList, 0, () => ProvisionedThroughput$, () => StreamSpecification$, () => SSESpecification$, () => TagList, 0, 2, () => WarmThroughput$, 0, () => OnDemandThroughput$, 0, 0], 1
|
|
1354
|
-
];
|
|
1355
|
-
var CreateTableOutput$ = [3, n0, _CTO,
|
|
1356
|
-
0,
|
|
1357
|
-
[_TD],
|
|
1358
|
-
[() => TableDescription$]
|
|
1359
|
-
];
|
|
1360
|
-
var CsvOptions$ = [3, n0, _COs,
|
|
1361
|
-
0,
|
|
1362
|
-
[_D, _HL],
|
|
1363
|
-
[0, 64 | 0]
|
|
1364
|
-
];
|
|
1365
|
-
var Delete$ = [3, n0, _De,
|
|
1366
|
-
0,
|
|
1367
|
-
[_K, _TN, _CE, _EAN, _EAV, _RVOCCF],
|
|
1368
|
-
[() => Key, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 2
|
|
1369
|
-
];
|
|
1370
|
-
var DeleteBackupInput$ = [3, n0, _DBI,
|
|
1371
|
-
0,
|
|
1372
|
-
[_BA],
|
|
1373
|
-
[0], 1
|
|
1374
|
-
];
|
|
1375
|
-
var DeleteBackupOutput$ = [3, n0, _DBO,
|
|
1376
|
-
0,
|
|
1377
|
-
[_BD],
|
|
1378
|
-
[() => BackupDescription$]
|
|
1379
|
-
];
|
|
1380
|
-
var DeleteGlobalSecondaryIndexAction$ = [3, n0, _DGSIA,
|
|
1381
|
-
0,
|
|
1382
|
-
[_IN],
|
|
1383
|
-
[0], 1
|
|
1384
|
-
];
|
|
1385
|
-
var DeleteGlobalTableWitnessGroupMemberAction$ = [3, n0, _DGTWGMA,
|
|
1386
|
-
0,
|
|
1387
|
-
[_RN],
|
|
1388
|
-
[0], 1
|
|
1389
|
-
];
|
|
1390
|
-
var DeleteItemInput$ = [3, n0, _DII,
|
|
1391
|
-
0,
|
|
1392
|
-
[_TN, _K, _Ex, _COo, _RV, _RCC, _RICM, _CE, _EAN, _EAV, _RVOCCF],
|
|
1393
|
-
[0, () => Key, () => ExpectedAttributeMap, 0, 0, 0, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 2
|
|
1394
|
-
];
|
|
1395
|
-
var DeleteItemOutput$ = [3, n0, _DIO,
|
|
1396
|
-
0,
|
|
1397
|
-
[_At, _CC, _ICM],
|
|
1398
|
-
[() => AttributeMap, () => ConsumedCapacity$, () => ItemCollectionMetrics$]
|
|
1399
|
-
];
|
|
1400
|
-
var DeleteReplicaAction$ = [3, n0, _DRA,
|
|
1401
|
-
0,
|
|
1402
|
-
[_RN],
|
|
1403
|
-
[0], 1
|
|
1404
|
-
];
|
|
1405
|
-
var DeleteReplicationGroupMemberAction$ = [3, n0, _DRGMA,
|
|
1406
|
-
0,
|
|
1407
|
-
[_RN],
|
|
1408
|
-
[0], 1
|
|
1409
|
-
];
|
|
1410
|
-
var DeleteRequest$ = [3, n0, _DR,
|
|
1411
|
-
0,
|
|
1412
|
-
[_K],
|
|
1413
|
-
[() => Key], 1
|
|
1414
|
-
];
|
|
1415
|
-
var DeleteResourcePolicyInput$ = [3, n0, _DRPI,
|
|
1416
|
-
0,
|
|
1417
|
-
[_RA, _ERI],
|
|
1418
|
-
[0, 0], 1
|
|
1419
|
-
];
|
|
1420
|
-
var DeleteResourcePolicyOutput$ = [3, n0, _DRPO,
|
|
1421
|
-
0,
|
|
1422
|
-
[_RIe],
|
|
1423
|
-
[0]
|
|
1424
|
-
];
|
|
1425
|
-
var DeleteTableInput$ = [3, n0, _DTI,
|
|
1426
|
-
0,
|
|
1427
|
-
[_TN],
|
|
1428
|
-
[0], 1
|
|
1429
|
-
];
|
|
1430
|
-
var DeleteTableOutput$ = [3, n0, _DTO,
|
|
1431
|
-
0,
|
|
1432
|
-
[_TD],
|
|
1433
|
-
[() => TableDescription$]
|
|
1434
|
-
];
|
|
1435
|
-
var DescribeBackupInput$ = [3, n0, _DBIe,
|
|
1436
|
-
0,
|
|
1437
|
-
[_BA],
|
|
1438
|
-
[0], 1
|
|
1439
|
-
];
|
|
1440
|
-
var DescribeBackupOutput$ = [3, n0, _DBOe,
|
|
1441
|
-
0,
|
|
1442
|
-
[_BD],
|
|
1443
|
-
[() => BackupDescription$]
|
|
1444
|
-
];
|
|
1445
|
-
var DescribeContinuousBackupsInput$ = [3, n0, _DCBI,
|
|
1446
|
-
0,
|
|
1447
|
-
[_TN],
|
|
1448
|
-
[0], 1
|
|
1449
|
-
];
|
|
1450
|
-
var DescribeContinuousBackupsOutput$ = [3, n0, _DCBO,
|
|
1451
|
-
0,
|
|
1452
|
-
[_CBD],
|
|
1453
|
-
[() => ContinuousBackupsDescription$]
|
|
1454
|
-
];
|
|
1455
|
-
var DescribeContributorInsightsInput$ = [3, n0, _DCII,
|
|
1456
|
-
0,
|
|
1457
|
-
[_TN, _IN],
|
|
1458
|
-
[0, 0], 1
|
|
1459
|
-
];
|
|
1460
|
-
var DescribeContributorInsightsOutput$ = [3, n0, _DCIO,
|
|
1461
|
-
0,
|
|
1462
|
-
[_TN, _IN, _CIRL, _CISo, _LUDT, _FE, _CIM],
|
|
1463
|
-
[0, 0, 64 | 0, 0, 4, () => FailureException$, 0]
|
|
1464
|
-
];
|
|
1465
|
-
var DescribeEndpointsRequest$ = [3, n0, _DER,
|
|
1466
|
-
0,
|
|
1467
|
-
[],
|
|
1468
|
-
[]
|
|
1469
|
-
];
|
|
1470
|
-
var DescribeEndpointsResponse$ = [3, n0, _DERe,
|
|
1471
|
-
0,
|
|
1472
|
-
[_En],
|
|
1473
|
-
[() => Endpoints], 1
|
|
1474
|
-
];
|
|
1475
|
-
var DescribeExportInput$ = [3, n0, _DEI,
|
|
1476
|
-
0,
|
|
1477
|
-
[_EA],
|
|
1478
|
-
[0], 1
|
|
1479
|
-
];
|
|
1480
|
-
var DescribeExportOutput$ = [3, n0, _DEO,
|
|
1481
|
-
0,
|
|
1482
|
-
[_ED],
|
|
1483
|
-
[() => ExportDescription$]
|
|
1484
|
-
];
|
|
1485
|
-
var DescribeGlobalTableInput$ = [3, n0, _DGTI,
|
|
1486
|
-
0,
|
|
1487
|
-
[_GTN],
|
|
1488
|
-
[0], 1
|
|
1489
|
-
];
|
|
1490
|
-
var DescribeGlobalTableOutput$ = [3, n0, _DGTO,
|
|
1491
|
-
0,
|
|
1492
|
-
[_GTD],
|
|
1493
|
-
[() => GlobalTableDescription$]
|
|
1494
|
-
];
|
|
1495
|
-
var DescribeGlobalTableSettingsInput$ = [3, n0, _DGTSI,
|
|
1496
|
-
0,
|
|
1497
|
-
[_GTN],
|
|
1498
|
-
[0], 1
|
|
1499
|
-
];
|
|
1500
|
-
var DescribeGlobalTableSettingsOutput$ = [3, n0, _DGTSO,
|
|
1501
|
-
0,
|
|
1502
|
-
[_GTN, _RS],
|
|
1503
|
-
[0, () => ReplicaSettingsDescriptionList]
|
|
1504
|
-
];
|
|
1505
|
-
var DescribeImportInput$ = [3, n0, _DIIe,
|
|
1506
|
-
0,
|
|
1507
|
-
[_IA],
|
|
1508
|
-
[0], 1
|
|
1509
|
-
];
|
|
1510
|
-
var DescribeImportOutput$ = [3, n0, _DIOe,
|
|
1511
|
-
0,
|
|
1512
|
-
[_ITD],
|
|
1513
|
-
[() => ImportTableDescription$], 1
|
|
1514
|
-
];
|
|
1515
|
-
var DescribeKinesisStreamingDestinationInput$ = [3, n0, _DKSDI,
|
|
1516
|
-
0,
|
|
1517
|
-
[_TN],
|
|
1518
|
-
[0], 1
|
|
1519
|
-
];
|
|
1520
|
-
var DescribeKinesisStreamingDestinationOutput$ = [3, n0, _DKSDO,
|
|
1521
|
-
0,
|
|
1522
|
-
[_TN, _KDSD],
|
|
1523
|
-
[0, () => KinesisDataStreamDestinations]
|
|
1524
|
-
];
|
|
1525
|
-
var DescribeLimitsInput$ = [3, n0, _DLI,
|
|
1526
|
-
0,
|
|
1527
|
-
[],
|
|
1528
|
-
[]
|
|
1529
|
-
];
|
|
1530
|
-
var DescribeLimitsOutput$ = [3, n0, _DLO,
|
|
1531
|
-
0,
|
|
1532
|
-
[_AMRCU, _AMWCU, _TMRCU, _TMWCU],
|
|
1533
|
-
[1, 1, 1, 1]
|
|
1534
|
-
];
|
|
1535
|
-
var DescribeTableInput$ = [3, n0, _DTIe,
|
|
1536
|
-
0,
|
|
1537
|
-
[_TN],
|
|
1538
|
-
[0], 1
|
|
1539
|
-
];
|
|
1540
|
-
var DescribeTableOutput$ = [3, n0, _DTOe,
|
|
1541
|
-
0,
|
|
1542
|
-
[_T],
|
|
1543
|
-
[() => TableDescription$]
|
|
1544
|
-
];
|
|
1545
|
-
var DescribeTableReplicaAutoScalingInput$ = [3, n0, _DTRASI,
|
|
1546
|
-
0,
|
|
1547
|
-
[_TN],
|
|
1548
|
-
[0], 1
|
|
1549
|
-
];
|
|
1550
|
-
var DescribeTableReplicaAutoScalingOutput$ = [3, n0, _DTRASO,
|
|
1551
|
-
0,
|
|
1552
|
-
[_TASD],
|
|
1553
|
-
[() => TableAutoScalingDescription$]
|
|
1554
|
-
];
|
|
1555
|
-
var DescribeTimeToLiveInput$ = [3, n0, _DTTLI,
|
|
1556
|
-
0,
|
|
1557
|
-
[_TN],
|
|
1558
|
-
[0], 1
|
|
1559
|
-
];
|
|
1560
|
-
var DescribeTimeToLiveOutput$ = [3, n0, _DTTLO,
|
|
1561
|
-
0,
|
|
1562
|
-
[_TTLD],
|
|
1563
|
-
[() => TimeToLiveDescription$]
|
|
1564
|
-
];
|
|
1565
|
-
var DuplicateItemException$ = [-3, n0, _DIE,
|
|
1566
|
-
{ [_e]: _c },
|
|
1567
|
-
[_m],
|
|
1568
|
-
[0]
|
|
1569
|
-
];
|
|
1570
|
-
schema.TypeRegistry.for(n0).registerError(DuplicateItemException$, DuplicateItemException);
|
|
1571
|
-
var EnableKinesisStreamingConfiguration$ = [3, n0, _EKSC,
|
|
1572
|
-
0,
|
|
1573
|
-
[_ACDTP],
|
|
1574
|
-
[0]
|
|
1575
|
-
];
|
|
1576
|
-
var Endpoint$ = [3, n0, _End,
|
|
1577
|
-
0,
|
|
1578
|
-
[_Ad, _CPIM],
|
|
1579
|
-
[0, 1], 2
|
|
1580
|
-
];
|
|
1581
|
-
var ExecuteStatementInput$ = [3, n0, _ESI,
|
|
1582
|
-
0,
|
|
1583
|
-
[_St, _P, _CR, _NT, _RCC, _L, _RVOCCF],
|
|
1584
|
-
[0, () => PreparedStatementParameters, 2, 0, 0, 1, 0], 1
|
|
1585
|
-
];
|
|
1586
|
-
var ExecuteStatementOutput$ = [3, n0, _ESO,
|
|
1587
|
-
0,
|
|
1588
|
-
[_It, _NT, _CC, _LEK],
|
|
1589
|
-
[() => ItemList, 0, () => ConsumedCapacity$, () => Key]
|
|
1590
|
-
];
|
|
1591
|
-
var ExecuteTransactionInput$ = [3, n0, _ETI,
|
|
1592
|
-
0,
|
|
1593
|
-
[_TS, _CRT, _RCC],
|
|
1594
|
-
[() => ParameterizedStatements, [0, 4], 0], 1
|
|
1595
|
-
];
|
|
1596
|
-
var ExecuteTransactionOutput$ = [3, n0, _ETO,
|
|
1597
|
-
0,
|
|
1598
|
-
[_R, _CC],
|
|
1599
|
-
[() => ItemResponseList, () => ConsumedCapacityMultiple]
|
|
1600
|
-
];
|
|
1601
|
-
var ExpectedAttributeValue$ = [3, n0, _EAVx,
|
|
1602
|
-
0,
|
|
1603
|
-
[_V, _Exi, _CO, _AVL],
|
|
1604
|
-
[() => AttributeValue$, 2, 0, () => AttributeValueList]
|
|
1605
|
-
];
|
|
1606
|
-
var ExportConflictException$ = [-3, n0, _ECE,
|
|
1607
|
-
{ [_e]: _c },
|
|
1608
|
-
[_m],
|
|
1609
|
-
[0]
|
|
1610
|
-
];
|
|
1611
|
-
schema.TypeRegistry.for(n0).registerError(ExportConflictException$, ExportConflictException);
|
|
1612
|
-
var ExportDescription$ = [3, n0, _ED,
|
|
1613
|
-
0,
|
|
1614
|
-
[_EA, _ES, _ST, _ET, _EM, _TA, _TI, _ETx, _CT, _SB, _SBO, _SPr, _SSA, _SSKKI, _FC, _FM, _EF, _BSBi, _IC, _ETxp, _IES],
|
|
1615
|
-
[0, 0, 4, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, () => IncrementalExportSpecification$]
|
|
1616
|
-
];
|
|
1617
|
-
var ExportNotFoundException$ = [-3, n0, _ENFE,
|
|
1618
|
-
{ [_e]: _c },
|
|
1619
|
-
[_m],
|
|
1620
|
-
[0]
|
|
1621
|
-
];
|
|
1622
|
-
schema.TypeRegistry.for(n0).registerError(ExportNotFoundException$, ExportNotFoundException);
|
|
1623
|
-
var ExportSummary$ = [3, n0, _ESx,
|
|
1624
|
-
0,
|
|
1625
|
-
[_EA, _ES, _ETxp],
|
|
1626
|
-
[0, 0, 0]
|
|
1627
|
-
];
|
|
1628
|
-
var ExportTableToPointInTimeInput$ = [3, n0, _ETTPITI,
|
|
1629
|
-
0,
|
|
1630
|
-
[_TA, _SB, _ETx, _CT, _SBO, _SPr, _SSA, _SSKKI, _EF, _ETxp, _IES],
|
|
1631
|
-
[0, 0, 4, [0, 4], 0, 0, 0, 0, 0, 0, () => IncrementalExportSpecification$], 2
|
|
1632
|
-
];
|
|
1633
|
-
var ExportTableToPointInTimeOutput$ = [3, n0, _ETTPITO,
|
|
1634
|
-
0,
|
|
1635
|
-
[_ED],
|
|
1636
|
-
[() => ExportDescription$]
|
|
1637
|
-
];
|
|
1638
|
-
var FailureException$ = [3, n0, _FE,
|
|
1639
|
-
0,
|
|
1640
|
-
[_EN, _EDx],
|
|
1641
|
-
[0, 0]
|
|
1642
|
-
];
|
|
1643
|
-
var Get$ = [3, n0, _G,
|
|
1644
|
-
0,
|
|
1645
|
-
[_K, _TN, _PE, _EAN],
|
|
1646
|
-
[() => Key, 0, 0, 128 | 0], 2
|
|
1647
|
-
];
|
|
1648
|
-
var GetItemInput$ = [3, n0, _GII,
|
|
1649
|
-
0,
|
|
1650
|
-
[_TN, _K, _ATG, _CR, _RCC, _PE, _EAN],
|
|
1651
|
-
[0, () => Key, 64 | 0, 2, 0, 0, 128 | 0], 2
|
|
1652
|
-
];
|
|
1653
|
-
var GetItemOutput$ = [3, n0, _GIO,
|
|
1654
|
-
0,
|
|
1655
|
-
[_I, _CC],
|
|
1656
|
-
[() => AttributeMap, () => ConsumedCapacity$]
|
|
1657
|
-
];
|
|
1658
|
-
var GetResourcePolicyInput$ = [3, n0, _GRPI,
|
|
1659
|
-
0,
|
|
1660
|
-
[_RA],
|
|
1661
|
-
[0], 1
|
|
1662
|
-
];
|
|
1663
|
-
var GetResourcePolicyOutput$ = [3, n0, _GRPO,
|
|
1664
|
-
0,
|
|
1665
|
-
[_Po, _RIe],
|
|
1666
|
-
[0, 0]
|
|
1667
|
-
];
|
|
1668
|
-
var GlobalSecondaryIndex$ = [3, n0, _GSIl,
|
|
1669
|
-
0,
|
|
1670
|
-
[_IN, _KS, _Pr, _PT, _ODT, _WT],
|
|
1671
|
-
[0, () => KeySchema, () => Projection$, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => WarmThroughput$], 3
|
|
1672
|
-
];
|
|
1673
|
-
var GlobalSecondaryIndexAutoScalingUpdate$ = [3, n0, _GSIASU,
|
|
1674
|
-
0,
|
|
1675
|
-
[_IN, _PWCASU],
|
|
1676
|
-
[0, () => AutoScalingSettingsUpdate$]
|
|
1677
|
-
];
|
|
1678
|
-
var GlobalSecondaryIndexDescription$ = [3, n0, _GSID,
|
|
1679
|
-
0,
|
|
1680
|
-
[_IN, _KS, _Pr, _IS, _B, _PT, _ISB, _IC, _IAn, _ODT, _WT],
|
|
1681
|
-
[0, () => KeySchema, () => Projection$, 0, 2, () => ProvisionedThroughputDescription$, 1, 1, 0, () => OnDemandThroughput$, () => GlobalSecondaryIndexWarmThroughputDescription$]
|
|
1682
|
-
];
|
|
1683
|
-
var GlobalSecondaryIndexInfo$ = [3, n0, _GSII,
|
|
1684
|
-
0,
|
|
1685
|
-
[_IN, _KS, _Pr, _PT, _ODT],
|
|
1686
|
-
[0, () => KeySchema, () => Projection$, () => ProvisionedThroughput$, () => OnDemandThroughput$]
|
|
1687
|
-
];
|
|
1688
|
-
var GlobalSecondaryIndexUpdate$ = [3, n0, _GSIU,
|
|
1689
|
-
0,
|
|
1690
|
-
[_U, _Cr, _De],
|
|
1691
|
-
[() => UpdateGlobalSecondaryIndexAction$, () => CreateGlobalSecondaryIndexAction$, () => DeleteGlobalSecondaryIndexAction$]
|
|
1692
|
-
];
|
|
1693
|
-
var GlobalSecondaryIndexWarmThroughputDescription$ = [3, n0, _GSIWTD,
|
|
1694
|
-
0,
|
|
1695
|
-
[_RUPS, _WUPS, _Sta],
|
|
1696
|
-
[1, 1, 0]
|
|
1697
|
-
];
|
|
1698
|
-
var GlobalTable$ = [3, n0, _GT,
|
|
1699
|
-
0,
|
|
1700
|
-
[_GTN, _RG],
|
|
1701
|
-
[0, () => ReplicaList]
|
|
1702
|
-
];
|
|
1703
|
-
var GlobalTableAlreadyExistsException$ = [-3, n0, _GTAEE,
|
|
1704
|
-
{ [_e]: _c },
|
|
1705
|
-
[_m],
|
|
1706
|
-
[0]
|
|
1707
|
-
];
|
|
1708
|
-
schema.TypeRegistry.for(n0).registerError(GlobalTableAlreadyExistsException$, GlobalTableAlreadyExistsException);
|
|
1709
|
-
var GlobalTableDescription$ = [3, n0, _GTD,
|
|
1710
|
-
0,
|
|
1711
|
-
[_RG, _GTA, _CDT, _GTS, _GTN],
|
|
1712
|
-
[() => ReplicaDescriptionList, 0, 4, 0, 0]
|
|
1713
|
-
];
|
|
1714
|
-
var GlobalTableGlobalSecondaryIndexSettingsUpdate$ = [3, n0, _GTGSISU,
|
|
1715
|
-
0,
|
|
1716
|
-
[_IN, _PWCU, _PWCASSU],
|
|
1717
|
-
[0, 1, () => AutoScalingSettingsUpdate$], 1
|
|
1718
|
-
];
|
|
1719
|
-
var GlobalTableNotFoundException$ = [-3, n0, _GTNFE,
|
|
1720
|
-
{ [_e]: _c },
|
|
1721
|
-
[_m],
|
|
1722
|
-
[0]
|
|
1723
|
-
];
|
|
1724
|
-
schema.TypeRegistry.for(n0).registerError(GlobalTableNotFoundException$, GlobalTableNotFoundException);
|
|
1725
|
-
var GlobalTableWitnessDescription$ = [3, n0, _GTWD,
|
|
1726
|
-
0,
|
|
1727
|
-
[_RN, _WS],
|
|
1728
|
-
[0, 0]
|
|
1729
|
-
];
|
|
1730
|
-
var GlobalTableWitnessGroupUpdate$ = [3, n0, _GTWGU,
|
|
1731
|
-
0,
|
|
1732
|
-
[_Cr, _De],
|
|
1733
|
-
[() => CreateGlobalTableWitnessGroupMemberAction$, () => DeleteGlobalTableWitnessGroupMemberAction$]
|
|
1734
|
-
];
|
|
1735
|
-
var IdempotentParameterMismatchException$ = [-3, n0, _IPME,
|
|
1736
|
-
{ [_e]: _c },
|
|
1737
|
-
[_M],
|
|
1738
|
-
[0]
|
|
1739
|
-
];
|
|
1740
|
-
schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
|
|
1741
|
-
var ImportConflictException$ = [-3, n0, _ICE,
|
|
1742
|
-
{ [_e]: _c },
|
|
1743
|
-
[_m],
|
|
1744
|
-
[0]
|
|
1745
|
-
];
|
|
1746
|
-
schema.TypeRegistry.for(n0).registerError(ImportConflictException$, ImportConflictException);
|
|
1747
|
-
var ImportNotFoundException$ = [-3, n0, _INFE,
|
|
1748
|
-
{ [_e]: _c },
|
|
1749
|
-
[_m],
|
|
1750
|
-
[0]
|
|
1751
|
-
];
|
|
1752
|
-
schema.TypeRegistry.for(n0).registerError(ImportNotFoundException$, ImportNotFoundException);
|
|
1753
|
-
var ImportSummary$ = [3, n0, _ISm,
|
|
1754
|
-
0,
|
|
1755
|
-
[_IA, _ISmp, _TA, _SBS, _CWLGA, _IF, _ST, _ET],
|
|
1756
|
-
[0, 0, 0, () => S3BucketSource$, 0, 0, 4, 4]
|
|
1757
|
-
];
|
|
1758
|
-
var ImportTableDescription$ = [3, n0, _ITD,
|
|
1759
|
-
0,
|
|
1760
|
-
[_IA, _ISmp, _TA, _TI, _CT, _SBS, _EC, _CWLGA, _IF, _IFO, _ICT, _TCP, _ST, _ET, _PSB, _PIC, _IIC, _FC, _FM],
|
|
1761
|
-
[0, 0, 0, 0, 0, () => S3BucketSource$, 1, 0, 0, () => InputFormatOptions$, 0, () => TableCreationParameters$, 4, 4, 1, 1, 1, 0, 0]
|
|
1762
|
-
];
|
|
1763
|
-
var ImportTableInput$ = [3, n0, _ITI,
|
|
1764
|
-
0,
|
|
1765
|
-
[_SBS, _IF, _TCP, _CT, _IFO, _ICT],
|
|
1766
|
-
[() => S3BucketSource$, 0, () => TableCreationParameters$, [0, 4], () => InputFormatOptions$, 0], 3
|
|
1767
|
-
];
|
|
1768
|
-
var ImportTableOutput$ = [3, n0, _ITO,
|
|
1769
|
-
0,
|
|
1770
|
-
[_ITD],
|
|
1771
|
-
[() => ImportTableDescription$], 1
|
|
1772
|
-
];
|
|
1773
|
-
var IncrementalExportSpecification$ = [3, n0, _IES,
|
|
1774
|
-
0,
|
|
1775
|
-
[_EFT, _ETT, _EVT],
|
|
1776
|
-
[4, 4, 0]
|
|
1777
|
-
];
|
|
1778
|
-
var IndexNotFoundException$ = [-3, n0, _INFEn,
|
|
1779
|
-
{ [_e]: _c },
|
|
1780
|
-
[_m],
|
|
1781
|
-
[0]
|
|
1782
|
-
];
|
|
1783
|
-
schema.TypeRegistry.for(n0).registerError(IndexNotFoundException$, IndexNotFoundException);
|
|
1784
|
-
var InputFormatOptions$ = [3, n0, _IFO,
|
|
1785
|
-
0,
|
|
1786
|
-
[_Cs],
|
|
1787
|
-
[() => CsvOptions$]
|
|
1788
|
-
];
|
|
1789
|
-
var InternalServerError$ = [-3, n0, _ISE,
|
|
1790
|
-
{ [_e]: _s },
|
|
1791
|
-
[_m],
|
|
1792
|
-
[0]
|
|
1793
|
-
];
|
|
1794
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerError$, InternalServerError);
|
|
1795
|
-
var InvalidEndpointException$ = [-3, n0, _IEE,
|
|
1796
|
-
{ [_e]: _c, [_hE]: 421 },
|
|
1797
|
-
[_M],
|
|
1798
|
-
[0]
|
|
1799
|
-
];
|
|
1800
|
-
schema.TypeRegistry.for(n0).registerError(InvalidEndpointException$, InvalidEndpointException);
|
|
1801
|
-
var InvalidExportTimeException$ = [-3, n0, _IETE,
|
|
1802
|
-
{ [_e]: _c },
|
|
1803
|
-
[_m],
|
|
1804
|
-
[0]
|
|
1805
|
-
];
|
|
1806
|
-
schema.TypeRegistry.for(n0).registerError(InvalidExportTimeException$, InvalidExportTimeException);
|
|
1807
|
-
var InvalidRestoreTimeException$ = [-3, n0, _IRTE,
|
|
1808
|
-
{ [_e]: _c },
|
|
1809
|
-
[_m],
|
|
1810
|
-
[0]
|
|
1811
|
-
];
|
|
1812
|
-
schema.TypeRegistry.for(n0).registerError(InvalidRestoreTimeException$, InvalidRestoreTimeException);
|
|
1813
|
-
var ItemCollectionMetrics$ = [3, n0, _ICM,
|
|
1814
|
-
0,
|
|
1815
|
-
[_ICK, _SERGB],
|
|
1816
|
-
[() => ItemCollectionKeyAttributeMap, 64 | 1]
|
|
1817
|
-
];
|
|
1818
|
-
var ItemCollectionSizeLimitExceededException$ = [-3, n0, _ICSLEE,
|
|
1819
|
-
{ [_e]: _c },
|
|
1820
|
-
[_m],
|
|
1821
|
-
[0]
|
|
1822
|
-
];
|
|
1823
|
-
schema.TypeRegistry.for(n0).registerError(ItemCollectionSizeLimitExceededException$, ItemCollectionSizeLimitExceededException);
|
|
1824
|
-
var ItemResponse$ = [3, n0, _IR,
|
|
1825
|
-
0,
|
|
1826
|
-
[_I],
|
|
1827
|
-
[() => AttributeMap]
|
|
1828
|
-
];
|
|
1829
|
-
var KeysAndAttributes$ = [3, n0, _KAA,
|
|
1830
|
-
0,
|
|
1831
|
-
[_Ke, _ATG, _CR, _PE, _EAN],
|
|
1832
|
-
[() => KeyList, 64 | 0, 2, 0, 128 | 0], 1
|
|
1833
|
-
];
|
|
1834
|
-
var KeySchemaElement$ = [3, n0, _KSE,
|
|
1835
|
-
0,
|
|
1836
|
-
[_AN, _KT],
|
|
1837
|
-
[0, 0], 2
|
|
1838
|
-
];
|
|
1839
|
-
var KinesisDataStreamDestination$ = [3, n0, _KDSDi,
|
|
1840
|
-
0,
|
|
1841
|
-
[_SA, _DS, _DSD, _ACDTP],
|
|
1842
|
-
[0, 0, 0, 0]
|
|
1843
|
-
];
|
|
1844
|
-
var KinesisStreamingDestinationInput$ = [3, n0, _KSDI,
|
|
1845
|
-
0,
|
|
1846
|
-
[_TN, _SA, _EKSC],
|
|
1847
|
-
[0, 0, () => EnableKinesisStreamingConfiguration$], 2
|
|
1848
|
-
];
|
|
1849
|
-
var KinesisStreamingDestinationOutput$ = [3, n0, _KSDO,
|
|
1850
|
-
0,
|
|
1851
|
-
[_TN, _SA, _DS, _EKSC],
|
|
1852
|
-
[0, 0, 0, () => EnableKinesisStreamingConfiguration$]
|
|
1853
|
-
];
|
|
1854
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1855
|
-
{ [_e]: _c },
|
|
1856
|
-
[_m],
|
|
1857
|
-
[0]
|
|
1858
|
-
];
|
|
1859
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1860
|
-
var ListBackupsInput$ = [3, n0, _LBI,
|
|
1861
|
-
0,
|
|
1862
|
-
[_TN, _L, _TRLB, _TRUB, _ESBA, _BT],
|
|
1863
|
-
[0, 1, 4, 4, 0, 0]
|
|
1864
|
-
];
|
|
1865
|
-
var ListBackupsOutput$ = [3, n0, _LBO,
|
|
1866
|
-
0,
|
|
1867
|
-
[_BSac, _LEBA],
|
|
1868
|
-
[() => BackupSummaries, 0]
|
|
1869
|
-
];
|
|
1870
|
-
var ListContributorInsightsInput$ = [3, n0, _LCII,
|
|
1871
|
-
0,
|
|
1872
|
-
[_TN, _NT, _MR],
|
|
1873
|
-
[0, 0, 1]
|
|
1874
|
-
];
|
|
1875
|
-
var ListContributorInsightsOutput$ = [3, n0, _LCIO,
|
|
1876
|
-
0,
|
|
1877
|
-
[_CISon, _NT],
|
|
1878
|
-
[() => ContributorInsightsSummaries, 0]
|
|
1879
|
-
];
|
|
1880
|
-
var ListExportsInput$ = [3, n0, _LEI,
|
|
1881
|
-
0,
|
|
1882
|
-
[_TA, _MR, _NT],
|
|
1883
|
-
[0, 1, 0]
|
|
1884
|
-
];
|
|
1885
|
-
var ListExportsOutput$ = [3, n0, _LEO,
|
|
1886
|
-
0,
|
|
1887
|
-
[_ESxp, _NT],
|
|
1888
|
-
[() => ExportSummaries, 0]
|
|
1889
|
-
];
|
|
1890
|
-
var ListGlobalTablesInput$ = [3, n0, _LGTI,
|
|
1891
|
-
0,
|
|
1892
|
-
[_ESGTN, _L, _RN],
|
|
1893
|
-
[0, 1, 0]
|
|
1894
|
-
];
|
|
1895
|
-
var ListGlobalTablesOutput$ = [3, n0, _LGTO,
|
|
1896
|
-
0,
|
|
1897
|
-
[_GTl, _LEGTN],
|
|
1898
|
-
[() => GlobalTableList, 0]
|
|
1899
|
-
];
|
|
1900
|
-
var ListImportsInput$ = [3, n0, _LII,
|
|
1901
|
-
0,
|
|
1902
|
-
[_TA, _PS, _NT],
|
|
1903
|
-
[0, 1, 0]
|
|
1904
|
-
];
|
|
1905
|
-
var ListImportsOutput$ = [3, n0, _LIO,
|
|
1906
|
-
0,
|
|
1907
|
-
[_ISL, _NT],
|
|
1908
|
-
[() => ImportSummaryList, 0]
|
|
1909
|
-
];
|
|
1910
|
-
var ListTablesInput$ = [3, n0, _LTI,
|
|
1911
|
-
0,
|
|
1912
|
-
[_ESTN, _L],
|
|
1913
|
-
[0, 1]
|
|
1914
|
-
];
|
|
1915
|
-
var ListTablesOutput$ = [3, n0, _LTO,
|
|
1916
|
-
0,
|
|
1917
|
-
[_TNa, _LETN],
|
|
1918
|
-
[64 | 0, 0]
|
|
1919
|
-
];
|
|
1920
|
-
var ListTagsOfResourceInput$ = [3, n0, _LTORI,
|
|
1921
|
-
0,
|
|
1922
|
-
[_RA, _NT],
|
|
1923
|
-
[0, 0], 1
|
|
1924
|
-
];
|
|
1925
|
-
var ListTagsOfResourceOutput$ = [3, n0, _LTORO,
|
|
1926
|
-
0,
|
|
1927
|
-
[_Ta, _NT],
|
|
1928
|
-
[() => TagList, 0]
|
|
1929
|
-
];
|
|
1930
|
-
var LocalSecondaryIndex$ = [3, n0, _LSIo,
|
|
1931
|
-
0,
|
|
1932
|
-
[_IN, _KS, _Pr],
|
|
1933
|
-
[0, () => KeySchema, () => Projection$], 3
|
|
1934
|
-
];
|
|
1935
|
-
var LocalSecondaryIndexDescription$ = [3, n0, _LSID,
|
|
1936
|
-
0,
|
|
1937
|
-
[_IN, _KS, _Pr, _ISB, _IC, _IAn],
|
|
1938
|
-
[0, () => KeySchema, () => Projection$, 1, 1, 0]
|
|
1939
|
-
];
|
|
1940
|
-
var LocalSecondaryIndexInfo$ = [3, n0, _LSII,
|
|
1941
|
-
0,
|
|
1942
|
-
[_IN, _KS, _Pr],
|
|
1943
|
-
[0, () => KeySchema, () => Projection$]
|
|
1944
|
-
];
|
|
1945
|
-
var OnDemandThroughput$ = [3, n0, _ODT,
|
|
1946
|
-
0,
|
|
1947
|
-
[_MRRU, _MWRU],
|
|
1948
|
-
[1, 1]
|
|
1949
|
-
];
|
|
1950
|
-
var OnDemandThroughputOverride$ = [3, n0, _ODTO,
|
|
1951
|
-
0,
|
|
1952
|
-
[_MRRU],
|
|
1953
|
-
[1]
|
|
1954
|
-
];
|
|
1955
|
-
var ParameterizedStatement$ = [3, n0, _PSa,
|
|
1956
|
-
0,
|
|
1957
|
-
[_St, _P, _RVOCCF],
|
|
1958
|
-
[0, () => PreparedStatementParameters, 0], 1
|
|
1959
|
-
];
|
|
1960
|
-
var PointInTimeRecoveryDescription$ = [3, n0, _PITRD,
|
|
1961
|
-
0,
|
|
1962
|
-
[_PITRS, _RPID, _ERDT, _LRDT],
|
|
1963
|
-
[0, 1, 4, 4]
|
|
1964
|
-
];
|
|
1965
|
-
var PointInTimeRecoverySpecification$ = [3, n0, _PITRSo,
|
|
1966
|
-
0,
|
|
1967
|
-
[_PITRE, _RPID],
|
|
1968
|
-
[2, 1], 1
|
|
1969
|
-
];
|
|
1970
|
-
var PointInTimeRecoveryUnavailableException$ = [-3, n0, _PITRUE,
|
|
1971
|
-
{ [_e]: _c },
|
|
1972
|
-
[_m],
|
|
1973
|
-
[0]
|
|
1974
|
-
];
|
|
1975
|
-
schema.TypeRegistry.for(n0).registerError(PointInTimeRecoveryUnavailableException$, PointInTimeRecoveryUnavailableException);
|
|
1976
|
-
var PolicyNotFoundException$ = [-3, n0, _PNFE,
|
|
1977
|
-
{ [_e]: _c },
|
|
1978
|
-
[_m],
|
|
1979
|
-
[0]
|
|
1980
|
-
];
|
|
1981
|
-
schema.TypeRegistry.for(n0).registerError(PolicyNotFoundException$, PolicyNotFoundException);
|
|
1982
|
-
var Projection$ = [3, n0, _Pr,
|
|
1983
|
-
0,
|
|
1984
|
-
[_PTr, _NKA],
|
|
1985
|
-
[0, 64 | 0]
|
|
1986
|
-
];
|
|
1987
|
-
var ProvisionedThroughput$ = [3, n0, _PT,
|
|
1988
|
-
0,
|
|
1989
|
-
[_RCU, _WCU],
|
|
1990
|
-
[1, 1], 2
|
|
1991
|
-
];
|
|
1992
|
-
var ProvisionedThroughputDescription$ = [3, n0, _PTD,
|
|
1993
|
-
0,
|
|
1994
|
-
[_LIDT, _LDDT, _NODT, _RCU, _WCU],
|
|
1995
|
-
[4, 4, 1, 1, 1]
|
|
1996
|
-
];
|
|
1997
|
-
var ProvisionedThroughputExceededException$ = [-3, n0, _PTEE,
|
|
1998
|
-
{ [_e]: _c },
|
|
1999
|
-
[_m, _TR],
|
|
2000
|
-
[0, () => ThrottlingReasonList]
|
|
2001
|
-
];
|
|
2002
|
-
schema.TypeRegistry.for(n0).registerError(ProvisionedThroughputExceededException$, ProvisionedThroughputExceededException);
|
|
2003
|
-
var ProvisionedThroughputOverride$ = [3, n0, _PTO,
|
|
2004
|
-
0,
|
|
2005
|
-
[_RCU],
|
|
2006
|
-
[1]
|
|
2007
|
-
];
|
|
2008
|
-
var Put$ = [3, n0, _Pu,
|
|
2009
|
-
0,
|
|
2010
|
-
[_I, _TN, _CE, _EAN, _EAV, _RVOCCF],
|
|
2011
|
-
[() => PutItemInputAttributeMap, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 2
|
|
2012
|
-
];
|
|
2013
|
-
var PutItemInput$ = [3, n0, _PII,
|
|
2014
|
-
0,
|
|
2015
|
-
[_TN, _I, _Ex, _RV, _RCC, _RICM, _COo, _CE, _EAN, _EAV, _RVOCCF],
|
|
2016
|
-
[0, () => PutItemInputAttributeMap, () => ExpectedAttributeMap, 0, 0, 0, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 2
|
|
2017
|
-
];
|
|
2018
|
-
var PutItemOutput$ = [3, n0, _PIO,
|
|
2019
|
-
0,
|
|
2020
|
-
[_At, _CC, _ICM],
|
|
2021
|
-
[() => AttributeMap, () => ConsumedCapacity$, () => ItemCollectionMetrics$]
|
|
2022
|
-
];
|
|
2023
|
-
var PutRequest$ = [3, n0, _PR,
|
|
2024
|
-
0,
|
|
2025
|
-
[_I],
|
|
2026
|
-
[() => PutItemInputAttributeMap], 1
|
|
2027
|
-
];
|
|
2028
|
-
var PutResourcePolicyInput$ = [3, n0, _PRPI,
|
|
2029
|
-
0,
|
|
2030
|
-
[_RA, _Po, _ERI, _CRSRA],
|
|
2031
|
-
[0, 0, 0, [2, { [_hH]: _xacrsra }]], 2
|
|
2032
|
-
];
|
|
2033
|
-
var PutResourcePolicyOutput$ = [3, n0, _PRPO,
|
|
2034
|
-
0,
|
|
2035
|
-
[_RIe],
|
|
2036
|
-
[0]
|
|
2037
|
-
];
|
|
2038
|
-
var QueryInput$ = [3, n0, _QI,
|
|
2039
|
-
0,
|
|
2040
|
-
[_TN, _IN, _Se, _ATG, _L, _CR, _KC, _QF, _COo, _SIF, _ESK, _RCC, _PE, _FEi, _KCE, _EAN, _EAV],
|
|
2041
|
-
[0, 0, 0, 64 | 0, 1, 2, () => KeyConditions, () => FilterConditionMap, 0, 2, () => Key, 0, 0, 0, 0, 128 | 0, () => ExpressionAttributeValueMap], 1
|
|
2042
|
-
];
|
|
2043
|
-
var QueryOutput$ = [3, n0, _QO,
|
|
2044
|
-
0,
|
|
2045
|
-
[_It, _Cou, _SC, _LEK, _CC],
|
|
2046
|
-
[() => ItemList, 1, 1, () => Key, () => ConsumedCapacity$]
|
|
2047
|
-
];
|
|
2048
|
-
var Replica$ = [3, n0, _Re,
|
|
2049
|
-
0,
|
|
2050
|
-
[_RN],
|
|
2051
|
-
[0]
|
|
2052
|
-
];
|
|
2053
|
-
var ReplicaAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
2054
|
-
{ [_e]: _c },
|
|
2055
|
-
[_m],
|
|
2056
|
-
[0]
|
|
2057
|
-
];
|
|
2058
|
-
schema.TypeRegistry.for(n0).registerError(ReplicaAlreadyExistsException$, ReplicaAlreadyExistsException);
|
|
2059
|
-
var ReplicaAutoScalingDescription$ = [3, n0, _RASD,
|
|
2060
|
-
0,
|
|
2061
|
-
[_RN, _GSI, _RPRCASS, _RPWCASS, _RSe],
|
|
2062
|
-
[0, () => ReplicaGlobalSecondaryIndexAutoScalingDescriptionList, () => AutoScalingSettingsDescription$, () => AutoScalingSettingsDescription$, 0]
|
|
2063
|
-
];
|
|
2064
|
-
var ReplicaAutoScalingUpdate$ = [3, n0, _RASU,
|
|
2065
|
-
0,
|
|
2066
|
-
[_RN, _RGSIU, _RPRCASU],
|
|
2067
|
-
[0, () => ReplicaGlobalSecondaryIndexAutoScalingUpdateList, () => AutoScalingSettingsUpdate$], 1
|
|
2068
|
-
];
|
|
2069
|
-
var ReplicaDescription$ = [3, n0, _RD,
|
|
2070
|
-
0,
|
|
2071
|
-
[_RN, _RSe, _RSD, _RSPP, _KMSMKI, _PTO, _ODTO, _WT, _GSI, _RIDT, _RTCS, _GTSRM],
|
|
2072
|
-
[0, 0, 0, 0, 0, () => ProvisionedThroughputOverride$, () => OnDemandThroughputOverride$, () => TableWarmThroughputDescription$, () => ReplicaGlobalSecondaryIndexDescriptionList, 4, () => TableClassSummary$, 0]
|
|
2073
|
-
];
|
|
2074
|
-
var ReplicaGlobalSecondaryIndex$ = [3, n0, _RGSI,
|
|
2075
|
-
0,
|
|
2076
|
-
[_IN, _PTO, _ODTO],
|
|
2077
|
-
[0, () => ProvisionedThroughputOverride$, () => OnDemandThroughputOverride$], 1
|
|
2078
|
-
];
|
|
2079
|
-
var ReplicaGlobalSecondaryIndexAutoScalingDescription$ = [3, n0, _RGSIASD,
|
|
2080
|
-
0,
|
|
2081
|
-
[_IN, _IS, _PRCASS, _PWCASS],
|
|
2082
|
-
[0, 0, () => AutoScalingSettingsDescription$, () => AutoScalingSettingsDescription$]
|
|
2083
|
-
];
|
|
2084
|
-
var ReplicaGlobalSecondaryIndexAutoScalingUpdate$ = [3, n0, _RGSIASU,
|
|
2085
|
-
0,
|
|
2086
|
-
[_IN, _PRCASU],
|
|
2087
|
-
[0, () => AutoScalingSettingsUpdate$]
|
|
2088
|
-
];
|
|
2089
|
-
var ReplicaGlobalSecondaryIndexDescription$ = [3, n0, _RGSID,
|
|
2090
|
-
0,
|
|
2091
|
-
[_IN, _PTO, _ODTO, _WT],
|
|
2092
|
-
[0, () => ProvisionedThroughputOverride$, () => OnDemandThroughputOverride$, () => GlobalSecondaryIndexWarmThroughputDescription$]
|
|
2093
|
-
];
|
|
2094
|
-
var ReplicaGlobalSecondaryIndexSettingsDescription$ = [3, n0, _RGSISD,
|
|
2095
|
-
0,
|
|
2096
|
-
[_IN, _IS, _PRCU, _PRCASS, _PWCU, _PWCASS],
|
|
2097
|
-
[0, 0, 1, () => AutoScalingSettingsDescription$, 1, () => AutoScalingSettingsDescription$], 1
|
|
2098
|
-
];
|
|
2099
|
-
var ReplicaGlobalSecondaryIndexSettingsUpdate$ = [3, n0, _RGSISU,
|
|
2100
|
-
0,
|
|
2101
|
-
[_IN, _PRCU, _PRCASSU],
|
|
2102
|
-
[0, 1, () => AutoScalingSettingsUpdate$], 1
|
|
2103
|
-
];
|
|
2104
|
-
var ReplicaNotFoundException$ = [-3, n0, _RNFE,
|
|
2105
|
-
{ [_e]: _c },
|
|
2106
|
-
[_m],
|
|
2107
|
-
[0]
|
|
2108
|
-
];
|
|
2109
|
-
schema.TypeRegistry.for(n0).registerError(ReplicaNotFoundException$, ReplicaNotFoundException);
|
|
2110
|
-
var ReplicaSettingsDescription$ = [3, n0, _RSDe,
|
|
2111
|
-
0,
|
|
2112
|
-
[_RN, _RSe, _RBMS, _RPRCU, _RPRCASS, _RPWCU, _RPWCASS, _RGSIS, _RTCS],
|
|
2113
|
-
[0, 0, () => BillingModeSummary$, 1, () => AutoScalingSettingsDescription$, 1, () => AutoScalingSettingsDescription$, () => ReplicaGlobalSecondaryIndexSettingsDescriptionList, () => TableClassSummary$], 1
|
|
2114
|
-
];
|
|
2115
|
-
var ReplicaSettingsUpdate$ = [3, n0, _RSU,
|
|
2116
|
-
0,
|
|
2117
|
-
[_RN, _RPRCU, _RPRCASSU, _RGSISU, _RTC],
|
|
2118
|
-
[0, 1, () => AutoScalingSettingsUpdate$, () => ReplicaGlobalSecondaryIndexSettingsUpdateList, 0], 1
|
|
2119
|
-
];
|
|
2120
|
-
var ReplicatedWriteConflictException$ = [-3, n0, _RWCE,
|
|
2121
|
-
{ [_e]: _c },
|
|
2122
|
-
[_m],
|
|
2123
|
-
[0]
|
|
2124
|
-
];
|
|
2125
|
-
schema.TypeRegistry.for(n0).registerError(ReplicatedWriteConflictException$, ReplicatedWriteConflictException);
|
|
2126
|
-
var ReplicationGroupUpdate$ = [3, n0, _RGU,
|
|
2127
|
-
0,
|
|
2128
|
-
[_Cr, _U, _De],
|
|
2129
|
-
[() => CreateReplicationGroupMemberAction$, () => UpdateReplicationGroupMemberAction$, () => DeleteReplicationGroupMemberAction$]
|
|
2130
|
-
];
|
|
2131
|
-
var ReplicaUpdate$ = [3, n0, _RU,
|
|
2132
|
-
0,
|
|
2133
|
-
[_Cr, _De],
|
|
2134
|
-
[() => CreateReplicaAction$, () => DeleteReplicaAction$]
|
|
2135
|
-
];
|
|
2136
|
-
var RequestLimitExceeded$ = [-3, n0, _RLE,
|
|
2137
|
-
{ [_e]: _c },
|
|
2138
|
-
[_m, _TR],
|
|
2139
|
-
[0, () => ThrottlingReasonList]
|
|
2140
|
-
];
|
|
2141
|
-
schema.TypeRegistry.for(n0).registerError(RequestLimitExceeded$, RequestLimitExceeded);
|
|
2142
|
-
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
2143
|
-
{ [_e]: _c },
|
|
2144
|
-
[_m],
|
|
2145
|
-
[0]
|
|
2146
|
-
];
|
|
2147
|
-
schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
2148
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFEe,
|
|
2149
|
-
{ [_e]: _c },
|
|
2150
|
-
[_m],
|
|
2151
|
-
[0]
|
|
2152
|
-
];
|
|
2153
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
2154
|
-
var RestoreSummary$ = [3, n0, _RSes,
|
|
2155
|
-
0,
|
|
2156
|
-
[_RDT, _RIP, _SBA, _STA],
|
|
2157
|
-
[4, 2, 0, 0], 2
|
|
2158
|
-
];
|
|
2159
|
-
var RestoreTableFromBackupInput$ = [3, n0, _RTFBI,
|
|
2160
|
-
0,
|
|
2161
|
-
[_TTN, _BA, _BMO, _GSIO, _LSIO, _PTO, _ODTO, _SSESO],
|
|
2162
|
-
[0, 0, 0, () => GlobalSecondaryIndexList, () => LocalSecondaryIndexList, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => SSESpecification$], 2
|
|
2163
|
-
];
|
|
2164
|
-
var RestoreTableFromBackupOutput$ = [3, n0, _RTFBO,
|
|
2165
|
-
0,
|
|
2166
|
-
[_TD],
|
|
2167
|
-
[() => TableDescription$]
|
|
2168
|
-
];
|
|
2169
|
-
var RestoreTableToPointInTimeInput$ = [3, n0, _RTTPITI,
|
|
2170
|
-
0,
|
|
2171
|
-
[_TTN, _STA, _STN, _ULRT, _RDT, _BMO, _GSIO, _LSIO, _PTO, _ODTO, _SSESO],
|
|
2172
|
-
[0, 0, 0, 2, 4, 0, () => GlobalSecondaryIndexList, () => LocalSecondaryIndexList, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => SSESpecification$], 1
|
|
2173
|
-
];
|
|
2174
|
-
var RestoreTableToPointInTimeOutput$ = [3, n0, _RTTPITO,
|
|
2175
|
-
0,
|
|
2176
|
-
[_TD],
|
|
2177
|
-
[() => TableDescription$]
|
|
2178
|
-
];
|
|
2179
|
-
var S3BucketSource$ = [3, n0, _SBS,
|
|
2180
|
-
0,
|
|
2181
|
-
[_SB, _SBO, _SKP],
|
|
2182
|
-
[0, 0, 0], 1
|
|
2183
|
-
];
|
|
2184
|
-
var ScanInput$ = [3, n0, _SI,
|
|
2185
|
-
0,
|
|
2186
|
-
[_TN, _IN, _ATG, _L, _Se, _SF, _COo, _ESK, _RCC, _TSo, _Seg, _PE, _FEi, _EAN, _EAV, _CR],
|
|
2187
|
-
[0, 0, 64 | 0, 1, 0, () => FilterConditionMap, 0, () => Key, 0, 1, 1, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 2], 1
|
|
2188
|
-
];
|
|
2189
|
-
var ScanOutput$ = [3, n0, _SO,
|
|
2190
|
-
0,
|
|
2191
|
-
[_It, _Cou, _SC, _LEK, _CC],
|
|
2192
|
-
[() => ItemList, 1, 1, () => Key, () => ConsumedCapacity$]
|
|
2193
|
-
];
|
|
2194
|
-
var SourceTableDetails$ = [3, n0, _STD,
|
|
2195
|
-
0,
|
|
2196
|
-
[_TN, _TI, _KS, _TCDT, _PT, _TA, _TSB, _ODT, _IC, _BM],
|
|
2197
|
-
[0, 0, () => KeySchema, 4, () => ProvisionedThroughput$, 0, 1, () => OnDemandThroughput$, 1, 0], 5
|
|
2198
|
-
];
|
|
2199
|
-
var SourceTableFeatureDetails$ = [3, n0, _STFD,
|
|
2200
|
-
0,
|
|
2201
|
-
[_LSI, _GSI, _SD, _TTLD, _SSED],
|
|
2202
|
-
[() => LocalSecondaryIndexes, () => GlobalSecondaryIndexes, () => StreamSpecification$, () => TimeToLiveDescription$, () => SSEDescription$]
|
|
2203
|
-
];
|
|
2204
|
-
var SSEDescription$ = [3, n0, _SSED,
|
|
2205
|
-
0,
|
|
2206
|
-
[_Sta, _SSET, _KMSMKA, _IEDT],
|
|
2207
|
-
[0, 0, 0, 4]
|
|
2208
|
-
];
|
|
2209
|
-
var SSESpecification$ = [3, n0, _SSES,
|
|
2210
|
-
0,
|
|
2211
|
-
[_Ena, _SSET, _KMSMKI],
|
|
2212
|
-
[2, 0, 0]
|
|
2213
|
-
];
|
|
2214
|
-
var StreamSpecification$ = [3, n0, _SS,
|
|
2215
|
-
0,
|
|
2216
|
-
[_SE, _SVT],
|
|
2217
|
-
[2, 0], 1
|
|
2218
|
-
];
|
|
2219
|
-
var TableAlreadyExistsException$ = [-3, n0, _TAEE,
|
|
2220
|
-
{ [_e]: _c },
|
|
2221
|
-
[_m],
|
|
2222
|
-
[0]
|
|
2223
|
-
];
|
|
2224
|
-
schema.TypeRegistry.for(n0).registerError(TableAlreadyExistsException$, TableAlreadyExistsException);
|
|
2225
|
-
var TableAutoScalingDescription$ = [3, n0, _TASD,
|
|
2226
|
-
0,
|
|
2227
|
-
[_TN, _TSa, _Rep],
|
|
2228
|
-
[0, 0, () => ReplicaAutoScalingDescriptionList]
|
|
2229
|
-
];
|
|
2230
|
-
var TableClassSummary$ = [3, n0, _TCS,
|
|
2231
|
-
0,
|
|
2232
|
-
[_TC, _LUDT],
|
|
2233
|
-
[0, 4]
|
|
2234
|
-
];
|
|
2235
|
-
var TableCreationParameters$ = [3, n0, _TCP,
|
|
2236
|
-
0,
|
|
2237
|
-
[_TN, _ADt, _KS, _BM, _PT, _ODT, _SSES, _GSI],
|
|
2238
|
-
[0, () => AttributeDefinitions, () => KeySchema, 0, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => SSESpecification$, () => GlobalSecondaryIndexList], 3
|
|
2239
|
-
];
|
|
2240
|
-
var TableDescription$ = [3, n0, _TD,
|
|
2241
|
-
0,
|
|
2242
|
-
[_ADt, _TN, _KS, _TSa, _CDT, _PT, _TSB, _IC, _TA, _TI, _BMS, _LSI, _GSI, _SS, _LSL, _LSA, _GTV, _Rep, _GTW, _GTSRM, _RSes, _SSED, _AS, _TCS, _DPE, _ODT, _WT, _MRC],
|
|
2243
|
-
[() => AttributeDefinitions, 0, () => KeySchema, 0, 4, () => ProvisionedThroughputDescription$, 1, 1, 0, 0, () => BillingModeSummary$, () => LocalSecondaryIndexDescriptionList, () => GlobalSecondaryIndexDescriptionList, () => StreamSpecification$, 0, 0, 0, () => ReplicaDescriptionList, () => GlobalTableWitnessDescriptionList, 0, () => RestoreSummary$, () => SSEDescription$, () => ArchivalSummary$, () => TableClassSummary$, 2, () => OnDemandThroughput$, () => TableWarmThroughputDescription$, 0]
|
|
2244
|
-
];
|
|
2245
|
-
var TableInUseException$ = [-3, n0, _TIUE,
|
|
2246
|
-
{ [_e]: _c },
|
|
2247
|
-
[_m],
|
|
2248
|
-
[0]
|
|
2249
|
-
];
|
|
2250
|
-
schema.TypeRegistry.for(n0).registerError(TableInUseException$, TableInUseException);
|
|
2251
|
-
var TableNotFoundException$ = [-3, n0, _TNFE,
|
|
2252
|
-
{ [_e]: _c },
|
|
2253
|
-
[_m],
|
|
2254
|
-
[0]
|
|
2255
|
-
];
|
|
2256
|
-
schema.TypeRegistry.for(n0).registerError(TableNotFoundException$, TableNotFoundException);
|
|
2257
|
-
var TableWarmThroughputDescription$ = [3, n0, _TWTD,
|
|
2258
|
-
0,
|
|
2259
|
-
[_RUPS, _WUPS, _Sta],
|
|
2260
|
-
[1, 1, 0]
|
|
2261
|
-
];
|
|
2262
|
-
var Tag$ = [3, n0, _Tag,
|
|
2263
|
-
0,
|
|
2264
|
-
[_K, _V],
|
|
2265
|
-
[0, 0], 2
|
|
2266
|
-
];
|
|
2267
|
-
var TagResourceInput$ = [3, n0, _TRI,
|
|
2268
|
-
0,
|
|
2269
|
-
[_RA, _Ta],
|
|
2270
|
-
[0, () => TagList], 2
|
|
2271
|
-
];
|
|
2272
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
2273
|
-
{ [_aQE]: [`Throttling`, 400], [_e]: _c, [_hE]: 400 },
|
|
2274
|
-
[_m, _tR],
|
|
2275
|
-
[0, () => ThrottlingReasonList]
|
|
2276
|
-
];
|
|
2277
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
2278
|
-
var ThrottlingReason$ = [3, n0, _TRh,
|
|
2279
|
-
0,
|
|
2280
|
-
[_r, _re],
|
|
2281
|
-
[0, 0]
|
|
2282
|
-
];
|
|
2283
|
-
var TimeToLiveDescription$ = [3, n0, _TTLD,
|
|
2284
|
-
0,
|
|
2285
|
-
[_TTLS, _AN],
|
|
2286
|
-
[0, 0]
|
|
2287
|
-
];
|
|
2288
|
-
var TimeToLiveSpecification$ = [3, n0, _TTLSi,
|
|
2289
|
-
0,
|
|
2290
|
-
[_Ena, _AN],
|
|
2291
|
-
[2, 0], 2
|
|
2292
|
-
];
|
|
2293
|
-
var TransactGetItem$ = [3, n0, _TGI,
|
|
2294
|
-
0,
|
|
2295
|
-
[_G],
|
|
2296
|
-
[() => Get$], 1
|
|
2297
|
-
];
|
|
2298
|
-
var TransactGetItemsInput$ = [3, n0, _TGII,
|
|
2299
|
-
0,
|
|
2300
|
-
[_TIr, _RCC],
|
|
2301
|
-
[() => TransactGetItemList, 0], 1
|
|
2302
|
-
];
|
|
2303
|
-
var TransactGetItemsOutput$ = [3, n0, _TGIO,
|
|
2304
|
-
0,
|
|
2305
|
-
[_CC, _R],
|
|
2306
|
-
[() => ConsumedCapacityMultiple, () => ItemResponseList]
|
|
2307
|
-
];
|
|
2308
|
-
var TransactionCanceledException$ = [-3, n0, _TCE,
|
|
2309
|
-
{ [_e]: _c },
|
|
2310
|
-
[_M, _CRan],
|
|
2311
|
-
[0, () => CancellationReasonList]
|
|
2312
|
-
];
|
|
2313
|
-
schema.TypeRegistry.for(n0).registerError(TransactionCanceledException$, TransactionCanceledException);
|
|
2314
|
-
var TransactionConflictException$ = [-3, n0, _TCEr,
|
|
2315
|
-
{ [_e]: _c },
|
|
2316
|
-
[_m],
|
|
2317
|
-
[0]
|
|
2318
|
-
];
|
|
2319
|
-
schema.TypeRegistry.for(n0).registerError(TransactionConflictException$, TransactionConflictException);
|
|
2320
|
-
var TransactionInProgressException$ = [-3, n0, _TIPE,
|
|
2321
|
-
{ [_e]: _c },
|
|
2322
|
-
[_M],
|
|
2323
|
-
[0]
|
|
2324
|
-
];
|
|
2325
|
-
schema.TypeRegistry.for(n0).registerError(TransactionInProgressException$, TransactionInProgressException);
|
|
2326
|
-
var TransactWriteItem$ = [3, n0, _TWI,
|
|
2327
|
-
0,
|
|
2328
|
-
[_CCo, _Pu, _De, _U],
|
|
2329
|
-
[() => ConditionCheck$, () => Put$, () => Delete$, () => Update$]
|
|
2330
|
-
];
|
|
2331
|
-
var TransactWriteItemsInput$ = [3, n0, _TWII,
|
|
2332
|
-
0,
|
|
2333
|
-
[_TIr, _RCC, _RICM, _CRT],
|
|
2334
|
-
[() => TransactWriteItemList, 0, 0, [0, 4]], 1
|
|
2335
|
-
];
|
|
2336
|
-
var TransactWriteItemsOutput$ = [3, n0, _TWIO,
|
|
2337
|
-
0,
|
|
2338
|
-
[_CC, _ICM],
|
|
2339
|
-
[() => ConsumedCapacityMultiple, () => ItemCollectionMetricsPerTable]
|
|
2340
|
-
];
|
|
2341
|
-
var UntagResourceInput$ = [3, n0, _URI,
|
|
2342
|
-
0,
|
|
2343
|
-
[_RA, _TK],
|
|
2344
|
-
[0, 64 | 0], 2
|
|
2345
|
-
];
|
|
2346
|
-
var Update$ = [3, n0, _U,
|
|
2347
|
-
0,
|
|
2348
|
-
[_K, _UE, _TN, _CE, _EAN, _EAV, _RVOCCF],
|
|
2349
|
-
[() => Key, 0, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 3
|
|
2350
|
-
];
|
|
2351
|
-
var UpdateContinuousBackupsInput$ = [3, n0, _UCBI,
|
|
2352
|
-
0,
|
|
2353
|
-
[_TN, _PITRSo],
|
|
2354
|
-
[0, () => PointInTimeRecoverySpecification$], 2
|
|
2355
|
-
];
|
|
2356
|
-
var UpdateContinuousBackupsOutput$ = [3, n0, _UCBO,
|
|
2357
|
-
0,
|
|
2358
|
-
[_CBD],
|
|
2359
|
-
[() => ContinuousBackupsDescription$]
|
|
2360
|
-
];
|
|
2361
|
-
var UpdateContributorInsightsInput$ = [3, n0, _UCII,
|
|
2362
|
-
0,
|
|
2363
|
-
[_TN, _CIA, _IN, _CIM],
|
|
2364
|
-
[0, 0, 0, 0], 2
|
|
2365
|
-
];
|
|
2366
|
-
var UpdateContributorInsightsOutput$ = [3, n0, _UCIO,
|
|
2367
|
-
0,
|
|
2368
|
-
[_TN, _IN, _CISo, _CIM],
|
|
2369
|
-
[0, 0, 0, 0]
|
|
2370
|
-
];
|
|
2371
|
-
var UpdateGlobalSecondaryIndexAction$ = [3, n0, _UGSIA,
|
|
2372
|
-
0,
|
|
2373
|
-
[_IN, _PT, _ODT, _WT],
|
|
2374
|
-
[0, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => WarmThroughput$], 1
|
|
2375
|
-
];
|
|
2376
|
-
var UpdateGlobalTableInput$ = [3, n0, _UGTI,
|
|
2377
|
-
0,
|
|
2378
|
-
[_GTN, _RUe],
|
|
2379
|
-
[0, () => ReplicaUpdateList], 2
|
|
2380
|
-
];
|
|
2381
|
-
var UpdateGlobalTableOutput$ = [3, n0, _UGTO,
|
|
2382
|
-
0,
|
|
2383
|
-
[_GTD],
|
|
2384
|
-
[() => GlobalTableDescription$]
|
|
2385
|
-
];
|
|
2386
|
-
var UpdateGlobalTableSettingsInput$ = [3, n0, _UGTSI,
|
|
2387
|
-
0,
|
|
2388
|
-
[_GTN, _GTBM, _GTPWCU, _GTPWCASSU, _GTGSISU, _RSU],
|
|
2389
|
-
[0, 0, 1, () => AutoScalingSettingsUpdate$, () => GlobalTableGlobalSecondaryIndexSettingsUpdateList, () => ReplicaSettingsUpdateList], 1
|
|
2390
|
-
];
|
|
2391
|
-
var UpdateGlobalTableSettingsOutput$ = [3, n0, _UGTSO,
|
|
2392
|
-
0,
|
|
2393
|
-
[_GTN, _RS],
|
|
2394
|
-
[0, () => ReplicaSettingsDescriptionList]
|
|
2395
|
-
];
|
|
2396
|
-
var UpdateItemInput$ = [3, n0, _UII,
|
|
2397
|
-
0,
|
|
2398
|
-
[_TN, _K, _AU, _Ex, _COo, _RV, _RCC, _RICM, _UE, _CE, _EAN, _EAV, _RVOCCF],
|
|
2399
|
-
[0, () => Key, () => AttributeUpdates, () => ExpectedAttributeMap, 0, 0, 0, 0, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 2
|
|
2400
|
-
];
|
|
2401
|
-
var UpdateItemOutput$ = [3, n0, _UIO,
|
|
2402
|
-
0,
|
|
2403
|
-
[_At, _CC, _ICM],
|
|
2404
|
-
[() => AttributeMap, () => ConsumedCapacity$, () => ItemCollectionMetrics$]
|
|
2405
|
-
];
|
|
2406
|
-
var UpdateKinesisStreamingConfiguration$ = [3, n0, _UKSC,
|
|
2407
|
-
0,
|
|
2408
|
-
[_ACDTP],
|
|
2409
|
-
[0]
|
|
2410
|
-
];
|
|
2411
|
-
var UpdateKinesisStreamingDestinationInput$ = [3, n0, _UKSDI,
|
|
2412
|
-
0,
|
|
2413
|
-
[_TN, _SA, _UKSC],
|
|
2414
|
-
[0, 0, () => UpdateKinesisStreamingConfiguration$], 2
|
|
2415
|
-
];
|
|
2416
|
-
var UpdateKinesisStreamingDestinationOutput$ = [3, n0, _UKSDO,
|
|
2417
|
-
0,
|
|
2418
|
-
[_TN, _SA, _DS, _UKSC],
|
|
2419
|
-
[0, 0, 0, () => UpdateKinesisStreamingConfiguration$]
|
|
2420
|
-
];
|
|
2421
|
-
var UpdateReplicationGroupMemberAction$ = [3, n0, _URGMA,
|
|
2422
|
-
0,
|
|
2423
|
-
[_RN, _KMSMKI, _PTO, _ODTO, _GSI, _TCO],
|
|
2424
|
-
[0, 0, () => ProvisionedThroughputOverride$, () => OnDemandThroughputOverride$, () => ReplicaGlobalSecondaryIndexList, 0], 1
|
|
2425
|
-
];
|
|
2426
|
-
var UpdateTableInput$ = [3, n0, _UTI,
|
|
2427
|
-
0,
|
|
2428
|
-
[_TN, _ADt, _BM, _PT, _GSIUl, _SS, _SSES, _RUe, _TC, _DPE, _MRC, _GTWU, _ODT, _WT],
|
|
2429
|
-
[0, () => AttributeDefinitions, 0, () => ProvisionedThroughput$, () => GlobalSecondaryIndexUpdateList, () => StreamSpecification$, () => SSESpecification$, () => ReplicationGroupUpdateList, 0, 2, 0, () => GlobalTableWitnessGroupUpdateList, () => OnDemandThroughput$, () => WarmThroughput$], 1
|
|
2430
|
-
];
|
|
2431
|
-
var UpdateTableOutput$ = [3, n0, _UTO,
|
|
2432
|
-
0,
|
|
2433
|
-
[_TD],
|
|
2434
|
-
[() => TableDescription$]
|
|
2435
|
-
];
|
|
2436
|
-
var UpdateTableReplicaAutoScalingInput$ = [3, n0, _UTRASI,
|
|
2437
|
-
0,
|
|
2438
|
-
[_TN, _GSIUl, _PWCASU, _RUe],
|
|
2439
|
-
[0, () => GlobalSecondaryIndexAutoScalingUpdateList, () => AutoScalingSettingsUpdate$, () => ReplicaAutoScalingUpdateList], 1
|
|
2440
|
-
];
|
|
2441
|
-
var UpdateTableReplicaAutoScalingOutput$ = [3, n0, _UTRASO,
|
|
2442
|
-
0,
|
|
2443
|
-
[_TASD],
|
|
2444
|
-
[() => TableAutoScalingDescription$]
|
|
2445
|
-
];
|
|
2446
|
-
var UpdateTimeToLiveInput$ = [3, n0, _UTTLI,
|
|
2447
|
-
0,
|
|
2448
|
-
[_TN, _TTLSi],
|
|
2449
|
-
[0, () => TimeToLiveSpecification$], 2
|
|
2450
|
-
];
|
|
2451
|
-
var UpdateTimeToLiveOutput$ = [3, n0, _UTTLO,
|
|
2452
|
-
0,
|
|
2453
|
-
[_TTLSi],
|
|
2454
|
-
[() => TimeToLiveSpecification$]
|
|
2455
|
-
];
|
|
2456
|
-
var WarmThroughput$ = [3, n0, _WT,
|
|
2457
|
-
0,
|
|
2458
|
-
[_RUPS, _WUPS],
|
|
2459
|
-
[1, 1]
|
|
2460
|
-
];
|
|
2461
|
-
var WriteRequest$ = [3, n0, _WR,
|
|
2462
|
-
0,
|
|
2463
|
-
[_PR, _DR],
|
|
2464
|
-
[() => PutRequest$, () => DeleteRequest$]
|
|
2465
|
-
];
|
|
2466
|
-
var __Unit = "unit";
|
|
2467
|
-
var DynamoDBServiceException$ = [-3, _sm, "DynamoDBServiceException", 0, [], []];
|
|
2468
|
-
schema.TypeRegistry.for(_sm).registerError(DynamoDBServiceException$, DynamoDBServiceException);
|
|
2469
|
-
var AttributeDefinitions = [1, n0, _ADt,
|
|
2470
|
-
0, () => AttributeDefinition$
|
|
2471
|
-
];
|
|
2472
|
-
var AttributeValueList = [1, n0, _AVL,
|
|
2473
|
-
0, () => AttributeValue$
|
|
2474
|
-
];
|
|
2475
|
-
var AutoScalingPolicyDescriptionList = [1, n0, _ASPDL,
|
|
2476
|
-
0, () => AutoScalingPolicyDescription$
|
|
2477
|
-
];
|
|
2478
|
-
var BackupSummaries = [1, n0, _BSac,
|
|
2479
|
-
0, () => BackupSummary$
|
|
2480
|
-
];
|
|
2481
|
-
var CancellationReasonList = [1, n0, _CRL,
|
|
2482
|
-
0, () => CancellationReason$
|
|
2483
|
-
];
|
|
2484
|
-
var ConsumedCapacityMultiple = [1, n0, _CCM,
|
|
2485
|
-
0, () => ConsumedCapacity$
|
|
2486
|
-
];
|
|
2487
|
-
var ContributorInsightsSummaries = [1, n0, _CISon,
|
|
2488
|
-
0, () => ContributorInsightsSummary$
|
|
2489
|
-
];
|
|
2490
|
-
var Endpoints = [1, n0, _En,
|
|
2491
|
-
0, () => Endpoint$
|
|
2492
|
-
];
|
|
2493
|
-
var ExportSummaries = [1, n0, _ESxp,
|
|
2494
|
-
0, () => ExportSummary$
|
|
2495
|
-
];
|
|
2496
|
-
var GlobalSecondaryIndexAutoScalingUpdateList = [1, n0, _GSIASUL,
|
|
2497
|
-
0, () => GlobalSecondaryIndexAutoScalingUpdate$
|
|
2498
|
-
];
|
|
2499
|
-
var GlobalSecondaryIndexDescriptionList = [1, n0, _GSIDL,
|
|
2500
|
-
0, () => GlobalSecondaryIndexDescription$
|
|
2501
|
-
];
|
|
2502
|
-
var GlobalSecondaryIndexes = [1, n0, _GSI,
|
|
2503
|
-
0, () => GlobalSecondaryIndexInfo$
|
|
2504
|
-
];
|
|
2505
|
-
var GlobalSecondaryIndexList = [1, n0, _GSIL,
|
|
2506
|
-
0, () => GlobalSecondaryIndex$
|
|
2507
|
-
];
|
|
2508
|
-
var GlobalSecondaryIndexUpdateList = [1, n0, _GSIUL,
|
|
2509
|
-
0, () => GlobalSecondaryIndexUpdate$
|
|
2510
|
-
];
|
|
2511
|
-
var GlobalTableGlobalSecondaryIndexSettingsUpdateList = [1, n0, _GTGSISUL,
|
|
2512
|
-
0, () => GlobalTableGlobalSecondaryIndexSettingsUpdate$
|
|
2513
|
-
];
|
|
2514
|
-
var GlobalTableList = [1, n0, _GTL,
|
|
2515
|
-
0, () => GlobalTable$
|
|
2516
|
-
];
|
|
2517
|
-
var GlobalTableWitnessDescriptionList = [1, n0, _GTWDL,
|
|
2518
|
-
0, () => GlobalTableWitnessDescription$
|
|
2519
|
-
];
|
|
2520
|
-
var GlobalTableWitnessGroupUpdateList = [1, n0, _GTWGUL,
|
|
2521
|
-
0, () => GlobalTableWitnessGroupUpdate$
|
|
2522
|
-
];
|
|
2523
|
-
var ImportSummaryList = [1, n0, _ISL,
|
|
2524
|
-
0, () => ImportSummary$
|
|
2525
|
-
];
|
|
2526
|
-
var ItemCollectionMetricsMultiple = [1, n0, _ICMM,
|
|
2527
|
-
0, () => ItemCollectionMetrics$
|
|
2528
|
-
];
|
|
2529
|
-
var ItemList = [1, n0, _IL,
|
|
2530
|
-
0, () => AttributeMap
|
|
2531
|
-
];
|
|
2532
|
-
var ItemResponseList = [1, n0, _IRL,
|
|
2533
|
-
0, () => ItemResponse$
|
|
2534
|
-
];
|
|
2535
|
-
var KeyList = [1, n0, _KL,
|
|
2536
|
-
0, () => Key
|
|
2537
|
-
];
|
|
2538
|
-
var KeySchema = [1, n0, _KS,
|
|
2539
|
-
0, () => KeySchemaElement$
|
|
2540
|
-
];
|
|
2541
|
-
var KinesisDataStreamDestinations = [1, n0, _KDSD,
|
|
2542
|
-
0, () => KinesisDataStreamDestination$
|
|
2543
|
-
];
|
|
2544
|
-
var ListAttributeValue = [1, n0, _LAV,
|
|
2545
|
-
0, () => AttributeValue$
|
|
2546
|
-
];
|
|
2547
|
-
var LocalSecondaryIndexDescriptionList = [1, n0, _LSIDL,
|
|
2548
|
-
0, () => LocalSecondaryIndexDescription$
|
|
2549
|
-
];
|
|
2550
|
-
var LocalSecondaryIndexes = [1, n0, _LSI,
|
|
2551
|
-
0, () => LocalSecondaryIndexInfo$
|
|
2552
|
-
];
|
|
2553
|
-
var LocalSecondaryIndexList = [1, n0, _LSIL,
|
|
2554
|
-
0, () => LocalSecondaryIndex$
|
|
2555
|
-
];
|
|
2556
|
-
var ParameterizedStatements = [1, n0, _PSar,
|
|
2557
|
-
0, () => ParameterizedStatement$
|
|
2558
|
-
];
|
|
2559
|
-
var PartiQLBatchRequest = [1, n0, _PQLBR,
|
|
2560
|
-
0, () => BatchStatementRequest$
|
|
2561
|
-
];
|
|
2562
|
-
var PartiQLBatchResponse = [1, n0, _PQLBRa,
|
|
2563
|
-
0, () => BatchStatementResponse$
|
|
2564
|
-
];
|
|
2565
|
-
var PreparedStatementParameters = [1, n0, _PSP,
|
|
2566
|
-
0, () => AttributeValue$
|
|
2567
|
-
];
|
|
2568
|
-
var ReplicaAutoScalingDescriptionList = [1, n0, _RASDL,
|
|
2569
|
-
0, () => ReplicaAutoScalingDescription$
|
|
2570
|
-
];
|
|
2571
|
-
var ReplicaAutoScalingUpdateList = [1, n0, _RASUL,
|
|
2572
|
-
0, () => ReplicaAutoScalingUpdate$
|
|
2573
|
-
];
|
|
2574
|
-
var ReplicaDescriptionList = [1, n0, _RDL,
|
|
2575
|
-
0, () => ReplicaDescription$
|
|
2576
|
-
];
|
|
2577
|
-
var ReplicaGlobalSecondaryIndexAutoScalingDescriptionList = [1, n0, _RGSIASDL,
|
|
2578
|
-
0, () => ReplicaGlobalSecondaryIndexAutoScalingDescription$
|
|
2579
|
-
];
|
|
2580
|
-
var ReplicaGlobalSecondaryIndexAutoScalingUpdateList = [1, n0, _RGSIASUL,
|
|
2581
|
-
0, () => ReplicaGlobalSecondaryIndexAutoScalingUpdate$
|
|
2582
|
-
];
|
|
2583
|
-
var ReplicaGlobalSecondaryIndexDescriptionList = [1, n0, _RGSIDL,
|
|
2584
|
-
0, () => ReplicaGlobalSecondaryIndexDescription$
|
|
2585
|
-
];
|
|
2586
|
-
var ReplicaGlobalSecondaryIndexList = [1, n0, _RGSIL,
|
|
2587
|
-
0, () => ReplicaGlobalSecondaryIndex$
|
|
2588
|
-
];
|
|
2589
|
-
var ReplicaGlobalSecondaryIndexSettingsDescriptionList = [1, n0, _RGSISDL,
|
|
2590
|
-
0, () => ReplicaGlobalSecondaryIndexSettingsDescription$
|
|
2591
|
-
];
|
|
2592
|
-
var ReplicaGlobalSecondaryIndexSettingsUpdateList = [1, n0, _RGSISUL,
|
|
2593
|
-
0, () => ReplicaGlobalSecondaryIndexSettingsUpdate$
|
|
2594
|
-
];
|
|
2595
|
-
var ReplicaList = [1, n0, _RL,
|
|
2596
|
-
0, () => Replica$
|
|
2597
|
-
];
|
|
2598
|
-
var ReplicaSettingsDescriptionList = [1, n0, _RSDL,
|
|
2599
|
-
0, () => ReplicaSettingsDescription$
|
|
2600
|
-
];
|
|
2601
|
-
var ReplicaSettingsUpdateList = [1, n0, _RSUL,
|
|
2602
|
-
0, () => ReplicaSettingsUpdate$
|
|
2603
|
-
];
|
|
2604
|
-
var ReplicationGroupUpdateList = [1, n0, _RGUL,
|
|
2605
|
-
0, () => ReplicationGroupUpdate$
|
|
2606
|
-
];
|
|
2607
|
-
var ReplicaUpdateList = [1, n0, _RUL,
|
|
2608
|
-
0, () => ReplicaUpdate$
|
|
2609
|
-
];
|
|
2610
|
-
var TagList = [1, n0, _TL,
|
|
2611
|
-
0, () => Tag$
|
|
2612
|
-
];
|
|
2613
|
-
var ThrottlingReasonList = [1, n0, _TRL,
|
|
2614
|
-
0, () => ThrottlingReason$
|
|
2615
|
-
];
|
|
2616
|
-
var TransactGetItemList = [1, n0, _TGIL,
|
|
2617
|
-
0, () => TransactGetItem$
|
|
2618
|
-
];
|
|
2619
|
-
var TransactWriteItemList = [1, n0, _TWIL,
|
|
2620
|
-
0, () => TransactWriteItem$
|
|
2621
|
-
];
|
|
2622
|
-
var WriteRequests = [1, n0, _WRr,
|
|
2623
|
-
0, () => WriteRequest$
|
|
2624
|
-
];
|
|
2625
|
-
var AttributeMap = [2, n0, _AM,
|
|
2626
|
-
0, 0, () => AttributeValue$
|
|
2627
|
-
];
|
|
2628
|
-
var AttributeUpdates = [2, n0, _AU,
|
|
2629
|
-
0, 0, () => AttributeValueUpdate$
|
|
2630
|
-
];
|
|
2631
|
-
var BatchGetRequestMap = [2, n0, _BGRMa,
|
|
2632
|
-
0, 0, () => KeysAndAttributes$
|
|
2633
|
-
];
|
|
2634
|
-
var BatchGetResponseMap = [2, n0, _BGRM,
|
|
2635
|
-
0, 0, () => ItemList
|
|
2636
|
-
];
|
|
2637
|
-
var BatchWriteItemRequestMap = [2, n0, _BWIRM,
|
|
2638
|
-
0, 0, () => WriteRequests
|
|
2639
|
-
];
|
|
2640
|
-
var ExpectedAttributeMap = [2, n0, _EAM,
|
|
2641
|
-
0, 0, () => ExpectedAttributeValue$
|
|
2642
|
-
];
|
|
2643
|
-
var ExpressionAttributeValueMap = [2, n0, _EAVM,
|
|
2644
|
-
0, 0, () => AttributeValue$
|
|
2645
|
-
];
|
|
2646
|
-
var FilterConditionMap = [2, n0, _FCM,
|
|
2647
|
-
0, 0, () => Condition$
|
|
2648
|
-
];
|
|
2649
|
-
var ItemCollectionKeyAttributeMap = [2, n0, _ICKAM,
|
|
2650
|
-
0, 0, () => AttributeValue$
|
|
2651
|
-
];
|
|
2652
|
-
var ItemCollectionMetricsPerTable = [2, n0, _ICMPT,
|
|
2653
|
-
0, 0, () => ItemCollectionMetricsMultiple
|
|
2654
|
-
];
|
|
2655
|
-
var Key = [2, n0, _K,
|
|
2656
|
-
0, 0, () => AttributeValue$
|
|
2657
|
-
];
|
|
2658
|
-
var KeyConditions = [2, n0, _KC,
|
|
2659
|
-
0, 0, () => Condition$
|
|
2660
|
-
];
|
|
2661
|
-
var MapAttributeValue = [2, n0, _MAV,
|
|
2662
|
-
0, 0, () => AttributeValue$
|
|
2663
|
-
];
|
|
2664
|
-
var PutItemInputAttributeMap = [2, n0, _PIIAM,
|
|
2665
|
-
0, 0, () => AttributeValue$
|
|
2666
|
-
];
|
|
2667
|
-
var SecondaryIndexesCapacityMap = [2, n0, _SICM,
|
|
2668
|
-
0, 0, () => Capacity$
|
|
2669
|
-
];
|
|
2670
|
-
var AttributeValue$ = [4, n0, _AV,
|
|
2671
|
-
0,
|
|
2672
|
-
[_S_, _N, _B_, _SS_, _NS, _BS_, _M_, _L_, _NULL, _BOOL],
|
|
2673
|
-
[0, 0, 21, 64 | 0, 64 | 0, 64 | 21, () => MapAttributeValue, () => ListAttributeValue, 2, 2]
|
|
2674
|
-
];
|
|
2675
|
-
var BatchExecuteStatement$ = [9, n0, _BES,
|
|
2676
|
-
0, () => BatchExecuteStatementInput$, () => BatchExecuteStatementOutput$
|
|
2677
|
-
];
|
|
2678
|
-
var BatchGetItem$ = [9, n0, _BGI,
|
|
2679
|
-
0, () => BatchGetItemInput$, () => BatchGetItemOutput$
|
|
2680
|
-
];
|
|
2681
|
-
var BatchWriteItem$ = [9, n0, _BWI,
|
|
2682
|
-
0, () => BatchWriteItemInput$, () => BatchWriteItemOutput$
|
|
2683
|
-
];
|
|
2684
|
-
var CreateBackup$ = [9, n0, _CB,
|
|
2685
|
-
0, () => CreateBackupInput$, () => CreateBackupOutput$
|
|
2686
|
-
];
|
|
2687
|
-
var CreateGlobalTable$ = [9, n0, _CGT,
|
|
2688
|
-
0, () => CreateGlobalTableInput$, () => CreateGlobalTableOutput$
|
|
2689
|
-
];
|
|
2690
|
-
var CreateTable$ = [9, n0, _CTr,
|
|
2691
|
-
0, () => CreateTableInput$, () => CreateTableOutput$
|
|
2692
|
-
];
|
|
2693
|
-
var DeleteBackup$ = [9, n0, _DB,
|
|
2694
|
-
0, () => DeleteBackupInput$, () => DeleteBackupOutput$
|
|
2695
|
-
];
|
|
2696
|
-
var DeleteItem$ = [9, n0, _DI,
|
|
2697
|
-
0, () => DeleteItemInput$, () => DeleteItemOutput$
|
|
2698
|
-
];
|
|
2699
|
-
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
2700
|
-
0, () => DeleteResourcePolicyInput$, () => DeleteResourcePolicyOutput$
|
|
2701
|
-
];
|
|
2702
|
-
var DeleteTable$ = [9, n0, _DT,
|
|
2703
|
-
0, () => DeleteTableInput$, () => DeleteTableOutput$
|
|
2704
|
-
];
|
|
2705
|
-
var DescribeBackup$ = [9, n0, _DBe,
|
|
2706
|
-
0, () => DescribeBackupInput$, () => DescribeBackupOutput$
|
|
2707
|
-
];
|
|
2708
|
-
var DescribeContinuousBackups$ = [9, n0, _DCB,
|
|
2709
|
-
0, () => DescribeContinuousBackupsInput$, () => DescribeContinuousBackupsOutput$
|
|
2710
|
-
];
|
|
2711
|
-
var DescribeContributorInsights$ = [9, n0, _DCI,
|
|
2712
|
-
0, () => DescribeContributorInsightsInput$, () => DescribeContributorInsightsOutput$
|
|
2713
|
-
];
|
|
2714
|
-
var DescribeEndpoints$ = [9, n0, _DE,
|
|
2715
|
-
0, () => DescribeEndpointsRequest$, () => DescribeEndpointsResponse$
|
|
2716
|
-
];
|
|
2717
|
-
var DescribeExport$ = [9, n0, _DEe,
|
|
2718
|
-
0, () => DescribeExportInput$, () => DescribeExportOutput$
|
|
2719
|
-
];
|
|
2720
|
-
var DescribeGlobalTable$ = [9, n0, _DGT,
|
|
2721
|
-
0, () => DescribeGlobalTableInput$, () => DescribeGlobalTableOutput$
|
|
2722
|
-
];
|
|
2723
|
-
var DescribeGlobalTableSettings$ = [9, n0, _DGTS,
|
|
2724
|
-
0, () => DescribeGlobalTableSettingsInput$, () => DescribeGlobalTableSettingsOutput$
|
|
2725
|
-
];
|
|
2726
|
-
var DescribeImport$ = [9, n0, _DIe,
|
|
2727
|
-
0, () => DescribeImportInput$, () => DescribeImportOutput$
|
|
2728
|
-
];
|
|
2729
|
-
var DescribeKinesisStreamingDestination$ = [9, n0, _DKSD,
|
|
2730
|
-
0, () => DescribeKinesisStreamingDestinationInput$, () => DescribeKinesisStreamingDestinationOutput$
|
|
2731
|
-
];
|
|
2732
|
-
var DescribeLimits$ = [9, n0, _DL,
|
|
2733
|
-
0, () => DescribeLimitsInput$, () => DescribeLimitsOutput$
|
|
2734
|
-
];
|
|
2735
|
-
var DescribeTable$ = [9, n0, _DTe,
|
|
2736
|
-
0, () => DescribeTableInput$, () => DescribeTableOutput$
|
|
2737
|
-
];
|
|
2738
|
-
var DescribeTableReplicaAutoScaling$ = [9, n0, _DTRAS,
|
|
2739
|
-
0, () => DescribeTableReplicaAutoScalingInput$, () => DescribeTableReplicaAutoScalingOutput$
|
|
2740
|
-
];
|
|
2741
|
-
var DescribeTimeToLive$ = [9, n0, _DTTL,
|
|
2742
|
-
0, () => DescribeTimeToLiveInput$, () => DescribeTimeToLiveOutput$
|
|
2743
|
-
];
|
|
2744
|
-
var DisableKinesisStreamingDestination$ = [9, n0, _DKSDi,
|
|
2745
|
-
0, () => KinesisStreamingDestinationInput$, () => KinesisStreamingDestinationOutput$
|
|
2746
|
-
];
|
|
2747
|
-
var EnableKinesisStreamingDestination$ = [9, n0, _EKSD,
|
|
2748
|
-
0, () => KinesisStreamingDestinationInput$, () => KinesisStreamingDestinationOutput$
|
|
2749
|
-
];
|
|
2750
|
-
var ExecuteStatement$ = [9, n0, _ESxe,
|
|
2751
|
-
0, () => ExecuteStatementInput$, () => ExecuteStatementOutput$
|
|
2752
|
-
];
|
|
2753
|
-
var ExecuteTransaction$ = [9, n0, _ETxe,
|
|
2754
|
-
0, () => ExecuteTransactionInput$, () => ExecuteTransactionOutput$
|
|
2755
|
-
];
|
|
2756
|
-
var ExportTableToPointInTime$ = [9, n0, _ETTPIT,
|
|
2757
|
-
0, () => ExportTableToPointInTimeInput$, () => ExportTableToPointInTimeOutput$
|
|
2758
|
-
];
|
|
2759
|
-
var GetItem$ = [9, n0, _GI,
|
|
2760
|
-
0, () => GetItemInput$, () => GetItemOutput$
|
|
2761
|
-
];
|
|
2762
|
-
var GetResourcePolicy$ = [9, n0, _GRP,
|
|
2763
|
-
0, () => GetResourcePolicyInput$, () => GetResourcePolicyOutput$
|
|
2764
|
-
];
|
|
2765
|
-
var ImportTable$ = [9, n0, _IT,
|
|
2766
|
-
0, () => ImportTableInput$, () => ImportTableOutput$
|
|
2767
|
-
];
|
|
2768
|
-
var ListBackups$ = [9, n0, _LB,
|
|
2769
|
-
0, () => ListBackupsInput$, () => ListBackupsOutput$
|
|
2770
|
-
];
|
|
2771
|
-
var ListContributorInsights$ = [9, n0, _LCI,
|
|
2772
|
-
0, () => ListContributorInsightsInput$, () => ListContributorInsightsOutput$
|
|
2773
|
-
];
|
|
2774
|
-
var ListExports$ = [9, n0, _LE,
|
|
2775
|
-
0, () => ListExportsInput$, () => ListExportsOutput$
|
|
2776
|
-
];
|
|
2777
|
-
var ListGlobalTables$ = [9, n0, _LGT,
|
|
2778
|
-
0, () => ListGlobalTablesInput$, () => ListGlobalTablesOutput$
|
|
2779
|
-
];
|
|
2780
|
-
var ListImports$ = [9, n0, _LI,
|
|
2781
|
-
0, () => ListImportsInput$, () => ListImportsOutput$
|
|
2782
|
-
];
|
|
2783
|
-
var ListTables$ = [9, n0, _LT,
|
|
2784
|
-
0, () => ListTablesInput$, () => ListTablesOutput$
|
|
2785
|
-
];
|
|
2786
|
-
var ListTagsOfResource$ = [9, n0, _LTOR,
|
|
2787
|
-
0, () => ListTagsOfResourceInput$, () => ListTagsOfResourceOutput$
|
|
2788
|
-
];
|
|
2789
|
-
var PutItem$ = [9, n0, _PI,
|
|
2790
|
-
0, () => PutItemInput$, () => PutItemOutput$
|
|
2791
|
-
];
|
|
2792
|
-
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
2793
|
-
0, () => PutResourcePolicyInput$, () => PutResourcePolicyOutput$
|
|
2794
|
-
];
|
|
2795
|
-
var Query$ = [9, n0, _Q,
|
|
2796
|
-
0, () => QueryInput$, () => QueryOutput$
|
|
2797
|
-
];
|
|
2798
|
-
var RestoreTableFromBackup$ = [9, n0, _RTFB,
|
|
2799
|
-
0, () => RestoreTableFromBackupInput$, () => RestoreTableFromBackupOutput$
|
|
2800
|
-
];
|
|
2801
|
-
var RestoreTableToPointInTime$ = [9, n0, _RTTPIT,
|
|
2802
|
-
0, () => RestoreTableToPointInTimeInput$, () => RestoreTableToPointInTimeOutput$
|
|
2803
|
-
];
|
|
2804
|
-
var Scan$ = [9, n0, _Sc,
|
|
2805
|
-
0, () => ScanInput$, () => ScanOutput$
|
|
2806
|
-
];
|
|
2807
|
-
var TagResource$ = [9, n0, _TRa,
|
|
2808
|
-
0, () => TagResourceInput$, () => __Unit
|
|
2809
|
-
];
|
|
2810
|
-
var TransactGetItems$ = [9, n0, _TGIr,
|
|
2811
|
-
0, () => TransactGetItemsInput$, () => TransactGetItemsOutput$
|
|
2812
|
-
];
|
|
2813
|
-
var TransactWriteItems$ = [9, n0, _TWIr,
|
|
2814
|
-
0, () => TransactWriteItemsInput$, () => TransactWriteItemsOutput$
|
|
2815
|
-
];
|
|
2816
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2817
|
-
0, () => UntagResourceInput$, () => __Unit
|
|
2818
|
-
];
|
|
2819
|
-
var UpdateContinuousBackups$ = [9, n0, _UCB,
|
|
2820
|
-
0, () => UpdateContinuousBackupsInput$, () => UpdateContinuousBackupsOutput$
|
|
2821
|
-
];
|
|
2822
|
-
var UpdateContributorInsights$ = [9, n0, _UCI,
|
|
2823
|
-
0, () => UpdateContributorInsightsInput$, () => UpdateContributorInsightsOutput$
|
|
2824
|
-
];
|
|
2825
|
-
var UpdateGlobalTable$ = [9, n0, _UGT,
|
|
2826
|
-
0, () => UpdateGlobalTableInput$, () => UpdateGlobalTableOutput$
|
|
2827
|
-
];
|
|
2828
|
-
var UpdateGlobalTableSettings$ = [9, n0, _UGTS,
|
|
2829
|
-
0, () => UpdateGlobalTableSettingsInput$, () => UpdateGlobalTableSettingsOutput$
|
|
2830
|
-
];
|
|
2831
|
-
var UpdateItem$ = [9, n0, _UIp,
|
|
2832
|
-
0, () => UpdateItemInput$, () => UpdateItemOutput$
|
|
2833
|
-
];
|
|
2834
|
-
var UpdateKinesisStreamingDestination$ = [9, n0, _UKSD,
|
|
2835
|
-
0, () => UpdateKinesisStreamingDestinationInput$, () => UpdateKinesisStreamingDestinationOutput$
|
|
2836
|
-
];
|
|
2837
|
-
var UpdateTable$ = [9, n0, _UT,
|
|
2838
|
-
0, () => UpdateTableInput$, () => UpdateTableOutput$
|
|
2839
|
-
];
|
|
2840
|
-
var UpdateTableReplicaAutoScaling$ = [9, n0, _UTRAS,
|
|
2841
|
-
0, () => UpdateTableReplicaAutoScalingInput$, () => UpdateTableReplicaAutoScalingOutput$
|
|
2842
|
-
];
|
|
2843
|
-
var UpdateTimeToLive$ = [9, n0, _UTTL,
|
|
2844
|
-
0, () => UpdateTimeToLiveInput$, () => UpdateTimeToLiveOutput$
|
|
2845
|
-
];
|
|
2846
|
-
|
|
2847
41
|
class DescribeEndpointsCommand extends smithyClient.Command
|
|
2848
42
|
.classBuilder()
|
|
2849
43
|
.ep(commonParams)
|
|
@@ -2852,7 +46,7 @@ class DescribeEndpointsCommand extends smithyClient.Command
|
|
|
2852
46
|
})
|
|
2853
47
|
.s("DynamoDB_20120810", "DescribeEndpoints", {})
|
|
2854
48
|
.n("DynamoDBClient", "DescribeEndpointsCommand")
|
|
2855
|
-
.sc(DescribeEndpoints$)
|
|
49
|
+
.sc(schemas_0.DescribeEndpoints$)
|
|
2856
50
|
.build() {
|
|
2857
51
|
}
|
|
2858
52
|
|
|
@@ -2946,7 +140,7 @@ class BatchExecuteStatementCommand extends smithyClient.Command
|
|
|
2946
140
|
})
|
|
2947
141
|
.s("DynamoDB_20120810", "BatchExecuteStatement", {})
|
|
2948
142
|
.n("DynamoDBClient", "BatchExecuteStatementCommand")
|
|
2949
|
-
.sc(BatchExecuteStatement$)
|
|
143
|
+
.sc(schemas_0.BatchExecuteStatement$)
|
|
2950
144
|
.build() {
|
|
2951
145
|
}
|
|
2952
146
|
|
|
@@ -2961,7 +155,7 @@ class BatchGetItemCommand extends smithyClient.Command
|
|
|
2961
155
|
})
|
|
2962
156
|
.s("DynamoDB_20120810", "BatchGetItem", {})
|
|
2963
157
|
.n("DynamoDBClient", "BatchGetItemCommand")
|
|
2964
|
-
.sc(BatchGetItem$)
|
|
158
|
+
.sc(schemas_0.BatchGetItem$)
|
|
2965
159
|
.build() {
|
|
2966
160
|
}
|
|
2967
161
|
|
|
@@ -2976,7 +170,7 @@ class BatchWriteItemCommand extends smithyClient.Command
|
|
|
2976
170
|
})
|
|
2977
171
|
.s("DynamoDB_20120810", "BatchWriteItem", {})
|
|
2978
172
|
.n("DynamoDBClient", "BatchWriteItemCommand")
|
|
2979
|
-
.sc(BatchWriteItem$)
|
|
173
|
+
.sc(schemas_0.BatchWriteItem$)
|
|
2980
174
|
.build() {
|
|
2981
175
|
}
|
|
2982
176
|
|
|
@@ -2991,7 +185,7 @@ class CreateBackupCommand extends smithyClient.Command
|
|
|
2991
185
|
})
|
|
2992
186
|
.s("DynamoDB_20120810", "CreateBackup", {})
|
|
2993
187
|
.n("DynamoDBClient", "CreateBackupCommand")
|
|
2994
|
-
.sc(CreateBackup$)
|
|
188
|
+
.sc(schemas_0.CreateBackup$)
|
|
2995
189
|
.build() {
|
|
2996
190
|
}
|
|
2997
191
|
|
|
@@ -3006,7 +200,7 @@ class CreateGlobalTableCommand extends smithyClient.Command
|
|
|
3006
200
|
})
|
|
3007
201
|
.s("DynamoDB_20120810", "CreateGlobalTable", {})
|
|
3008
202
|
.n("DynamoDBClient", "CreateGlobalTableCommand")
|
|
3009
|
-
.sc(CreateGlobalTable$)
|
|
203
|
+
.sc(schemas_0.CreateGlobalTable$)
|
|
3010
204
|
.build() {
|
|
3011
205
|
}
|
|
3012
206
|
|
|
@@ -3021,7 +215,7 @@ class CreateTableCommand extends smithyClient.Command
|
|
|
3021
215
|
})
|
|
3022
216
|
.s("DynamoDB_20120810", "CreateTable", {})
|
|
3023
217
|
.n("DynamoDBClient", "CreateTableCommand")
|
|
3024
|
-
.sc(CreateTable$)
|
|
218
|
+
.sc(schemas_0.CreateTable$)
|
|
3025
219
|
.build() {
|
|
3026
220
|
}
|
|
3027
221
|
|
|
@@ -3036,7 +230,7 @@ class DeleteBackupCommand extends smithyClient.Command
|
|
|
3036
230
|
})
|
|
3037
231
|
.s("DynamoDB_20120810", "DeleteBackup", {})
|
|
3038
232
|
.n("DynamoDBClient", "DeleteBackupCommand")
|
|
3039
|
-
.sc(DeleteBackup$)
|
|
233
|
+
.sc(schemas_0.DeleteBackup$)
|
|
3040
234
|
.build() {
|
|
3041
235
|
}
|
|
3042
236
|
|
|
@@ -3051,7 +245,7 @@ class DeleteItemCommand extends smithyClient.Command
|
|
|
3051
245
|
})
|
|
3052
246
|
.s("DynamoDB_20120810", "DeleteItem", {})
|
|
3053
247
|
.n("DynamoDBClient", "DeleteItemCommand")
|
|
3054
|
-
.sc(DeleteItem$)
|
|
248
|
+
.sc(schemas_0.DeleteItem$)
|
|
3055
249
|
.build() {
|
|
3056
250
|
}
|
|
3057
251
|
|
|
@@ -3066,7 +260,7 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
3066
260
|
})
|
|
3067
261
|
.s("DynamoDB_20120810", "DeleteResourcePolicy", {})
|
|
3068
262
|
.n("DynamoDBClient", "DeleteResourcePolicyCommand")
|
|
3069
|
-
.sc(DeleteResourcePolicy$)
|
|
263
|
+
.sc(schemas_0.DeleteResourcePolicy$)
|
|
3070
264
|
.build() {
|
|
3071
265
|
}
|
|
3072
266
|
|
|
@@ -3081,7 +275,7 @@ class DeleteTableCommand extends smithyClient.Command
|
|
|
3081
275
|
})
|
|
3082
276
|
.s("DynamoDB_20120810", "DeleteTable", {})
|
|
3083
277
|
.n("DynamoDBClient", "DeleteTableCommand")
|
|
3084
|
-
.sc(DeleteTable$)
|
|
278
|
+
.sc(schemas_0.DeleteTable$)
|
|
3085
279
|
.build() {
|
|
3086
280
|
}
|
|
3087
281
|
|
|
@@ -3096,7 +290,7 @@ class DescribeBackupCommand extends smithyClient.Command
|
|
|
3096
290
|
})
|
|
3097
291
|
.s("DynamoDB_20120810", "DescribeBackup", {})
|
|
3098
292
|
.n("DynamoDBClient", "DescribeBackupCommand")
|
|
3099
|
-
.sc(DescribeBackup$)
|
|
293
|
+
.sc(schemas_0.DescribeBackup$)
|
|
3100
294
|
.build() {
|
|
3101
295
|
}
|
|
3102
296
|
|
|
@@ -3111,7 +305,7 @@ class DescribeContinuousBackupsCommand extends smithyClient.Command
|
|
|
3111
305
|
})
|
|
3112
306
|
.s("DynamoDB_20120810", "DescribeContinuousBackups", {})
|
|
3113
307
|
.n("DynamoDBClient", "DescribeContinuousBackupsCommand")
|
|
3114
|
-
.sc(DescribeContinuousBackups$)
|
|
308
|
+
.sc(schemas_0.DescribeContinuousBackups$)
|
|
3115
309
|
.build() {
|
|
3116
310
|
}
|
|
3117
311
|
|
|
@@ -3126,7 +320,7 @@ class DescribeContributorInsightsCommand extends smithyClient.Command
|
|
|
3126
320
|
})
|
|
3127
321
|
.s("DynamoDB_20120810", "DescribeContributorInsights", {})
|
|
3128
322
|
.n("DynamoDBClient", "DescribeContributorInsightsCommand")
|
|
3129
|
-
.sc(DescribeContributorInsights$)
|
|
323
|
+
.sc(schemas_0.DescribeContributorInsights$)
|
|
3130
324
|
.build() {
|
|
3131
325
|
}
|
|
3132
326
|
|
|
@@ -3141,7 +335,7 @@ class DescribeExportCommand extends smithyClient.Command
|
|
|
3141
335
|
})
|
|
3142
336
|
.s("DynamoDB_20120810", "DescribeExport", {})
|
|
3143
337
|
.n("DynamoDBClient", "DescribeExportCommand")
|
|
3144
|
-
.sc(DescribeExport$)
|
|
338
|
+
.sc(schemas_0.DescribeExport$)
|
|
3145
339
|
.build() {
|
|
3146
340
|
}
|
|
3147
341
|
|
|
@@ -3156,7 +350,7 @@ class DescribeGlobalTableCommand extends smithyClient.Command
|
|
|
3156
350
|
})
|
|
3157
351
|
.s("DynamoDB_20120810", "DescribeGlobalTable", {})
|
|
3158
352
|
.n("DynamoDBClient", "DescribeGlobalTableCommand")
|
|
3159
|
-
.sc(DescribeGlobalTable$)
|
|
353
|
+
.sc(schemas_0.DescribeGlobalTable$)
|
|
3160
354
|
.build() {
|
|
3161
355
|
}
|
|
3162
356
|
|
|
@@ -3171,7 +365,7 @@ class DescribeGlobalTableSettingsCommand extends smithyClient.Command
|
|
|
3171
365
|
})
|
|
3172
366
|
.s("DynamoDB_20120810", "DescribeGlobalTableSettings", {})
|
|
3173
367
|
.n("DynamoDBClient", "DescribeGlobalTableSettingsCommand")
|
|
3174
|
-
.sc(DescribeGlobalTableSettings$)
|
|
368
|
+
.sc(schemas_0.DescribeGlobalTableSettings$)
|
|
3175
369
|
.build() {
|
|
3176
370
|
}
|
|
3177
371
|
|
|
@@ -3186,7 +380,7 @@ class DescribeImportCommand extends smithyClient.Command
|
|
|
3186
380
|
})
|
|
3187
381
|
.s("DynamoDB_20120810", "DescribeImport", {})
|
|
3188
382
|
.n("DynamoDBClient", "DescribeImportCommand")
|
|
3189
|
-
.sc(DescribeImport$)
|
|
383
|
+
.sc(schemas_0.DescribeImport$)
|
|
3190
384
|
.build() {
|
|
3191
385
|
}
|
|
3192
386
|
|
|
@@ -3201,7 +395,7 @@ class DescribeKinesisStreamingDestinationCommand extends smithyClient.Command
|
|
|
3201
395
|
})
|
|
3202
396
|
.s("DynamoDB_20120810", "DescribeKinesisStreamingDestination", {})
|
|
3203
397
|
.n("DynamoDBClient", "DescribeKinesisStreamingDestinationCommand")
|
|
3204
|
-
.sc(DescribeKinesisStreamingDestination$)
|
|
398
|
+
.sc(schemas_0.DescribeKinesisStreamingDestination$)
|
|
3205
399
|
.build() {
|
|
3206
400
|
}
|
|
3207
401
|
|
|
@@ -3213,7 +407,7 @@ class DescribeLimitsCommand extends smithyClient.Command
|
|
|
3213
407
|
})
|
|
3214
408
|
.s("DynamoDB_20120810", "DescribeLimits", {})
|
|
3215
409
|
.n("DynamoDBClient", "DescribeLimitsCommand")
|
|
3216
|
-
.sc(DescribeLimits$)
|
|
410
|
+
.sc(schemas_0.DescribeLimits$)
|
|
3217
411
|
.build() {
|
|
3218
412
|
}
|
|
3219
413
|
|
|
@@ -3228,7 +422,7 @@ class DescribeTableCommand extends smithyClient.Command
|
|
|
3228
422
|
})
|
|
3229
423
|
.s("DynamoDB_20120810", "DescribeTable", {})
|
|
3230
424
|
.n("DynamoDBClient", "DescribeTableCommand")
|
|
3231
|
-
.sc(DescribeTable$)
|
|
425
|
+
.sc(schemas_0.DescribeTable$)
|
|
3232
426
|
.build() {
|
|
3233
427
|
}
|
|
3234
428
|
|
|
@@ -3243,7 +437,7 @@ class DescribeTableReplicaAutoScalingCommand extends smithyClient.Command
|
|
|
3243
437
|
})
|
|
3244
438
|
.s("DynamoDB_20120810", "DescribeTableReplicaAutoScaling", {})
|
|
3245
439
|
.n("DynamoDBClient", "DescribeTableReplicaAutoScalingCommand")
|
|
3246
|
-
.sc(DescribeTableReplicaAutoScaling$)
|
|
440
|
+
.sc(schemas_0.DescribeTableReplicaAutoScaling$)
|
|
3247
441
|
.build() {
|
|
3248
442
|
}
|
|
3249
443
|
|
|
@@ -3258,7 +452,7 @@ class DescribeTimeToLiveCommand extends smithyClient.Command
|
|
|
3258
452
|
})
|
|
3259
453
|
.s("DynamoDB_20120810", "DescribeTimeToLive", {})
|
|
3260
454
|
.n("DynamoDBClient", "DescribeTimeToLiveCommand")
|
|
3261
|
-
.sc(DescribeTimeToLive$)
|
|
455
|
+
.sc(schemas_0.DescribeTimeToLive$)
|
|
3262
456
|
.build() {
|
|
3263
457
|
}
|
|
3264
458
|
|
|
@@ -3273,7 +467,7 @@ class DisableKinesisStreamingDestinationCommand extends smithyClient.Command
|
|
|
3273
467
|
})
|
|
3274
468
|
.s("DynamoDB_20120810", "DisableKinesisStreamingDestination", {})
|
|
3275
469
|
.n("DynamoDBClient", "DisableKinesisStreamingDestinationCommand")
|
|
3276
|
-
.sc(DisableKinesisStreamingDestination$)
|
|
470
|
+
.sc(schemas_0.DisableKinesisStreamingDestination$)
|
|
3277
471
|
.build() {
|
|
3278
472
|
}
|
|
3279
473
|
|
|
@@ -3288,7 +482,7 @@ class EnableKinesisStreamingDestinationCommand extends smithyClient.Command
|
|
|
3288
482
|
})
|
|
3289
483
|
.s("DynamoDB_20120810", "EnableKinesisStreamingDestination", {})
|
|
3290
484
|
.n("DynamoDBClient", "EnableKinesisStreamingDestinationCommand")
|
|
3291
|
-
.sc(EnableKinesisStreamingDestination$)
|
|
485
|
+
.sc(schemas_0.EnableKinesisStreamingDestination$)
|
|
3292
486
|
.build() {
|
|
3293
487
|
}
|
|
3294
488
|
|
|
@@ -3300,7 +494,7 @@ class ExecuteStatementCommand extends smithyClient.Command
|
|
|
3300
494
|
})
|
|
3301
495
|
.s("DynamoDB_20120810", "ExecuteStatement", {})
|
|
3302
496
|
.n("DynamoDBClient", "ExecuteStatementCommand")
|
|
3303
|
-
.sc(ExecuteStatement$)
|
|
497
|
+
.sc(schemas_0.ExecuteStatement$)
|
|
3304
498
|
.build() {
|
|
3305
499
|
}
|
|
3306
500
|
|
|
@@ -3312,7 +506,7 @@ class ExecuteTransactionCommand extends smithyClient.Command
|
|
|
3312
506
|
})
|
|
3313
507
|
.s("DynamoDB_20120810", "ExecuteTransaction", {})
|
|
3314
508
|
.n("DynamoDBClient", "ExecuteTransactionCommand")
|
|
3315
|
-
.sc(ExecuteTransaction$)
|
|
509
|
+
.sc(schemas_0.ExecuteTransaction$)
|
|
3316
510
|
.build() {
|
|
3317
511
|
}
|
|
3318
512
|
|
|
@@ -3327,7 +521,7 @@ class ExportTableToPointInTimeCommand extends smithyClient.Command
|
|
|
3327
521
|
})
|
|
3328
522
|
.s("DynamoDB_20120810", "ExportTableToPointInTime", {})
|
|
3329
523
|
.n("DynamoDBClient", "ExportTableToPointInTimeCommand")
|
|
3330
|
-
.sc(ExportTableToPointInTime$)
|
|
524
|
+
.sc(schemas_0.ExportTableToPointInTime$)
|
|
3331
525
|
.build() {
|
|
3332
526
|
}
|
|
3333
527
|
|
|
@@ -3342,7 +536,7 @@ class GetItemCommand extends smithyClient.Command
|
|
|
3342
536
|
})
|
|
3343
537
|
.s("DynamoDB_20120810", "GetItem", {})
|
|
3344
538
|
.n("DynamoDBClient", "GetItemCommand")
|
|
3345
|
-
.sc(GetItem$)
|
|
539
|
+
.sc(schemas_0.GetItem$)
|
|
3346
540
|
.build() {
|
|
3347
541
|
}
|
|
3348
542
|
|
|
@@ -3357,7 +551,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
|
|
|
3357
551
|
})
|
|
3358
552
|
.s("DynamoDB_20120810", "GetResourcePolicy", {})
|
|
3359
553
|
.n("DynamoDBClient", "GetResourcePolicyCommand")
|
|
3360
|
-
.sc(GetResourcePolicy$)
|
|
554
|
+
.sc(schemas_0.GetResourcePolicy$)
|
|
3361
555
|
.build() {
|
|
3362
556
|
}
|
|
3363
557
|
|
|
@@ -3372,7 +566,7 @@ class ImportTableCommand extends smithyClient.Command
|
|
|
3372
566
|
})
|
|
3373
567
|
.s("DynamoDB_20120810", "ImportTable", {})
|
|
3374
568
|
.n("DynamoDBClient", "ImportTableCommand")
|
|
3375
|
-
.sc(ImportTable$)
|
|
569
|
+
.sc(schemas_0.ImportTable$)
|
|
3376
570
|
.build() {
|
|
3377
571
|
}
|
|
3378
572
|
|
|
@@ -3387,7 +581,7 @@ class ListBackupsCommand extends smithyClient.Command
|
|
|
3387
581
|
})
|
|
3388
582
|
.s("DynamoDB_20120810", "ListBackups", {})
|
|
3389
583
|
.n("DynamoDBClient", "ListBackupsCommand")
|
|
3390
|
-
.sc(ListBackups$)
|
|
584
|
+
.sc(schemas_0.ListBackups$)
|
|
3391
585
|
.build() {
|
|
3392
586
|
}
|
|
3393
587
|
|
|
@@ -3402,7 +596,7 @@ class ListContributorInsightsCommand extends smithyClient.Command
|
|
|
3402
596
|
})
|
|
3403
597
|
.s("DynamoDB_20120810", "ListContributorInsights", {})
|
|
3404
598
|
.n("DynamoDBClient", "ListContributorInsightsCommand")
|
|
3405
|
-
.sc(ListContributorInsights$)
|
|
599
|
+
.sc(schemas_0.ListContributorInsights$)
|
|
3406
600
|
.build() {
|
|
3407
601
|
}
|
|
3408
602
|
|
|
@@ -3417,7 +611,7 @@ class ListExportsCommand extends smithyClient.Command
|
|
|
3417
611
|
})
|
|
3418
612
|
.s("DynamoDB_20120810", "ListExports", {})
|
|
3419
613
|
.n("DynamoDBClient", "ListExportsCommand")
|
|
3420
|
-
.sc(ListExports$)
|
|
614
|
+
.sc(schemas_0.ListExports$)
|
|
3421
615
|
.build() {
|
|
3422
616
|
}
|
|
3423
617
|
|
|
@@ -3429,7 +623,7 @@ class ListGlobalTablesCommand extends smithyClient.Command
|
|
|
3429
623
|
})
|
|
3430
624
|
.s("DynamoDB_20120810", "ListGlobalTables", {})
|
|
3431
625
|
.n("DynamoDBClient", "ListGlobalTablesCommand")
|
|
3432
|
-
.sc(ListGlobalTables$)
|
|
626
|
+
.sc(schemas_0.ListGlobalTables$)
|
|
3433
627
|
.build() {
|
|
3434
628
|
}
|
|
3435
629
|
|
|
@@ -3444,7 +638,7 @@ class ListImportsCommand extends smithyClient.Command
|
|
|
3444
638
|
})
|
|
3445
639
|
.s("DynamoDB_20120810", "ListImports", {})
|
|
3446
640
|
.n("DynamoDBClient", "ListImportsCommand")
|
|
3447
|
-
.sc(ListImports$)
|
|
641
|
+
.sc(schemas_0.ListImports$)
|
|
3448
642
|
.build() {
|
|
3449
643
|
}
|
|
3450
644
|
|
|
@@ -3456,7 +650,7 @@ class ListTablesCommand extends smithyClient.Command
|
|
|
3456
650
|
})
|
|
3457
651
|
.s("DynamoDB_20120810", "ListTables", {})
|
|
3458
652
|
.n("DynamoDBClient", "ListTablesCommand")
|
|
3459
|
-
.sc(ListTables$)
|
|
653
|
+
.sc(schemas_0.ListTables$)
|
|
3460
654
|
.build() {
|
|
3461
655
|
}
|
|
3462
656
|
|
|
@@ -3471,7 +665,7 @@ class ListTagsOfResourceCommand extends smithyClient.Command
|
|
|
3471
665
|
})
|
|
3472
666
|
.s("DynamoDB_20120810", "ListTagsOfResource", {})
|
|
3473
667
|
.n("DynamoDBClient", "ListTagsOfResourceCommand")
|
|
3474
|
-
.sc(ListTagsOfResource$)
|
|
668
|
+
.sc(schemas_0.ListTagsOfResource$)
|
|
3475
669
|
.build() {
|
|
3476
670
|
}
|
|
3477
671
|
|
|
@@ -3486,7 +680,7 @@ class PutItemCommand extends smithyClient.Command
|
|
|
3486
680
|
})
|
|
3487
681
|
.s("DynamoDB_20120810", "PutItem", {})
|
|
3488
682
|
.n("DynamoDBClient", "PutItemCommand")
|
|
3489
|
-
.sc(PutItem$)
|
|
683
|
+
.sc(schemas_0.PutItem$)
|
|
3490
684
|
.build() {
|
|
3491
685
|
}
|
|
3492
686
|
|
|
@@ -3501,7 +695,7 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
3501
695
|
})
|
|
3502
696
|
.s("DynamoDB_20120810", "PutResourcePolicy", {})
|
|
3503
697
|
.n("DynamoDBClient", "PutResourcePolicyCommand")
|
|
3504
|
-
.sc(PutResourcePolicy$)
|
|
698
|
+
.sc(schemas_0.PutResourcePolicy$)
|
|
3505
699
|
.build() {
|
|
3506
700
|
}
|
|
3507
701
|
|
|
@@ -3516,7 +710,7 @@ class QueryCommand extends smithyClient.Command
|
|
|
3516
710
|
})
|
|
3517
711
|
.s("DynamoDB_20120810", "Query", {})
|
|
3518
712
|
.n("DynamoDBClient", "QueryCommand")
|
|
3519
|
-
.sc(Query$)
|
|
713
|
+
.sc(schemas_0.Query$)
|
|
3520
714
|
.build() {
|
|
3521
715
|
}
|
|
3522
716
|
|
|
@@ -3531,7 +725,7 @@ class RestoreTableFromBackupCommand extends smithyClient.Command
|
|
|
3531
725
|
})
|
|
3532
726
|
.s("DynamoDB_20120810", "RestoreTableFromBackup", {})
|
|
3533
727
|
.n("DynamoDBClient", "RestoreTableFromBackupCommand")
|
|
3534
|
-
.sc(RestoreTableFromBackup$)
|
|
728
|
+
.sc(schemas_0.RestoreTableFromBackup$)
|
|
3535
729
|
.build() {
|
|
3536
730
|
}
|
|
3537
731
|
|
|
@@ -3546,7 +740,7 @@ class RestoreTableToPointInTimeCommand extends smithyClient.Command
|
|
|
3546
740
|
})
|
|
3547
741
|
.s("DynamoDB_20120810", "RestoreTableToPointInTime", {})
|
|
3548
742
|
.n("DynamoDBClient", "RestoreTableToPointInTimeCommand")
|
|
3549
|
-
.sc(RestoreTableToPointInTime$)
|
|
743
|
+
.sc(schemas_0.RestoreTableToPointInTime$)
|
|
3550
744
|
.build() {
|
|
3551
745
|
}
|
|
3552
746
|
|
|
@@ -3561,7 +755,7 @@ class ScanCommand extends smithyClient.Command
|
|
|
3561
755
|
})
|
|
3562
756
|
.s("DynamoDB_20120810", "Scan", {})
|
|
3563
757
|
.n("DynamoDBClient", "ScanCommand")
|
|
3564
|
-
.sc(Scan$)
|
|
758
|
+
.sc(schemas_0.Scan$)
|
|
3565
759
|
.build() {
|
|
3566
760
|
}
|
|
3567
761
|
|
|
@@ -3576,7 +770,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
3576
770
|
})
|
|
3577
771
|
.s("DynamoDB_20120810", "TagResource", {})
|
|
3578
772
|
.n("DynamoDBClient", "TagResourceCommand")
|
|
3579
|
-
.sc(TagResource$)
|
|
773
|
+
.sc(schemas_0.TagResource$)
|
|
3580
774
|
.build() {
|
|
3581
775
|
}
|
|
3582
776
|
|
|
@@ -3591,7 +785,7 @@ class TransactGetItemsCommand extends smithyClient.Command
|
|
|
3591
785
|
})
|
|
3592
786
|
.s("DynamoDB_20120810", "TransactGetItems", {})
|
|
3593
787
|
.n("DynamoDBClient", "TransactGetItemsCommand")
|
|
3594
|
-
.sc(TransactGetItems$)
|
|
788
|
+
.sc(schemas_0.TransactGetItems$)
|
|
3595
789
|
.build() {
|
|
3596
790
|
}
|
|
3597
791
|
|
|
@@ -3606,7 +800,7 @@ class TransactWriteItemsCommand extends smithyClient.Command
|
|
|
3606
800
|
})
|
|
3607
801
|
.s("DynamoDB_20120810", "TransactWriteItems", {})
|
|
3608
802
|
.n("DynamoDBClient", "TransactWriteItemsCommand")
|
|
3609
|
-
.sc(TransactWriteItems$)
|
|
803
|
+
.sc(schemas_0.TransactWriteItems$)
|
|
3610
804
|
.build() {
|
|
3611
805
|
}
|
|
3612
806
|
|
|
@@ -3621,7 +815,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
3621
815
|
})
|
|
3622
816
|
.s("DynamoDB_20120810", "UntagResource", {})
|
|
3623
817
|
.n("DynamoDBClient", "UntagResourceCommand")
|
|
3624
|
-
.sc(UntagResource$)
|
|
818
|
+
.sc(schemas_0.UntagResource$)
|
|
3625
819
|
.build() {
|
|
3626
820
|
}
|
|
3627
821
|
|
|
@@ -3636,7 +830,7 @@ class UpdateContinuousBackupsCommand extends smithyClient.Command
|
|
|
3636
830
|
})
|
|
3637
831
|
.s("DynamoDB_20120810", "UpdateContinuousBackups", {})
|
|
3638
832
|
.n("DynamoDBClient", "UpdateContinuousBackupsCommand")
|
|
3639
|
-
.sc(UpdateContinuousBackups$)
|
|
833
|
+
.sc(schemas_0.UpdateContinuousBackups$)
|
|
3640
834
|
.build() {
|
|
3641
835
|
}
|
|
3642
836
|
|
|
@@ -3651,7 +845,7 @@ class UpdateContributorInsightsCommand extends smithyClient.Command
|
|
|
3651
845
|
})
|
|
3652
846
|
.s("DynamoDB_20120810", "UpdateContributorInsights", {})
|
|
3653
847
|
.n("DynamoDBClient", "UpdateContributorInsightsCommand")
|
|
3654
|
-
.sc(UpdateContributorInsights$)
|
|
848
|
+
.sc(schemas_0.UpdateContributorInsights$)
|
|
3655
849
|
.build() {
|
|
3656
850
|
}
|
|
3657
851
|
|
|
@@ -3666,7 +860,7 @@ class UpdateGlobalTableCommand extends smithyClient.Command
|
|
|
3666
860
|
})
|
|
3667
861
|
.s("DynamoDB_20120810", "UpdateGlobalTable", {})
|
|
3668
862
|
.n("DynamoDBClient", "UpdateGlobalTableCommand")
|
|
3669
|
-
.sc(UpdateGlobalTable$)
|
|
863
|
+
.sc(schemas_0.UpdateGlobalTable$)
|
|
3670
864
|
.build() {
|
|
3671
865
|
}
|
|
3672
866
|
|
|
@@ -3681,7 +875,7 @@ class UpdateGlobalTableSettingsCommand extends smithyClient.Command
|
|
|
3681
875
|
})
|
|
3682
876
|
.s("DynamoDB_20120810", "UpdateGlobalTableSettings", {})
|
|
3683
877
|
.n("DynamoDBClient", "UpdateGlobalTableSettingsCommand")
|
|
3684
|
-
.sc(UpdateGlobalTableSettings$)
|
|
878
|
+
.sc(schemas_0.UpdateGlobalTableSettings$)
|
|
3685
879
|
.build() {
|
|
3686
880
|
}
|
|
3687
881
|
|
|
@@ -3696,7 +890,7 @@ class UpdateItemCommand extends smithyClient.Command
|
|
|
3696
890
|
})
|
|
3697
891
|
.s("DynamoDB_20120810", "UpdateItem", {})
|
|
3698
892
|
.n("DynamoDBClient", "UpdateItemCommand")
|
|
3699
|
-
.sc(UpdateItem$)
|
|
893
|
+
.sc(schemas_0.UpdateItem$)
|
|
3700
894
|
.build() {
|
|
3701
895
|
}
|
|
3702
896
|
|
|
@@ -3711,7 +905,7 @@ class UpdateKinesisStreamingDestinationCommand extends smithyClient.Command
|
|
|
3711
905
|
})
|
|
3712
906
|
.s("DynamoDB_20120810", "UpdateKinesisStreamingDestination", {})
|
|
3713
907
|
.n("DynamoDBClient", "UpdateKinesisStreamingDestinationCommand")
|
|
3714
|
-
.sc(UpdateKinesisStreamingDestination$)
|
|
908
|
+
.sc(schemas_0.UpdateKinesisStreamingDestination$)
|
|
3715
909
|
.build() {
|
|
3716
910
|
}
|
|
3717
911
|
|
|
@@ -3726,7 +920,7 @@ class UpdateTableCommand extends smithyClient.Command
|
|
|
3726
920
|
})
|
|
3727
921
|
.s("DynamoDB_20120810", "UpdateTable", {})
|
|
3728
922
|
.n("DynamoDBClient", "UpdateTableCommand")
|
|
3729
|
-
.sc(UpdateTable$)
|
|
923
|
+
.sc(schemas_0.UpdateTable$)
|
|
3730
924
|
.build() {
|
|
3731
925
|
}
|
|
3732
926
|
|
|
@@ -3741,7 +935,7 @@ class UpdateTableReplicaAutoScalingCommand extends smithyClient.Command
|
|
|
3741
935
|
})
|
|
3742
936
|
.s("DynamoDB_20120810", "UpdateTableReplicaAutoScaling", {})
|
|
3743
937
|
.n("DynamoDBClient", "UpdateTableReplicaAutoScalingCommand")
|
|
3744
|
-
.sc(UpdateTableReplicaAutoScaling$)
|
|
938
|
+
.sc(schemas_0.UpdateTableReplicaAutoScaling$)
|
|
3745
939
|
.build() {
|
|
3746
940
|
}
|
|
3747
941
|
|
|
@@ -3756,7 +950,7 @@ class UpdateTimeToLiveCommand extends smithyClient.Command
|
|
|
3756
950
|
})
|
|
3757
951
|
.s("DynamoDB_20120810", "UpdateTimeToLive", {})
|
|
3758
952
|
.n("DynamoDBClient", "UpdateTimeToLiveCommand")
|
|
3759
|
-
.sc(UpdateTimeToLive$)
|
|
953
|
+
.sc(schemas_0.UpdateTimeToLive$)
|
|
3760
954
|
.build() {
|
|
3761
955
|
}
|
|
3762
956
|
|
|
@@ -4336,461 +1530,112 @@ Object.defineProperty(exports, "__Client", {
|
|
|
4336
1530
|
enumerable: true,
|
|
4337
1531
|
get: function () { return smithyClient.Client; }
|
|
4338
1532
|
});
|
|
1533
|
+
Object.defineProperty(exports, "DynamoDBServiceException", {
|
|
1534
|
+
enumerable: true,
|
|
1535
|
+
get: function () { return DynamoDBServiceException.DynamoDBServiceException; }
|
|
1536
|
+
});
|
|
4339
1537
|
exports.ApproximateCreationDateTimePrecision = ApproximateCreationDateTimePrecision;
|
|
4340
|
-
exports.ArchivalSummary$ = ArchivalSummary$;
|
|
4341
1538
|
exports.AttributeAction = AttributeAction;
|
|
4342
|
-
exports.AttributeDefinition$ = AttributeDefinition$;
|
|
4343
|
-
exports.AttributeValue$ = AttributeValue$;
|
|
4344
|
-
exports.AttributeValueUpdate$ = AttributeValueUpdate$;
|
|
4345
|
-
exports.AutoScalingPolicyDescription$ = AutoScalingPolicyDescription$;
|
|
4346
|
-
exports.AutoScalingPolicyUpdate$ = AutoScalingPolicyUpdate$;
|
|
4347
|
-
exports.AutoScalingSettingsDescription$ = AutoScalingSettingsDescription$;
|
|
4348
|
-
exports.AutoScalingSettingsUpdate$ = AutoScalingSettingsUpdate$;
|
|
4349
|
-
exports.AutoScalingTargetTrackingScalingPolicyConfigurationDescription$ = AutoScalingTargetTrackingScalingPolicyConfigurationDescription$;
|
|
4350
|
-
exports.AutoScalingTargetTrackingScalingPolicyConfigurationUpdate$ = AutoScalingTargetTrackingScalingPolicyConfigurationUpdate$;
|
|
4351
|
-
exports.BackupDescription$ = BackupDescription$;
|
|
4352
|
-
exports.BackupDetails$ = BackupDetails$;
|
|
4353
|
-
exports.BackupInUseException = BackupInUseException;
|
|
4354
|
-
exports.BackupInUseException$ = BackupInUseException$;
|
|
4355
|
-
exports.BackupNotFoundException = BackupNotFoundException;
|
|
4356
|
-
exports.BackupNotFoundException$ = BackupNotFoundException$;
|
|
4357
1539
|
exports.BackupStatus = BackupStatus;
|
|
4358
|
-
exports.BackupSummary$ = BackupSummary$;
|
|
4359
1540
|
exports.BackupType = BackupType;
|
|
4360
1541
|
exports.BackupTypeFilter = BackupTypeFilter;
|
|
4361
|
-
exports.BatchExecuteStatement$ = BatchExecuteStatement$;
|
|
4362
1542
|
exports.BatchExecuteStatementCommand = BatchExecuteStatementCommand;
|
|
4363
|
-
exports.BatchExecuteStatementInput$ = BatchExecuteStatementInput$;
|
|
4364
|
-
exports.BatchExecuteStatementOutput$ = BatchExecuteStatementOutput$;
|
|
4365
|
-
exports.BatchGetItem$ = BatchGetItem$;
|
|
4366
1543
|
exports.BatchGetItemCommand = BatchGetItemCommand;
|
|
4367
|
-
exports.BatchGetItemInput$ = BatchGetItemInput$;
|
|
4368
|
-
exports.BatchGetItemOutput$ = BatchGetItemOutput$;
|
|
4369
|
-
exports.BatchStatementError$ = BatchStatementError$;
|
|
4370
1544
|
exports.BatchStatementErrorCodeEnum = BatchStatementErrorCodeEnum;
|
|
4371
|
-
exports.BatchStatementRequest$ = BatchStatementRequest$;
|
|
4372
|
-
exports.BatchStatementResponse$ = BatchStatementResponse$;
|
|
4373
|
-
exports.BatchWriteItem$ = BatchWriteItem$;
|
|
4374
1545
|
exports.BatchWriteItemCommand = BatchWriteItemCommand;
|
|
4375
|
-
exports.BatchWriteItemInput$ = BatchWriteItemInput$;
|
|
4376
|
-
exports.BatchWriteItemOutput$ = BatchWriteItemOutput$;
|
|
4377
1546
|
exports.BillingMode = BillingMode;
|
|
4378
|
-
exports.BillingModeSummary$ = BillingModeSummary$;
|
|
4379
|
-
exports.CancellationReason$ = CancellationReason$;
|
|
4380
|
-
exports.Capacity$ = Capacity$;
|
|
4381
1547
|
exports.ComparisonOperator = ComparisonOperator;
|
|
4382
|
-
exports.Condition$ = Condition$;
|
|
4383
|
-
exports.ConditionCheck$ = ConditionCheck$;
|
|
4384
|
-
exports.ConditionalCheckFailedException = ConditionalCheckFailedException;
|
|
4385
|
-
exports.ConditionalCheckFailedException$ = ConditionalCheckFailedException$;
|
|
4386
1548
|
exports.ConditionalOperator = ConditionalOperator;
|
|
4387
|
-
exports.ConsumedCapacity$ = ConsumedCapacity$;
|
|
4388
|
-
exports.ContinuousBackupsDescription$ = ContinuousBackupsDescription$;
|
|
4389
1549
|
exports.ContinuousBackupsStatus = ContinuousBackupsStatus;
|
|
4390
|
-
exports.ContinuousBackupsUnavailableException = ContinuousBackupsUnavailableException;
|
|
4391
|
-
exports.ContinuousBackupsUnavailableException$ = ContinuousBackupsUnavailableException$;
|
|
4392
1550
|
exports.ContributorInsightsAction = ContributorInsightsAction;
|
|
4393
1551
|
exports.ContributorInsightsMode = ContributorInsightsMode;
|
|
4394
1552
|
exports.ContributorInsightsStatus = ContributorInsightsStatus;
|
|
4395
|
-
exports.ContributorInsightsSummary$ = ContributorInsightsSummary$;
|
|
4396
|
-
exports.CreateBackup$ = CreateBackup$;
|
|
4397
1553
|
exports.CreateBackupCommand = CreateBackupCommand;
|
|
4398
|
-
exports.CreateBackupInput$ = CreateBackupInput$;
|
|
4399
|
-
exports.CreateBackupOutput$ = CreateBackupOutput$;
|
|
4400
|
-
exports.CreateGlobalSecondaryIndexAction$ = CreateGlobalSecondaryIndexAction$;
|
|
4401
|
-
exports.CreateGlobalTable$ = CreateGlobalTable$;
|
|
4402
1554
|
exports.CreateGlobalTableCommand = CreateGlobalTableCommand;
|
|
4403
|
-
exports.CreateGlobalTableInput$ = CreateGlobalTableInput$;
|
|
4404
|
-
exports.CreateGlobalTableOutput$ = CreateGlobalTableOutput$;
|
|
4405
|
-
exports.CreateGlobalTableWitnessGroupMemberAction$ = CreateGlobalTableWitnessGroupMemberAction$;
|
|
4406
|
-
exports.CreateReplicaAction$ = CreateReplicaAction$;
|
|
4407
|
-
exports.CreateReplicationGroupMemberAction$ = CreateReplicationGroupMemberAction$;
|
|
4408
|
-
exports.CreateTable$ = CreateTable$;
|
|
4409
1555
|
exports.CreateTableCommand = CreateTableCommand;
|
|
4410
|
-
exports.CreateTableInput$ = CreateTableInput$;
|
|
4411
|
-
exports.CreateTableOutput$ = CreateTableOutput$;
|
|
4412
|
-
exports.CsvOptions$ = CsvOptions$;
|
|
4413
|
-
exports.Delete$ = Delete$;
|
|
4414
|
-
exports.DeleteBackup$ = DeleteBackup$;
|
|
4415
1556
|
exports.DeleteBackupCommand = DeleteBackupCommand;
|
|
4416
|
-
exports.DeleteBackupInput$ = DeleteBackupInput$;
|
|
4417
|
-
exports.DeleteBackupOutput$ = DeleteBackupOutput$;
|
|
4418
|
-
exports.DeleteGlobalSecondaryIndexAction$ = DeleteGlobalSecondaryIndexAction$;
|
|
4419
|
-
exports.DeleteGlobalTableWitnessGroupMemberAction$ = DeleteGlobalTableWitnessGroupMemberAction$;
|
|
4420
|
-
exports.DeleteItem$ = DeleteItem$;
|
|
4421
1557
|
exports.DeleteItemCommand = DeleteItemCommand;
|
|
4422
|
-
exports.DeleteItemInput$ = DeleteItemInput$;
|
|
4423
|
-
exports.DeleteItemOutput$ = DeleteItemOutput$;
|
|
4424
|
-
exports.DeleteReplicaAction$ = DeleteReplicaAction$;
|
|
4425
|
-
exports.DeleteReplicationGroupMemberAction$ = DeleteReplicationGroupMemberAction$;
|
|
4426
|
-
exports.DeleteRequest$ = DeleteRequest$;
|
|
4427
|
-
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
4428
1558
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
4429
|
-
exports.DeleteResourcePolicyInput$ = DeleteResourcePolicyInput$;
|
|
4430
|
-
exports.DeleteResourcePolicyOutput$ = DeleteResourcePolicyOutput$;
|
|
4431
|
-
exports.DeleteTable$ = DeleteTable$;
|
|
4432
1559
|
exports.DeleteTableCommand = DeleteTableCommand;
|
|
4433
|
-
exports.DeleteTableInput$ = DeleteTableInput$;
|
|
4434
|
-
exports.DeleteTableOutput$ = DeleteTableOutput$;
|
|
4435
|
-
exports.DescribeBackup$ = DescribeBackup$;
|
|
4436
1560
|
exports.DescribeBackupCommand = DescribeBackupCommand;
|
|
4437
|
-
exports.DescribeBackupInput$ = DescribeBackupInput$;
|
|
4438
|
-
exports.DescribeBackupOutput$ = DescribeBackupOutput$;
|
|
4439
|
-
exports.DescribeContinuousBackups$ = DescribeContinuousBackups$;
|
|
4440
1561
|
exports.DescribeContinuousBackupsCommand = DescribeContinuousBackupsCommand;
|
|
4441
|
-
exports.DescribeContinuousBackupsInput$ = DescribeContinuousBackupsInput$;
|
|
4442
|
-
exports.DescribeContinuousBackupsOutput$ = DescribeContinuousBackupsOutput$;
|
|
4443
|
-
exports.DescribeContributorInsights$ = DescribeContributorInsights$;
|
|
4444
1562
|
exports.DescribeContributorInsightsCommand = DescribeContributorInsightsCommand;
|
|
4445
|
-
exports.DescribeContributorInsightsInput$ = DescribeContributorInsightsInput$;
|
|
4446
|
-
exports.DescribeContributorInsightsOutput$ = DescribeContributorInsightsOutput$;
|
|
4447
|
-
exports.DescribeEndpoints$ = DescribeEndpoints$;
|
|
4448
1563
|
exports.DescribeEndpointsCommand = DescribeEndpointsCommand;
|
|
4449
|
-
exports.DescribeEndpointsRequest$ = DescribeEndpointsRequest$;
|
|
4450
|
-
exports.DescribeEndpointsResponse$ = DescribeEndpointsResponse$;
|
|
4451
|
-
exports.DescribeExport$ = DescribeExport$;
|
|
4452
1564
|
exports.DescribeExportCommand = DescribeExportCommand;
|
|
4453
|
-
exports.DescribeExportInput$ = DescribeExportInput$;
|
|
4454
|
-
exports.DescribeExportOutput$ = DescribeExportOutput$;
|
|
4455
|
-
exports.DescribeGlobalTable$ = DescribeGlobalTable$;
|
|
4456
1565
|
exports.DescribeGlobalTableCommand = DescribeGlobalTableCommand;
|
|
4457
|
-
exports.DescribeGlobalTableInput$ = DescribeGlobalTableInput$;
|
|
4458
|
-
exports.DescribeGlobalTableOutput$ = DescribeGlobalTableOutput$;
|
|
4459
|
-
exports.DescribeGlobalTableSettings$ = DescribeGlobalTableSettings$;
|
|
4460
1566
|
exports.DescribeGlobalTableSettingsCommand = DescribeGlobalTableSettingsCommand;
|
|
4461
|
-
exports.DescribeGlobalTableSettingsInput$ = DescribeGlobalTableSettingsInput$;
|
|
4462
|
-
exports.DescribeGlobalTableSettingsOutput$ = DescribeGlobalTableSettingsOutput$;
|
|
4463
|
-
exports.DescribeImport$ = DescribeImport$;
|
|
4464
1567
|
exports.DescribeImportCommand = DescribeImportCommand;
|
|
4465
|
-
exports.DescribeImportInput$ = DescribeImportInput$;
|
|
4466
|
-
exports.DescribeImportOutput$ = DescribeImportOutput$;
|
|
4467
|
-
exports.DescribeKinesisStreamingDestination$ = DescribeKinesisStreamingDestination$;
|
|
4468
1568
|
exports.DescribeKinesisStreamingDestinationCommand = DescribeKinesisStreamingDestinationCommand;
|
|
4469
|
-
exports.DescribeKinesisStreamingDestinationInput$ = DescribeKinesisStreamingDestinationInput$;
|
|
4470
|
-
exports.DescribeKinesisStreamingDestinationOutput$ = DescribeKinesisStreamingDestinationOutput$;
|
|
4471
|
-
exports.DescribeLimits$ = DescribeLimits$;
|
|
4472
1569
|
exports.DescribeLimitsCommand = DescribeLimitsCommand;
|
|
4473
|
-
exports.DescribeLimitsInput$ = DescribeLimitsInput$;
|
|
4474
|
-
exports.DescribeLimitsOutput$ = DescribeLimitsOutput$;
|
|
4475
|
-
exports.DescribeTable$ = DescribeTable$;
|
|
4476
1570
|
exports.DescribeTableCommand = DescribeTableCommand;
|
|
4477
|
-
exports.DescribeTableInput$ = DescribeTableInput$;
|
|
4478
|
-
exports.DescribeTableOutput$ = DescribeTableOutput$;
|
|
4479
|
-
exports.DescribeTableReplicaAutoScaling$ = DescribeTableReplicaAutoScaling$;
|
|
4480
1571
|
exports.DescribeTableReplicaAutoScalingCommand = DescribeTableReplicaAutoScalingCommand;
|
|
4481
|
-
exports.DescribeTableReplicaAutoScalingInput$ = DescribeTableReplicaAutoScalingInput$;
|
|
4482
|
-
exports.DescribeTableReplicaAutoScalingOutput$ = DescribeTableReplicaAutoScalingOutput$;
|
|
4483
|
-
exports.DescribeTimeToLive$ = DescribeTimeToLive$;
|
|
4484
1572
|
exports.DescribeTimeToLiveCommand = DescribeTimeToLiveCommand;
|
|
4485
|
-
exports.DescribeTimeToLiveInput$ = DescribeTimeToLiveInput$;
|
|
4486
|
-
exports.DescribeTimeToLiveOutput$ = DescribeTimeToLiveOutput$;
|
|
4487
1573
|
exports.DestinationStatus = DestinationStatus;
|
|
4488
|
-
exports.DisableKinesisStreamingDestination$ = DisableKinesisStreamingDestination$;
|
|
4489
1574
|
exports.DisableKinesisStreamingDestinationCommand = DisableKinesisStreamingDestinationCommand;
|
|
4490
|
-
exports.DuplicateItemException = DuplicateItemException;
|
|
4491
|
-
exports.DuplicateItemException$ = DuplicateItemException$;
|
|
4492
1575
|
exports.DynamoDB = DynamoDB;
|
|
4493
1576
|
exports.DynamoDBClient = DynamoDBClient;
|
|
4494
|
-
exports.DynamoDBServiceException = DynamoDBServiceException;
|
|
4495
|
-
exports.DynamoDBServiceException$ = DynamoDBServiceException$;
|
|
4496
|
-
exports.EnableKinesisStreamingConfiguration$ = EnableKinesisStreamingConfiguration$;
|
|
4497
|
-
exports.EnableKinesisStreamingDestination$ = EnableKinesisStreamingDestination$;
|
|
4498
1577
|
exports.EnableKinesisStreamingDestinationCommand = EnableKinesisStreamingDestinationCommand;
|
|
4499
|
-
exports.Endpoint$ = Endpoint$;
|
|
4500
|
-
exports.ExecuteStatement$ = ExecuteStatement$;
|
|
4501
1578
|
exports.ExecuteStatementCommand = ExecuteStatementCommand;
|
|
4502
|
-
exports.ExecuteStatementInput$ = ExecuteStatementInput$;
|
|
4503
|
-
exports.ExecuteStatementOutput$ = ExecuteStatementOutput$;
|
|
4504
|
-
exports.ExecuteTransaction$ = ExecuteTransaction$;
|
|
4505
1579
|
exports.ExecuteTransactionCommand = ExecuteTransactionCommand;
|
|
4506
|
-
exports.ExecuteTransactionInput$ = ExecuteTransactionInput$;
|
|
4507
|
-
exports.ExecuteTransactionOutput$ = ExecuteTransactionOutput$;
|
|
4508
|
-
exports.ExpectedAttributeValue$ = ExpectedAttributeValue$;
|
|
4509
|
-
exports.ExportConflictException = ExportConflictException;
|
|
4510
|
-
exports.ExportConflictException$ = ExportConflictException$;
|
|
4511
|
-
exports.ExportDescription$ = ExportDescription$;
|
|
4512
1580
|
exports.ExportFormat = ExportFormat;
|
|
4513
|
-
exports.ExportNotFoundException = ExportNotFoundException;
|
|
4514
|
-
exports.ExportNotFoundException$ = ExportNotFoundException$;
|
|
4515
1581
|
exports.ExportStatus = ExportStatus;
|
|
4516
|
-
exports.ExportSummary$ = ExportSummary$;
|
|
4517
|
-
exports.ExportTableToPointInTime$ = ExportTableToPointInTime$;
|
|
4518
1582
|
exports.ExportTableToPointInTimeCommand = ExportTableToPointInTimeCommand;
|
|
4519
|
-
exports.ExportTableToPointInTimeInput$ = ExportTableToPointInTimeInput$;
|
|
4520
|
-
exports.ExportTableToPointInTimeOutput$ = ExportTableToPointInTimeOutput$;
|
|
4521
1583
|
exports.ExportType = ExportType;
|
|
4522
1584
|
exports.ExportViewType = ExportViewType;
|
|
4523
|
-
exports.FailureException$ = FailureException$;
|
|
4524
|
-
exports.Get$ = Get$;
|
|
4525
|
-
exports.GetItem$ = GetItem$;
|
|
4526
1585
|
exports.GetItemCommand = GetItemCommand;
|
|
4527
|
-
exports.GetItemInput$ = GetItemInput$;
|
|
4528
|
-
exports.GetItemOutput$ = GetItemOutput$;
|
|
4529
|
-
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
4530
1586
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
4531
|
-
exports.GetResourcePolicyInput$ = GetResourcePolicyInput$;
|
|
4532
|
-
exports.GetResourcePolicyOutput$ = GetResourcePolicyOutput$;
|
|
4533
|
-
exports.GlobalSecondaryIndex$ = GlobalSecondaryIndex$;
|
|
4534
|
-
exports.GlobalSecondaryIndexAutoScalingUpdate$ = GlobalSecondaryIndexAutoScalingUpdate$;
|
|
4535
|
-
exports.GlobalSecondaryIndexDescription$ = GlobalSecondaryIndexDescription$;
|
|
4536
|
-
exports.GlobalSecondaryIndexInfo$ = GlobalSecondaryIndexInfo$;
|
|
4537
|
-
exports.GlobalSecondaryIndexUpdate$ = GlobalSecondaryIndexUpdate$;
|
|
4538
|
-
exports.GlobalSecondaryIndexWarmThroughputDescription$ = GlobalSecondaryIndexWarmThroughputDescription$;
|
|
4539
|
-
exports.GlobalTable$ = GlobalTable$;
|
|
4540
|
-
exports.GlobalTableAlreadyExistsException = GlobalTableAlreadyExistsException;
|
|
4541
|
-
exports.GlobalTableAlreadyExistsException$ = GlobalTableAlreadyExistsException$;
|
|
4542
|
-
exports.GlobalTableDescription$ = GlobalTableDescription$;
|
|
4543
|
-
exports.GlobalTableGlobalSecondaryIndexSettingsUpdate$ = GlobalTableGlobalSecondaryIndexSettingsUpdate$;
|
|
4544
|
-
exports.GlobalTableNotFoundException = GlobalTableNotFoundException;
|
|
4545
|
-
exports.GlobalTableNotFoundException$ = GlobalTableNotFoundException$;
|
|
4546
1587
|
exports.GlobalTableSettingsReplicationMode = GlobalTableSettingsReplicationMode;
|
|
4547
1588
|
exports.GlobalTableStatus = GlobalTableStatus;
|
|
4548
|
-
exports.GlobalTableWitnessDescription$ = GlobalTableWitnessDescription$;
|
|
4549
|
-
exports.GlobalTableWitnessGroupUpdate$ = GlobalTableWitnessGroupUpdate$;
|
|
4550
|
-
exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException;
|
|
4551
|
-
exports.IdempotentParameterMismatchException$ = IdempotentParameterMismatchException$;
|
|
4552
|
-
exports.ImportConflictException = ImportConflictException;
|
|
4553
|
-
exports.ImportConflictException$ = ImportConflictException$;
|
|
4554
|
-
exports.ImportNotFoundException = ImportNotFoundException;
|
|
4555
|
-
exports.ImportNotFoundException$ = ImportNotFoundException$;
|
|
4556
1589
|
exports.ImportStatus = ImportStatus;
|
|
4557
|
-
exports.ImportSummary$ = ImportSummary$;
|
|
4558
|
-
exports.ImportTable$ = ImportTable$;
|
|
4559
1590
|
exports.ImportTableCommand = ImportTableCommand;
|
|
4560
|
-
exports.ImportTableDescription$ = ImportTableDescription$;
|
|
4561
|
-
exports.ImportTableInput$ = ImportTableInput$;
|
|
4562
|
-
exports.ImportTableOutput$ = ImportTableOutput$;
|
|
4563
|
-
exports.IncrementalExportSpecification$ = IncrementalExportSpecification$;
|
|
4564
|
-
exports.IndexNotFoundException = IndexNotFoundException;
|
|
4565
|
-
exports.IndexNotFoundException$ = IndexNotFoundException$;
|
|
4566
1591
|
exports.IndexStatus = IndexStatus;
|
|
4567
1592
|
exports.InputCompressionType = InputCompressionType;
|
|
4568
1593
|
exports.InputFormat = InputFormat;
|
|
4569
|
-
exports.InputFormatOptions$ = InputFormatOptions$;
|
|
4570
|
-
exports.InternalServerError = InternalServerError;
|
|
4571
|
-
exports.InternalServerError$ = InternalServerError$;
|
|
4572
|
-
exports.InvalidEndpointException = InvalidEndpointException;
|
|
4573
|
-
exports.InvalidEndpointException$ = InvalidEndpointException$;
|
|
4574
|
-
exports.InvalidExportTimeException = InvalidExportTimeException;
|
|
4575
|
-
exports.InvalidExportTimeException$ = InvalidExportTimeException$;
|
|
4576
|
-
exports.InvalidRestoreTimeException = InvalidRestoreTimeException;
|
|
4577
|
-
exports.InvalidRestoreTimeException$ = InvalidRestoreTimeException$;
|
|
4578
|
-
exports.ItemCollectionMetrics$ = ItemCollectionMetrics$;
|
|
4579
|
-
exports.ItemCollectionSizeLimitExceededException = ItemCollectionSizeLimitExceededException;
|
|
4580
|
-
exports.ItemCollectionSizeLimitExceededException$ = ItemCollectionSizeLimitExceededException$;
|
|
4581
|
-
exports.ItemResponse$ = ItemResponse$;
|
|
4582
|
-
exports.KeySchemaElement$ = KeySchemaElement$;
|
|
4583
1594
|
exports.KeyType = KeyType;
|
|
4584
|
-
exports.KeysAndAttributes$ = KeysAndAttributes$;
|
|
4585
|
-
exports.KinesisDataStreamDestination$ = KinesisDataStreamDestination$;
|
|
4586
|
-
exports.KinesisStreamingDestinationInput$ = KinesisStreamingDestinationInput$;
|
|
4587
|
-
exports.KinesisStreamingDestinationOutput$ = KinesisStreamingDestinationOutput$;
|
|
4588
|
-
exports.LimitExceededException = LimitExceededException;
|
|
4589
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
4590
|
-
exports.ListBackups$ = ListBackups$;
|
|
4591
1595
|
exports.ListBackupsCommand = ListBackupsCommand;
|
|
4592
|
-
exports.ListBackupsInput$ = ListBackupsInput$;
|
|
4593
|
-
exports.ListBackupsOutput$ = ListBackupsOutput$;
|
|
4594
|
-
exports.ListContributorInsights$ = ListContributorInsights$;
|
|
4595
1596
|
exports.ListContributorInsightsCommand = ListContributorInsightsCommand;
|
|
4596
|
-
exports.ListContributorInsightsInput$ = ListContributorInsightsInput$;
|
|
4597
|
-
exports.ListContributorInsightsOutput$ = ListContributorInsightsOutput$;
|
|
4598
|
-
exports.ListExports$ = ListExports$;
|
|
4599
1597
|
exports.ListExportsCommand = ListExportsCommand;
|
|
4600
|
-
exports.ListExportsInput$ = ListExportsInput$;
|
|
4601
|
-
exports.ListExportsOutput$ = ListExportsOutput$;
|
|
4602
|
-
exports.ListGlobalTables$ = ListGlobalTables$;
|
|
4603
1598
|
exports.ListGlobalTablesCommand = ListGlobalTablesCommand;
|
|
4604
|
-
exports.ListGlobalTablesInput$ = ListGlobalTablesInput$;
|
|
4605
|
-
exports.ListGlobalTablesOutput$ = ListGlobalTablesOutput$;
|
|
4606
|
-
exports.ListImports$ = ListImports$;
|
|
4607
1599
|
exports.ListImportsCommand = ListImportsCommand;
|
|
4608
|
-
exports.ListImportsInput$ = ListImportsInput$;
|
|
4609
|
-
exports.ListImportsOutput$ = ListImportsOutput$;
|
|
4610
|
-
exports.ListTables$ = ListTables$;
|
|
4611
1600
|
exports.ListTablesCommand = ListTablesCommand;
|
|
4612
|
-
exports.ListTablesInput$ = ListTablesInput$;
|
|
4613
|
-
exports.ListTablesOutput$ = ListTablesOutput$;
|
|
4614
|
-
exports.ListTagsOfResource$ = ListTagsOfResource$;
|
|
4615
1601
|
exports.ListTagsOfResourceCommand = ListTagsOfResourceCommand;
|
|
4616
|
-
exports.ListTagsOfResourceInput$ = ListTagsOfResourceInput$;
|
|
4617
|
-
exports.ListTagsOfResourceOutput$ = ListTagsOfResourceOutput$;
|
|
4618
|
-
exports.LocalSecondaryIndex$ = LocalSecondaryIndex$;
|
|
4619
|
-
exports.LocalSecondaryIndexDescription$ = LocalSecondaryIndexDescription$;
|
|
4620
|
-
exports.LocalSecondaryIndexInfo$ = LocalSecondaryIndexInfo$;
|
|
4621
1602
|
exports.MultiRegionConsistency = MultiRegionConsistency;
|
|
4622
|
-
exports.OnDemandThroughput$ = OnDemandThroughput$;
|
|
4623
|
-
exports.OnDemandThroughputOverride$ = OnDemandThroughputOverride$;
|
|
4624
|
-
exports.ParameterizedStatement$ = ParameterizedStatement$;
|
|
4625
|
-
exports.PointInTimeRecoveryDescription$ = PointInTimeRecoveryDescription$;
|
|
4626
|
-
exports.PointInTimeRecoverySpecification$ = PointInTimeRecoverySpecification$;
|
|
4627
1603
|
exports.PointInTimeRecoveryStatus = PointInTimeRecoveryStatus;
|
|
4628
|
-
exports.PointInTimeRecoveryUnavailableException = PointInTimeRecoveryUnavailableException;
|
|
4629
|
-
exports.PointInTimeRecoveryUnavailableException$ = PointInTimeRecoveryUnavailableException$;
|
|
4630
|
-
exports.PolicyNotFoundException = PolicyNotFoundException;
|
|
4631
|
-
exports.PolicyNotFoundException$ = PolicyNotFoundException$;
|
|
4632
|
-
exports.Projection$ = Projection$;
|
|
4633
1604
|
exports.ProjectionType = ProjectionType;
|
|
4634
|
-
exports.ProvisionedThroughput$ = ProvisionedThroughput$;
|
|
4635
|
-
exports.ProvisionedThroughputDescription$ = ProvisionedThroughputDescription$;
|
|
4636
|
-
exports.ProvisionedThroughputExceededException = ProvisionedThroughputExceededException;
|
|
4637
|
-
exports.ProvisionedThroughputExceededException$ = ProvisionedThroughputExceededException$;
|
|
4638
|
-
exports.ProvisionedThroughputOverride$ = ProvisionedThroughputOverride$;
|
|
4639
|
-
exports.Put$ = Put$;
|
|
4640
|
-
exports.PutItem$ = PutItem$;
|
|
4641
1605
|
exports.PutItemCommand = PutItemCommand;
|
|
4642
|
-
exports.PutItemInput$ = PutItemInput$;
|
|
4643
|
-
exports.PutItemOutput$ = PutItemOutput$;
|
|
4644
|
-
exports.PutRequest$ = PutRequest$;
|
|
4645
|
-
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
4646
1606
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
4647
|
-
exports.PutResourcePolicyInput$ = PutResourcePolicyInput$;
|
|
4648
|
-
exports.PutResourcePolicyOutput$ = PutResourcePolicyOutput$;
|
|
4649
|
-
exports.Query$ = Query$;
|
|
4650
1607
|
exports.QueryCommand = QueryCommand;
|
|
4651
|
-
exports.QueryInput$ = QueryInput$;
|
|
4652
|
-
exports.QueryOutput$ = QueryOutput$;
|
|
4653
|
-
exports.Replica$ = Replica$;
|
|
4654
|
-
exports.ReplicaAlreadyExistsException = ReplicaAlreadyExistsException;
|
|
4655
|
-
exports.ReplicaAlreadyExistsException$ = ReplicaAlreadyExistsException$;
|
|
4656
|
-
exports.ReplicaAutoScalingDescription$ = ReplicaAutoScalingDescription$;
|
|
4657
|
-
exports.ReplicaAutoScalingUpdate$ = ReplicaAutoScalingUpdate$;
|
|
4658
|
-
exports.ReplicaDescription$ = ReplicaDescription$;
|
|
4659
|
-
exports.ReplicaGlobalSecondaryIndex$ = ReplicaGlobalSecondaryIndex$;
|
|
4660
|
-
exports.ReplicaGlobalSecondaryIndexAutoScalingDescription$ = ReplicaGlobalSecondaryIndexAutoScalingDescription$;
|
|
4661
|
-
exports.ReplicaGlobalSecondaryIndexAutoScalingUpdate$ = ReplicaGlobalSecondaryIndexAutoScalingUpdate$;
|
|
4662
|
-
exports.ReplicaGlobalSecondaryIndexDescription$ = ReplicaGlobalSecondaryIndexDescription$;
|
|
4663
|
-
exports.ReplicaGlobalSecondaryIndexSettingsDescription$ = ReplicaGlobalSecondaryIndexSettingsDescription$;
|
|
4664
|
-
exports.ReplicaGlobalSecondaryIndexSettingsUpdate$ = ReplicaGlobalSecondaryIndexSettingsUpdate$;
|
|
4665
|
-
exports.ReplicaNotFoundException = ReplicaNotFoundException;
|
|
4666
|
-
exports.ReplicaNotFoundException$ = ReplicaNotFoundException$;
|
|
4667
|
-
exports.ReplicaSettingsDescription$ = ReplicaSettingsDescription$;
|
|
4668
|
-
exports.ReplicaSettingsUpdate$ = ReplicaSettingsUpdate$;
|
|
4669
1608
|
exports.ReplicaStatus = ReplicaStatus;
|
|
4670
|
-
exports.ReplicaUpdate$ = ReplicaUpdate$;
|
|
4671
|
-
exports.ReplicatedWriteConflictException = ReplicatedWriteConflictException;
|
|
4672
|
-
exports.ReplicatedWriteConflictException$ = ReplicatedWriteConflictException$;
|
|
4673
|
-
exports.ReplicationGroupUpdate$ = ReplicationGroupUpdate$;
|
|
4674
|
-
exports.RequestLimitExceeded = RequestLimitExceeded;
|
|
4675
|
-
exports.RequestLimitExceeded$ = RequestLimitExceeded$;
|
|
4676
|
-
exports.ResourceInUseException = ResourceInUseException;
|
|
4677
|
-
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
4678
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
4679
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
4680
|
-
exports.RestoreSummary$ = RestoreSummary$;
|
|
4681
|
-
exports.RestoreTableFromBackup$ = RestoreTableFromBackup$;
|
|
4682
1609
|
exports.RestoreTableFromBackupCommand = RestoreTableFromBackupCommand;
|
|
4683
|
-
exports.RestoreTableFromBackupInput$ = RestoreTableFromBackupInput$;
|
|
4684
|
-
exports.RestoreTableFromBackupOutput$ = RestoreTableFromBackupOutput$;
|
|
4685
|
-
exports.RestoreTableToPointInTime$ = RestoreTableToPointInTime$;
|
|
4686
1610
|
exports.RestoreTableToPointInTimeCommand = RestoreTableToPointInTimeCommand;
|
|
4687
|
-
exports.RestoreTableToPointInTimeInput$ = RestoreTableToPointInTimeInput$;
|
|
4688
|
-
exports.RestoreTableToPointInTimeOutput$ = RestoreTableToPointInTimeOutput$;
|
|
4689
1611
|
exports.ReturnConsumedCapacity = ReturnConsumedCapacity;
|
|
4690
1612
|
exports.ReturnItemCollectionMetrics = ReturnItemCollectionMetrics;
|
|
4691
1613
|
exports.ReturnValue = ReturnValue;
|
|
4692
1614
|
exports.ReturnValuesOnConditionCheckFailure = ReturnValuesOnConditionCheckFailure;
|
|
4693
|
-
exports.S3BucketSource$ = S3BucketSource$;
|
|
4694
1615
|
exports.S3SseAlgorithm = S3SseAlgorithm;
|
|
4695
|
-
exports.SSEDescription$ = SSEDescription$;
|
|
4696
|
-
exports.SSESpecification$ = SSESpecification$;
|
|
4697
1616
|
exports.SSEStatus = SSEStatus;
|
|
4698
1617
|
exports.SSEType = SSEType;
|
|
4699
1618
|
exports.ScalarAttributeType = ScalarAttributeType;
|
|
4700
|
-
exports.Scan$ = Scan$;
|
|
4701
1619
|
exports.ScanCommand = ScanCommand;
|
|
4702
|
-
exports.ScanInput$ = ScanInput$;
|
|
4703
|
-
exports.ScanOutput$ = ScanOutput$;
|
|
4704
1620
|
exports.Select = Select;
|
|
4705
|
-
exports.SourceTableDetails$ = SourceTableDetails$;
|
|
4706
|
-
exports.SourceTableFeatureDetails$ = SourceTableFeatureDetails$;
|
|
4707
|
-
exports.StreamSpecification$ = StreamSpecification$;
|
|
4708
1621
|
exports.StreamViewType = StreamViewType;
|
|
4709
|
-
exports.TableAlreadyExistsException = TableAlreadyExistsException;
|
|
4710
|
-
exports.TableAlreadyExistsException$ = TableAlreadyExistsException$;
|
|
4711
|
-
exports.TableAutoScalingDescription$ = TableAutoScalingDescription$;
|
|
4712
1622
|
exports.TableClass = TableClass;
|
|
4713
|
-
exports.TableClassSummary$ = TableClassSummary$;
|
|
4714
|
-
exports.TableCreationParameters$ = TableCreationParameters$;
|
|
4715
|
-
exports.TableDescription$ = TableDescription$;
|
|
4716
|
-
exports.TableInUseException = TableInUseException;
|
|
4717
|
-
exports.TableInUseException$ = TableInUseException$;
|
|
4718
|
-
exports.TableNotFoundException = TableNotFoundException;
|
|
4719
|
-
exports.TableNotFoundException$ = TableNotFoundException$;
|
|
4720
1623
|
exports.TableStatus = TableStatus;
|
|
4721
|
-
exports.TableWarmThroughputDescription$ = TableWarmThroughputDescription$;
|
|
4722
|
-
exports.Tag$ = Tag$;
|
|
4723
|
-
exports.TagResource$ = TagResource$;
|
|
4724
1624
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4725
|
-
exports.TagResourceInput$ = TagResourceInput$;
|
|
4726
|
-
exports.ThrottlingException = ThrottlingException;
|
|
4727
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
4728
|
-
exports.ThrottlingReason$ = ThrottlingReason$;
|
|
4729
|
-
exports.TimeToLiveDescription$ = TimeToLiveDescription$;
|
|
4730
|
-
exports.TimeToLiveSpecification$ = TimeToLiveSpecification$;
|
|
4731
1625
|
exports.TimeToLiveStatus = TimeToLiveStatus;
|
|
4732
|
-
exports.TransactGetItem$ = TransactGetItem$;
|
|
4733
|
-
exports.TransactGetItems$ = TransactGetItems$;
|
|
4734
1626
|
exports.TransactGetItemsCommand = TransactGetItemsCommand;
|
|
4735
|
-
exports.TransactGetItemsInput$ = TransactGetItemsInput$;
|
|
4736
|
-
exports.TransactGetItemsOutput$ = TransactGetItemsOutput$;
|
|
4737
|
-
exports.TransactWriteItem$ = TransactWriteItem$;
|
|
4738
|
-
exports.TransactWriteItems$ = TransactWriteItems$;
|
|
4739
1627
|
exports.TransactWriteItemsCommand = TransactWriteItemsCommand;
|
|
4740
|
-
exports.TransactWriteItemsInput$ = TransactWriteItemsInput$;
|
|
4741
|
-
exports.TransactWriteItemsOutput$ = TransactWriteItemsOutput$;
|
|
4742
|
-
exports.TransactionCanceledException = TransactionCanceledException;
|
|
4743
|
-
exports.TransactionCanceledException$ = TransactionCanceledException$;
|
|
4744
|
-
exports.TransactionConflictException = TransactionConflictException;
|
|
4745
|
-
exports.TransactionConflictException$ = TransactionConflictException$;
|
|
4746
|
-
exports.TransactionInProgressException = TransactionInProgressException;
|
|
4747
|
-
exports.TransactionInProgressException$ = TransactionInProgressException$;
|
|
4748
|
-
exports.UntagResource$ = UntagResource$;
|
|
4749
1628
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4750
|
-
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
4751
|
-
exports.Update$ = Update$;
|
|
4752
|
-
exports.UpdateContinuousBackups$ = UpdateContinuousBackups$;
|
|
4753
1629
|
exports.UpdateContinuousBackupsCommand = UpdateContinuousBackupsCommand;
|
|
4754
|
-
exports.UpdateContinuousBackupsInput$ = UpdateContinuousBackupsInput$;
|
|
4755
|
-
exports.UpdateContinuousBackupsOutput$ = UpdateContinuousBackupsOutput$;
|
|
4756
|
-
exports.UpdateContributorInsights$ = UpdateContributorInsights$;
|
|
4757
1630
|
exports.UpdateContributorInsightsCommand = UpdateContributorInsightsCommand;
|
|
4758
|
-
exports.UpdateContributorInsightsInput$ = UpdateContributorInsightsInput$;
|
|
4759
|
-
exports.UpdateContributorInsightsOutput$ = UpdateContributorInsightsOutput$;
|
|
4760
|
-
exports.UpdateGlobalSecondaryIndexAction$ = UpdateGlobalSecondaryIndexAction$;
|
|
4761
|
-
exports.UpdateGlobalTable$ = UpdateGlobalTable$;
|
|
4762
1631
|
exports.UpdateGlobalTableCommand = UpdateGlobalTableCommand;
|
|
4763
|
-
exports.UpdateGlobalTableInput$ = UpdateGlobalTableInput$;
|
|
4764
|
-
exports.UpdateGlobalTableOutput$ = UpdateGlobalTableOutput$;
|
|
4765
|
-
exports.UpdateGlobalTableSettings$ = UpdateGlobalTableSettings$;
|
|
4766
1632
|
exports.UpdateGlobalTableSettingsCommand = UpdateGlobalTableSettingsCommand;
|
|
4767
|
-
exports.UpdateGlobalTableSettingsInput$ = UpdateGlobalTableSettingsInput$;
|
|
4768
|
-
exports.UpdateGlobalTableSettingsOutput$ = UpdateGlobalTableSettingsOutput$;
|
|
4769
|
-
exports.UpdateItem$ = UpdateItem$;
|
|
4770
1633
|
exports.UpdateItemCommand = UpdateItemCommand;
|
|
4771
|
-
exports.UpdateItemInput$ = UpdateItemInput$;
|
|
4772
|
-
exports.UpdateItemOutput$ = UpdateItemOutput$;
|
|
4773
|
-
exports.UpdateKinesisStreamingConfiguration$ = UpdateKinesisStreamingConfiguration$;
|
|
4774
|
-
exports.UpdateKinesisStreamingDestination$ = UpdateKinesisStreamingDestination$;
|
|
4775
1634
|
exports.UpdateKinesisStreamingDestinationCommand = UpdateKinesisStreamingDestinationCommand;
|
|
4776
|
-
exports.UpdateKinesisStreamingDestinationInput$ = UpdateKinesisStreamingDestinationInput$;
|
|
4777
|
-
exports.UpdateKinesisStreamingDestinationOutput$ = UpdateKinesisStreamingDestinationOutput$;
|
|
4778
|
-
exports.UpdateReplicationGroupMemberAction$ = UpdateReplicationGroupMemberAction$;
|
|
4779
|
-
exports.UpdateTable$ = UpdateTable$;
|
|
4780
1635
|
exports.UpdateTableCommand = UpdateTableCommand;
|
|
4781
|
-
exports.UpdateTableInput$ = UpdateTableInput$;
|
|
4782
|
-
exports.UpdateTableOutput$ = UpdateTableOutput$;
|
|
4783
|
-
exports.UpdateTableReplicaAutoScaling$ = UpdateTableReplicaAutoScaling$;
|
|
4784
1636
|
exports.UpdateTableReplicaAutoScalingCommand = UpdateTableReplicaAutoScalingCommand;
|
|
4785
|
-
exports.UpdateTableReplicaAutoScalingInput$ = UpdateTableReplicaAutoScalingInput$;
|
|
4786
|
-
exports.UpdateTableReplicaAutoScalingOutput$ = UpdateTableReplicaAutoScalingOutput$;
|
|
4787
|
-
exports.UpdateTimeToLive$ = UpdateTimeToLive$;
|
|
4788
1637
|
exports.UpdateTimeToLiveCommand = UpdateTimeToLiveCommand;
|
|
4789
|
-
exports.UpdateTimeToLiveInput$ = UpdateTimeToLiveInput$;
|
|
4790
|
-
exports.UpdateTimeToLiveOutput$ = UpdateTimeToLiveOutput$;
|
|
4791
|
-
exports.WarmThroughput$ = WarmThroughput$;
|
|
4792
1638
|
exports.WitnessStatus = WitnessStatus;
|
|
4793
|
-
exports.WriteRequest$ = WriteRequest$;
|
|
4794
1639
|
exports.paginateListContributorInsights = paginateListContributorInsights;
|
|
4795
1640
|
exports.paginateListExports = paginateListExports;
|
|
4796
1641
|
exports.paginateListImports = paginateListImports;
|
|
@@ -4809,3 +1654,15 @@ exports.waitUntilImportCompleted = waitUntilImportCompleted;
|
|
|
4809
1654
|
exports.waitUntilKinesisStreamingDestinationActive = waitUntilKinesisStreamingDestinationActive;
|
|
4810
1655
|
exports.waitUntilTableExists = waitUntilTableExists;
|
|
4811
1656
|
exports.waitUntilTableNotExists = waitUntilTableNotExists;
|
|
1657
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1658
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1659
|
+
enumerable: true,
|
|
1660
|
+
get: function () { return schemas_0[k]; }
|
|
1661
|
+
});
|
|
1662
|
+
});
|
|
1663
|
+
Object.keys(errors).forEach(function (k) {
|
|
1664
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1665
|
+
enumerable: true,
|
|
1666
|
+
get: function () { return errors[k]; }
|
|
1667
|
+
});
|
|
1668
|
+
});
|