@aws-sdk/client-dynamodb 3.934.0 → 3.936.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist-cjs/index.js +241 -240
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +240 -0
  4. package/dist-es/models/errors.js +440 -0
  5. package/dist-es/models/models_0.js +1 -680
  6. package/dist-es/schemas/schemas_0.js +1 -1
  7. package/dist-types/commands/BatchExecuteStatementCommand.d.ts +1 -1
  8. package/dist-types/commands/BatchGetItemCommand.d.ts +1 -1
  9. package/dist-types/commands/BatchWriteItemCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteItemCommand.d.ts +1 -1
  11. package/dist-types/commands/ExecuteStatementCommand.d.ts +1 -1
  12. package/dist-types/commands/ExecuteTransactionCommand.d.ts +1 -1
  13. package/dist-types/commands/GetItemCommand.d.ts +1 -1
  14. package/dist-types/commands/PutItemCommand.d.ts +1 -1
  15. package/dist-types/commands/QueryCommand.d.ts +1 -1
  16. package/dist-types/commands/ScanCommand.d.ts +1 -1
  17. package/dist-types/commands/TransactGetItemsCommand.d.ts +1 -1
  18. package/dist-types/commands/TransactWriteItemsCommand.d.ts +2 -3
  19. package/dist-types/commands/UpdateItemCommand.d.ts +1 -1
  20. package/dist-types/index.d.ts +3 -1
  21. package/dist-types/models/enums.d.ts +576 -0
  22. package/dist-types/models/errors.d.ts +804 -0
  23. package/dist-types/models/models_0.d.ts +73 -1379
  24. package/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +4 -2
  25. package/dist-types/ts3.4/index.d.ts +3 -1
  26. package/dist-types/ts3.4/models/enums.d.ts +306 -0
  27. package/dist-types/ts3.4/models/errors.d.ts +286 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +50 -587
  29. package/package.json +20 -20
  30. package/dist-es/models/index.js +0 -2
  31. package/dist-es/models/models_1.js +0 -1
  32. package/dist-types/models/index.d.ts +0 -2
  33. package/dist-types/models/models_1.d.ts +0 -73
  34. package/dist-types/ts3.4/models/index.d.ts +0 -2
  35. package/dist-types/ts3.4/models/models_1.d.ts +0 -11
@@ -1,680 +1 @@
1
- import { DynamoDBServiceException as __BaseException } from "./DynamoDBServiceException";
2
- export const ApproximateCreationDateTimePrecision = {
3
- MICROSECOND: "MICROSECOND",
4
- MILLISECOND: "MILLISECOND",
5
- };
6
- export const AttributeAction = {
7
- ADD: "ADD",
8
- DELETE: "DELETE",
9
- PUT: "PUT",
10
- };
11
- export const ScalarAttributeType = {
12
- B: "B",
13
- N: "N",
14
- S: "S",
15
- };
16
- export const BackupStatus = {
17
- AVAILABLE: "AVAILABLE",
18
- CREATING: "CREATING",
19
- DELETED: "DELETED",
20
- };
21
- export const BackupType = {
22
- AWS_BACKUP: "AWS_BACKUP",
23
- SYSTEM: "SYSTEM",
24
- USER: "USER",
25
- };
26
- export const BillingMode = {
27
- PAY_PER_REQUEST: "PAY_PER_REQUEST",
28
- PROVISIONED: "PROVISIONED",
29
- };
30
- export const KeyType = {
31
- HASH: "HASH",
32
- RANGE: "RANGE",
33
- };
34
- export const ProjectionType = {
35
- ALL: "ALL",
36
- INCLUDE: "INCLUDE",
37
- KEYS_ONLY: "KEYS_ONLY",
38
- };
39
- export const SSEType = {
40
- AES256: "AES256",
41
- KMS: "KMS",
42
- };
43
- export const SSEStatus = {
44
- DISABLED: "DISABLED",
45
- DISABLING: "DISABLING",
46
- ENABLED: "ENABLED",
47
- ENABLING: "ENABLING",
48
- UPDATING: "UPDATING",
49
- };
50
- export const StreamViewType = {
51
- KEYS_ONLY: "KEYS_ONLY",
52
- NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES",
53
- NEW_IMAGE: "NEW_IMAGE",
54
- OLD_IMAGE: "OLD_IMAGE",
55
- };
56
- export const TimeToLiveStatus = {
57
- DISABLED: "DISABLED",
58
- DISABLING: "DISABLING",
59
- ENABLED: "ENABLED",
60
- ENABLING: "ENABLING",
61
- };
62
- export class BackupInUseException extends __BaseException {
63
- name = "BackupInUseException";
64
- $fault = "client";
65
- constructor(opts) {
66
- super({
67
- name: "BackupInUseException",
68
- $fault: "client",
69
- ...opts,
70
- });
71
- Object.setPrototypeOf(this, BackupInUseException.prototype);
72
- }
73
- }
74
- export class BackupNotFoundException extends __BaseException {
75
- name = "BackupNotFoundException";
76
- $fault = "client";
77
- constructor(opts) {
78
- super({
79
- name: "BackupNotFoundException",
80
- $fault: "client",
81
- ...opts,
82
- });
83
- Object.setPrototypeOf(this, BackupNotFoundException.prototype);
84
- }
85
- }
86
- export const BackupTypeFilter = {
87
- ALL: "ALL",
88
- AWS_BACKUP: "AWS_BACKUP",
89
- SYSTEM: "SYSTEM",
90
- USER: "USER",
91
- };
92
- export const ReturnConsumedCapacity = {
93
- INDEXES: "INDEXES",
94
- NONE: "NONE",
95
- TOTAL: "TOTAL",
96
- };
97
- export const ReturnValuesOnConditionCheckFailure = {
98
- ALL_OLD: "ALL_OLD",
99
- NONE: "NONE",
100
- };
101
- export const BatchStatementErrorCodeEnum = {
102
- AccessDenied: "AccessDenied",
103
- ConditionalCheckFailed: "ConditionalCheckFailed",
104
- DuplicateItem: "DuplicateItem",
105
- InternalServerError: "InternalServerError",
106
- ItemCollectionSizeLimitExceeded: "ItemCollectionSizeLimitExceeded",
107
- ProvisionedThroughputExceeded: "ProvisionedThroughputExceeded",
108
- RequestLimitExceeded: "RequestLimitExceeded",
109
- ResourceNotFound: "ResourceNotFound",
110
- ThrottlingError: "ThrottlingError",
111
- TransactionConflict: "TransactionConflict",
112
- ValidationError: "ValidationError",
113
- };
114
- export class InternalServerError extends __BaseException {
115
- name = "InternalServerError";
116
- $fault = "server";
117
- constructor(opts) {
118
- super({
119
- name: "InternalServerError",
120
- $fault: "server",
121
- ...opts,
122
- });
123
- Object.setPrototypeOf(this, InternalServerError.prototype);
124
- }
125
- }
126
- export class RequestLimitExceeded extends __BaseException {
127
- name = "RequestLimitExceeded";
128
- $fault = "client";
129
- ThrottlingReasons;
130
- constructor(opts) {
131
- super({
132
- name: "RequestLimitExceeded",
133
- $fault: "client",
134
- ...opts,
135
- });
136
- Object.setPrototypeOf(this, RequestLimitExceeded.prototype);
137
- this.ThrottlingReasons = opts.ThrottlingReasons;
138
- }
139
- }
140
- export class ThrottlingException extends __BaseException {
141
- name = "ThrottlingException";
142
- $fault = "client";
143
- throttlingReasons;
144
- constructor(opts) {
145
- super({
146
- name: "ThrottlingException",
147
- $fault: "client",
148
- ...opts,
149
- });
150
- Object.setPrototypeOf(this, ThrottlingException.prototype);
151
- this.throttlingReasons = opts.throttlingReasons;
152
- }
153
- }
154
- export class InvalidEndpointException extends __BaseException {
155
- name = "InvalidEndpointException";
156
- $fault = "client";
157
- Message;
158
- constructor(opts) {
159
- super({
160
- name: "InvalidEndpointException",
161
- $fault: "client",
162
- ...opts,
163
- });
164
- Object.setPrototypeOf(this, InvalidEndpointException.prototype);
165
- this.Message = opts.Message;
166
- }
167
- }
168
- export class ProvisionedThroughputExceededException extends __BaseException {
169
- name = "ProvisionedThroughputExceededException";
170
- $fault = "client";
171
- ThrottlingReasons;
172
- constructor(opts) {
173
- super({
174
- name: "ProvisionedThroughputExceededException",
175
- $fault: "client",
176
- ...opts,
177
- });
178
- Object.setPrototypeOf(this, ProvisionedThroughputExceededException.prototype);
179
- this.ThrottlingReasons = opts.ThrottlingReasons;
180
- }
181
- }
182
- export class ResourceNotFoundException extends __BaseException {
183
- name = "ResourceNotFoundException";
184
- $fault = "client";
185
- constructor(opts) {
186
- super({
187
- name: "ResourceNotFoundException",
188
- $fault: "client",
189
- ...opts,
190
- });
191
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
192
- }
193
- }
194
- export const ReturnItemCollectionMetrics = {
195
- NONE: "NONE",
196
- SIZE: "SIZE",
197
- };
198
- export class ItemCollectionSizeLimitExceededException extends __BaseException {
199
- name = "ItemCollectionSizeLimitExceededException";
200
- $fault = "client";
201
- constructor(opts) {
202
- super({
203
- name: "ItemCollectionSizeLimitExceededException",
204
- $fault: "client",
205
- ...opts,
206
- });
207
- Object.setPrototypeOf(this, ItemCollectionSizeLimitExceededException.prototype);
208
- }
209
- }
210
- export class ReplicatedWriteConflictException extends __BaseException {
211
- name = "ReplicatedWriteConflictException";
212
- $fault = "client";
213
- $retryable = {};
214
- constructor(opts) {
215
- super({
216
- name: "ReplicatedWriteConflictException",
217
- $fault: "client",
218
- ...opts,
219
- });
220
- Object.setPrototypeOf(this, ReplicatedWriteConflictException.prototype);
221
- }
222
- }
223
- export const ComparisonOperator = {
224
- BEGINS_WITH: "BEGINS_WITH",
225
- BETWEEN: "BETWEEN",
226
- CONTAINS: "CONTAINS",
227
- EQ: "EQ",
228
- GE: "GE",
229
- GT: "GT",
230
- IN: "IN",
231
- LE: "LE",
232
- LT: "LT",
233
- NE: "NE",
234
- NOT_CONTAINS: "NOT_CONTAINS",
235
- NOT_NULL: "NOT_NULL",
236
- NULL: "NULL",
237
- };
238
- export const ConditionalOperator = {
239
- AND: "AND",
240
- OR: "OR",
241
- };
242
- export const ContinuousBackupsStatus = {
243
- DISABLED: "DISABLED",
244
- ENABLED: "ENABLED",
245
- };
246
- export const PointInTimeRecoveryStatus = {
247
- DISABLED: "DISABLED",
248
- ENABLED: "ENABLED",
249
- };
250
- export class ContinuousBackupsUnavailableException extends __BaseException {
251
- name = "ContinuousBackupsUnavailableException";
252
- $fault = "client";
253
- constructor(opts) {
254
- super({
255
- name: "ContinuousBackupsUnavailableException",
256
- $fault: "client",
257
- ...opts,
258
- });
259
- Object.setPrototypeOf(this, ContinuousBackupsUnavailableException.prototype);
260
- }
261
- }
262
- export const ContributorInsightsAction = {
263
- DISABLE: "DISABLE",
264
- ENABLE: "ENABLE",
265
- };
266
- export const ContributorInsightsMode = {
267
- ACCESSED_AND_THROTTLED_KEYS: "ACCESSED_AND_THROTTLED_KEYS",
268
- THROTTLED_KEYS: "THROTTLED_KEYS",
269
- };
270
- export const ContributorInsightsStatus = {
271
- DISABLED: "DISABLED",
272
- DISABLING: "DISABLING",
273
- ENABLED: "ENABLED",
274
- ENABLING: "ENABLING",
275
- FAILED: "FAILED",
276
- };
277
- export class LimitExceededException extends __BaseException {
278
- name = "LimitExceededException";
279
- $fault = "client";
280
- constructor(opts) {
281
- super({
282
- name: "LimitExceededException",
283
- $fault: "client",
284
- ...opts,
285
- });
286
- Object.setPrototypeOf(this, LimitExceededException.prototype);
287
- }
288
- }
289
- export class TableInUseException extends __BaseException {
290
- name = "TableInUseException";
291
- $fault = "client";
292
- constructor(opts) {
293
- super({
294
- name: "TableInUseException",
295
- $fault: "client",
296
- ...opts,
297
- });
298
- Object.setPrototypeOf(this, TableInUseException.prototype);
299
- }
300
- }
301
- export class TableNotFoundException extends __BaseException {
302
- name = "TableNotFoundException";
303
- $fault = "client";
304
- constructor(opts) {
305
- super({
306
- name: "TableNotFoundException",
307
- $fault: "client",
308
- ...opts,
309
- });
310
- Object.setPrototypeOf(this, TableNotFoundException.prototype);
311
- }
312
- }
313
- export const GlobalTableStatus = {
314
- ACTIVE: "ACTIVE",
315
- CREATING: "CREATING",
316
- DELETING: "DELETING",
317
- UPDATING: "UPDATING",
318
- };
319
- export const IndexStatus = {
320
- ACTIVE: "ACTIVE",
321
- CREATING: "CREATING",
322
- DELETING: "DELETING",
323
- UPDATING: "UPDATING",
324
- };
325
- export const ReplicaStatus = {
326
- ACTIVE: "ACTIVE",
327
- ARCHIVED: "ARCHIVED",
328
- ARCHIVING: "ARCHIVING",
329
- CREATING: "CREATING",
330
- CREATION_FAILED: "CREATION_FAILED",
331
- DELETING: "DELETING",
332
- INACCESSIBLE_ENCRYPTION_CREDENTIALS: "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
333
- REGION_DISABLED: "REGION_DISABLED",
334
- REPLICATION_NOT_AUTHORIZED: "REPLICATION_NOT_AUTHORIZED",
335
- UPDATING: "UPDATING",
336
- };
337
- export const TableClass = {
338
- STANDARD: "STANDARD",
339
- STANDARD_INFREQUENT_ACCESS: "STANDARD_INFREQUENT_ACCESS",
340
- };
341
- export const TableStatus = {
342
- ACTIVE: "ACTIVE",
343
- ARCHIVED: "ARCHIVED",
344
- ARCHIVING: "ARCHIVING",
345
- CREATING: "CREATING",
346
- DELETING: "DELETING",
347
- INACCESSIBLE_ENCRYPTION_CREDENTIALS: "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
348
- REPLICATION_NOT_AUTHORIZED: "REPLICATION_NOT_AUTHORIZED",
349
- UPDATING: "UPDATING",
350
- };
351
- export class GlobalTableAlreadyExistsException extends __BaseException {
352
- name = "GlobalTableAlreadyExistsException";
353
- $fault = "client";
354
- constructor(opts) {
355
- super({
356
- name: "GlobalTableAlreadyExistsException",
357
- $fault: "client",
358
- ...opts,
359
- });
360
- Object.setPrototypeOf(this, GlobalTableAlreadyExistsException.prototype);
361
- }
362
- }
363
- export const WitnessStatus = {
364
- ACTIVE: "ACTIVE",
365
- CREATING: "CREATING",
366
- DELETING: "DELETING",
367
- };
368
- export const MultiRegionConsistency = {
369
- EVENTUAL: "EVENTUAL",
370
- STRONG: "STRONG",
371
- };
372
- export class ResourceInUseException extends __BaseException {
373
- name = "ResourceInUseException";
374
- $fault = "client";
375
- constructor(opts) {
376
- super({
377
- name: "ResourceInUseException",
378
- $fault: "client",
379
- ...opts,
380
- });
381
- Object.setPrototypeOf(this, ResourceInUseException.prototype);
382
- }
383
- }
384
- export const ReturnValue = {
385
- ALL_NEW: "ALL_NEW",
386
- ALL_OLD: "ALL_OLD",
387
- NONE: "NONE",
388
- UPDATED_NEW: "UPDATED_NEW",
389
- UPDATED_OLD: "UPDATED_OLD",
390
- };
391
- export class TransactionConflictException extends __BaseException {
392
- name = "TransactionConflictException";
393
- $fault = "client";
394
- constructor(opts) {
395
- super({
396
- name: "TransactionConflictException",
397
- $fault: "client",
398
- ...opts,
399
- });
400
- Object.setPrototypeOf(this, TransactionConflictException.prototype);
401
- }
402
- }
403
- export class PolicyNotFoundException extends __BaseException {
404
- name = "PolicyNotFoundException";
405
- $fault = "client";
406
- constructor(opts) {
407
- super({
408
- name: "PolicyNotFoundException",
409
- $fault: "client",
410
- ...opts,
411
- });
412
- Object.setPrototypeOf(this, PolicyNotFoundException.prototype);
413
- }
414
- }
415
- export const ExportFormat = {
416
- DYNAMODB_JSON: "DYNAMODB_JSON",
417
- ION: "ION",
418
- };
419
- export const ExportStatus = {
420
- COMPLETED: "COMPLETED",
421
- FAILED: "FAILED",
422
- IN_PROGRESS: "IN_PROGRESS",
423
- };
424
- export const ExportType = {
425
- FULL_EXPORT: "FULL_EXPORT",
426
- INCREMENTAL_EXPORT: "INCREMENTAL_EXPORT",
427
- };
428
- export const ExportViewType = {
429
- NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES",
430
- NEW_IMAGE: "NEW_IMAGE",
431
- };
432
- export const S3SseAlgorithm = {
433
- AES256: "AES256",
434
- KMS: "KMS",
435
- };
436
- export class ExportNotFoundException extends __BaseException {
437
- name = "ExportNotFoundException";
438
- $fault = "client";
439
- constructor(opts) {
440
- super({
441
- name: "ExportNotFoundException",
442
- $fault: "client",
443
- ...opts,
444
- });
445
- Object.setPrototypeOf(this, ExportNotFoundException.prototype);
446
- }
447
- }
448
- export class GlobalTableNotFoundException extends __BaseException {
449
- name = "GlobalTableNotFoundException";
450
- $fault = "client";
451
- constructor(opts) {
452
- super({
453
- name: "GlobalTableNotFoundException",
454
- $fault: "client",
455
- ...opts,
456
- });
457
- Object.setPrototypeOf(this, GlobalTableNotFoundException.prototype);
458
- }
459
- }
460
- export const ImportStatus = {
461
- CANCELLED: "CANCELLED",
462
- CANCELLING: "CANCELLING",
463
- COMPLETED: "COMPLETED",
464
- FAILED: "FAILED",
465
- IN_PROGRESS: "IN_PROGRESS",
466
- };
467
- export const InputCompressionType = {
468
- GZIP: "GZIP",
469
- NONE: "NONE",
470
- ZSTD: "ZSTD",
471
- };
472
- export const InputFormat = {
473
- CSV: "CSV",
474
- DYNAMODB_JSON: "DYNAMODB_JSON",
475
- ION: "ION",
476
- };
477
- export class ImportNotFoundException extends __BaseException {
478
- name = "ImportNotFoundException";
479
- $fault = "client";
480
- constructor(opts) {
481
- super({
482
- name: "ImportNotFoundException",
483
- $fault: "client",
484
- ...opts,
485
- });
486
- Object.setPrototypeOf(this, ImportNotFoundException.prototype);
487
- }
488
- }
489
- export const DestinationStatus = {
490
- ACTIVE: "ACTIVE",
491
- DISABLED: "DISABLED",
492
- DISABLING: "DISABLING",
493
- ENABLE_FAILED: "ENABLE_FAILED",
494
- ENABLING: "ENABLING",
495
- UPDATING: "UPDATING",
496
- };
497
- export class DuplicateItemException extends __BaseException {
498
- name = "DuplicateItemException";
499
- $fault = "client";
500
- constructor(opts) {
501
- super({
502
- name: "DuplicateItemException",
503
- $fault: "client",
504
- ...opts,
505
- });
506
- Object.setPrototypeOf(this, DuplicateItemException.prototype);
507
- }
508
- }
509
- export class IdempotentParameterMismatchException extends __BaseException {
510
- name = "IdempotentParameterMismatchException";
511
- $fault = "client";
512
- Message;
513
- constructor(opts) {
514
- super({
515
- name: "IdempotentParameterMismatchException",
516
- $fault: "client",
517
- ...opts,
518
- });
519
- Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
520
- this.Message = opts.Message;
521
- }
522
- }
523
- export class TransactionInProgressException extends __BaseException {
524
- name = "TransactionInProgressException";
525
- $fault = "client";
526
- Message;
527
- constructor(opts) {
528
- super({
529
- name: "TransactionInProgressException",
530
- $fault: "client",
531
- ...opts,
532
- });
533
- Object.setPrototypeOf(this, TransactionInProgressException.prototype);
534
- this.Message = opts.Message;
535
- }
536
- }
537
- export class ExportConflictException extends __BaseException {
538
- name = "ExportConflictException";
539
- $fault = "client";
540
- constructor(opts) {
541
- super({
542
- name: "ExportConflictException",
543
- $fault: "client",
544
- ...opts,
545
- });
546
- Object.setPrototypeOf(this, ExportConflictException.prototype);
547
- }
548
- }
549
- export class InvalidExportTimeException extends __BaseException {
550
- name = "InvalidExportTimeException";
551
- $fault = "client";
552
- constructor(opts) {
553
- super({
554
- name: "InvalidExportTimeException",
555
- $fault: "client",
556
- ...opts,
557
- });
558
- Object.setPrototypeOf(this, InvalidExportTimeException.prototype);
559
- }
560
- }
561
- export class PointInTimeRecoveryUnavailableException extends __BaseException {
562
- name = "PointInTimeRecoveryUnavailableException";
563
- $fault = "client";
564
- constructor(opts) {
565
- super({
566
- name: "PointInTimeRecoveryUnavailableException",
567
- $fault: "client",
568
- ...opts,
569
- });
570
- Object.setPrototypeOf(this, PointInTimeRecoveryUnavailableException.prototype);
571
- }
572
- }
573
- export class ImportConflictException extends __BaseException {
574
- name = "ImportConflictException";
575
- $fault = "client";
576
- constructor(opts) {
577
- super({
578
- name: "ImportConflictException",
579
- $fault: "client",
580
- ...opts,
581
- });
582
- Object.setPrototypeOf(this, ImportConflictException.prototype);
583
- }
584
- }
585
- export const Select = {
586
- ALL_ATTRIBUTES: "ALL_ATTRIBUTES",
587
- ALL_PROJECTED_ATTRIBUTES: "ALL_PROJECTED_ATTRIBUTES",
588
- COUNT: "COUNT",
589
- SPECIFIC_ATTRIBUTES: "SPECIFIC_ATTRIBUTES",
590
- };
591
- export class TableAlreadyExistsException extends __BaseException {
592
- name = "TableAlreadyExistsException";
593
- $fault = "client";
594
- constructor(opts) {
595
- super({
596
- name: "TableAlreadyExistsException",
597
- $fault: "client",
598
- ...opts,
599
- });
600
- Object.setPrototypeOf(this, TableAlreadyExistsException.prototype);
601
- }
602
- }
603
- export class InvalidRestoreTimeException extends __BaseException {
604
- name = "InvalidRestoreTimeException";
605
- $fault = "client";
606
- constructor(opts) {
607
- super({
608
- name: "InvalidRestoreTimeException",
609
- $fault: "client",
610
- ...opts,
611
- });
612
- Object.setPrototypeOf(this, InvalidRestoreTimeException.prototype);
613
- }
614
- }
615
- export class ReplicaAlreadyExistsException extends __BaseException {
616
- name = "ReplicaAlreadyExistsException";
617
- $fault = "client";
618
- constructor(opts) {
619
- super({
620
- name: "ReplicaAlreadyExistsException",
621
- $fault: "client",
622
- ...opts,
623
- });
624
- Object.setPrototypeOf(this, ReplicaAlreadyExistsException.prototype);
625
- }
626
- }
627
- export class ReplicaNotFoundException extends __BaseException {
628
- name = "ReplicaNotFoundException";
629
- $fault = "client";
630
- constructor(opts) {
631
- super({
632
- name: "ReplicaNotFoundException",
633
- $fault: "client",
634
- ...opts,
635
- });
636
- Object.setPrototypeOf(this, ReplicaNotFoundException.prototype);
637
- }
638
- }
639
- export class IndexNotFoundException extends __BaseException {
640
- name = "IndexNotFoundException";
641
- $fault = "client";
642
- constructor(opts) {
643
- super({
644
- name: "IndexNotFoundException",
645
- $fault: "client",
646
- ...opts,
647
- });
648
- Object.setPrototypeOf(this, IndexNotFoundException.prototype);
649
- }
650
- }
651
- export class ConditionalCheckFailedException extends __BaseException {
652
- name = "ConditionalCheckFailedException";
653
- $fault = "client";
654
- Item;
655
- constructor(opts) {
656
- super({
657
- name: "ConditionalCheckFailedException",
658
- $fault: "client",
659
- ...opts,
660
- });
661
- Object.setPrototypeOf(this, ConditionalCheckFailedException.prototype);
662
- this.Item = opts.Item;
663
- }
664
- }
665
- export class TransactionCanceledException extends __BaseException {
666
- name = "TransactionCanceledException";
667
- $fault = "client";
668
- Message;
669
- CancellationReasons;
670
- constructor(opts) {
671
- super({
672
- name: "TransactionCanceledException",
673
- $fault: "client",
674
- ...opts,
675
- });
676
- Object.setPrototypeOf(this, TransactionCanceledException.prototype);
677
- this.Message = opts.Message;
678
- this.CancellationReasons = opts.CancellationReasons;
679
- }
680
- }
1
+ export {};
@@ -654,7 +654,7 @@ const _xacrsra = "x-amz-confirm-remove-self-resource-access";
654
654
  const n0 = "com.amazonaws.dynamodb";
655
655
  import { TypeRegistry } from "@smithy/core/schema";
656
656
  import { DynamoDBServiceException as __DynamoDBServiceException } from "../models/DynamoDBServiceException";
657
- import { BackupInUseException as __BackupInUseException, BackupNotFoundException as __BackupNotFoundException, ConditionalCheckFailedException as __ConditionalCheckFailedException, ContinuousBackupsUnavailableException as __ContinuousBackupsUnavailableException, DuplicateItemException as __DuplicateItemException, ExportConflictException as __ExportConflictException, ExportNotFoundException as __ExportNotFoundException, GlobalTableAlreadyExistsException as __GlobalTableAlreadyExistsException, GlobalTableNotFoundException as __GlobalTableNotFoundException, IdempotentParameterMismatchException as __IdempotentParameterMismatchException, ImportConflictException as __ImportConflictException, ImportNotFoundException as __ImportNotFoundException, IndexNotFoundException as __IndexNotFoundException, InternalServerError as __InternalServerError, InvalidEndpointException as __InvalidEndpointException, InvalidExportTimeException as __InvalidExportTimeException, InvalidRestoreTimeException as __InvalidRestoreTimeException, ItemCollectionSizeLimitExceededException as __ItemCollectionSizeLimitExceededException, LimitExceededException as __LimitExceededException, PointInTimeRecoveryUnavailableException as __PointInTimeRecoveryUnavailableException, PolicyNotFoundException as __PolicyNotFoundException, ProvisionedThroughputExceededException as __ProvisionedThroughputExceededException, ReplicaAlreadyExistsException as __ReplicaAlreadyExistsException, ReplicaNotFoundException as __ReplicaNotFoundException, ReplicatedWriteConflictException as __ReplicatedWriteConflictException, RequestLimitExceeded as __RequestLimitExceeded, ResourceInUseException as __ResourceInUseException, ResourceNotFoundException as __ResourceNotFoundException, TableAlreadyExistsException as __TableAlreadyExistsException, TableInUseException as __TableInUseException, TableNotFoundException as __TableNotFoundException, ThrottlingException as __ThrottlingException, TransactionCanceledException as __TransactionCanceledException, TransactionConflictException as __TransactionConflictException, TransactionInProgressException as __TransactionInProgressException, } from "../models/index";
657
+ import { BackupInUseException as __BackupInUseException, BackupNotFoundException as __BackupNotFoundException, ConditionalCheckFailedException as __ConditionalCheckFailedException, ContinuousBackupsUnavailableException as __ContinuousBackupsUnavailableException, DuplicateItemException as __DuplicateItemException, ExportConflictException as __ExportConflictException, ExportNotFoundException as __ExportNotFoundException, GlobalTableAlreadyExistsException as __GlobalTableAlreadyExistsException, GlobalTableNotFoundException as __GlobalTableNotFoundException, IdempotentParameterMismatchException as __IdempotentParameterMismatchException, ImportConflictException as __ImportConflictException, ImportNotFoundException as __ImportNotFoundException, IndexNotFoundException as __IndexNotFoundException, InternalServerError as __InternalServerError, InvalidEndpointException as __InvalidEndpointException, InvalidExportTimeException as __InvalidExportTimeException, InvalidRestoreTimeException as __InvalidRestoreTimeException, ItemCollectionSizeLimitExceededException as __ItemCollectionSizeLimitExceededException, LimitExceededException as __LimitExceededException, PointInTimeRecoveryUnavailableException as __PointInTimeRecoveryUnavailableException, PolicyNotFoundException as __PolicyNotFoundException, ProvisionedThroughputExceededException as __ProvisionedThroughputExceededException, ReplicaAlreadyExistsException as __ReplicaAlreadyExistsException, ReplicaNotFoundException as __ReplicaNotFoundException, ReplicatedWriteConflictException as __ReplicatedWriteConflictException, RequestLimitExceeded as __RequestLimitExceeded, ResourceInUseException as __ResourceInUseException, ResourceNotFoundException as __ResourceNotFoundException, TableAlreadyExistsException as __TableAlreadyExistsException, TableInUseException as __TableInUseException, TableNotFoundException as __TableNotFoundException, ThrottlingException as __ThrottlingException, TransactionCanceledException as __TransactionCanceledException, TransactionConflictException as __TransactionConflictException, TransactionInProgressException as __TransactionInProgressException, } from "../models/errors";
658
658
  export var ArchivalSummary = [3, n0, _AS, 0, [_ADT, _AR, _ABA], [4, 0, 0]];
659
659
  export var AttributeDefinition = [3, n0, _AD, 0, [_AN, _AT], [0, 0]];
660
660
  export var AttributeValueUpdate = [3, n0, _AVU, 0, [_V, _A], [() => AttributeValue, 0]];
@@ -206,7 +206,7 @@ declare const BatchExecuteStatementCommand_base: {
206
206
  * @throws {@link RequestLimitExceeded} (client fault)
207
207
  * <p>Throughput exceeds the current throughput quota for your account. For detailed
208
208
  * information about why the request was throttled and the ARN of the impacted resource,
209
- * find the <a href="https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ThrottlingReason.html">ThrottlingReason</a> field in the returned exception. Contact <a href="https://aws.amazon.com/support">Amazon Web ServicesSupport</a> to request a quota
209
+ * find the <a href="https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ThrottlingReason.html">ThrottlingReason</a> field in the returned exception. Contact <a href="https://aws.amazon.com/support">Amazon Web Services Support</a> to request a quota
210
210
  * increase.</p>
211
211
  *
212
212
  * @throws {@link ThrottlingException} (client fault)