@aws-sdk/client-dynamodb 3.952.0 → 3.954.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 +1136 -807
- package/dist-cjs/runtimeConfig.shared.js +8 -7
- package/dist-es/commands/BatchExecuteStatementCommand.js +2 -2
- package/dist-es/commands/BatchGetItemCommand.js +2 -2
- package/dist-es/commands/BatchWriteItemCommand.js +2 -2
- package/dist-es/commands/CreateBackupCommand.js +2 -2
- package/dist-es/commands/CreateGlobalTableCommand.js +2 -2
- package/dist-es/commands/CreateTableCommand.js +2 -2
- package/dist-es/commands/DeleteBackupCommand.js +2 -2
- package/dist-es/commands/DeleteItemCommand.js +2 -2
- package/dist-es/commands/DeleteResourcePolicyCommand.js +2 -2
- package/dist-es/commands/DeleteTableCommand.js +2 -2
- package/dist-es/commands/DescribeBackupCommand.js +2 -2
- package/dist-es/commands/DescribeContinuousBackupsCommand.js +2 -2
- package/dist-es/commands/DescribeContributorInsightsCommand.js +2 -2
- package/dist-es/commands/DescribeEndpointsCommand.js +2 -2
- package/dist-es/commands/DescribeExportCommand.js +2 -2
- package/dist-es/commands/DescribeGlobalTableCommand.js +2 -2
- package/dist-es/commands/DescribeGlobalTableSettingsCommand.js +2 -2
- package/dist-es/commands/DescribeImportCommand.js +2 -2
- package/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +2 -2
- package/dist-es/commands/DescribeLimitsCommand.js +2 -2
- package/dist-es/commands/DescribeTableCommand.js +2 -2
- package/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +2 -2
- package/dist-es/commands/DescribeTimeToLiveCommand.js +2 -2
- package/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +2 -2
- package/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +2 -2
- package/dist-es/commands/ExecuteStatementCommand.js +2 -2
- package/dist-es/commands/ExecuteTransactionCommand.js +2 -2
- package/dist-es/commands/ExportTableToPointInTimeCommand.js +2 -2
- package/dist-es/commands/GetItemCommand.js +2 -2
- package/dist-es/commands/GetResourcePolicyCommand.js +2 -2
- package/dist-es/commands/ImportTableCommand.js +2 -2
- package/dist-es/commands/ListBackupsCommand.js +2 -2
- package/dist-es/commands/ListContributorInsightsCommand.js +2 -2
- package/dist-es/commands/ListExportsCommand.js +2 -2
- package/dist-es/commands/ListGlobalTablesCommand.js +2 -2
- package/dist-es/commands/ListImportsCommand.js +2 -2
- package/dist-es/commands/ListTablesCommand.js +2 -2
- package/dist-es/commands/ListTagsOfResourceCommand.js +2 -2
- package/dist-es/commands/PutItemCommand.js +2 -2
- package/dist-es/commands/PutResourcePolicyCommand.js +2 -2
- package/dist-es/commands/QueryCommand.js +2 -2
- package/dist-es/commands/RestoreTableFromBackupCommand.js +2 -2
- package/dist-es/commands/RestoreTableToPointInTimeCommand.js +2 -2
- package/dist-es/commands/ScanCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/TransactGetItemsCommand.js +2 -2
- package/dist-es/commands/TransactWriteItemsCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateContinuousBackupsCommand.js +2 -2
- package/dist-es/commands/UpdateContributorInsightsCommand.js +2 -2
- package/dist-es/commands/UpdateGlobalTableCommand.js +2 -2
- package/dist-es/commands/UpdateGlobalTableSettingsCommand.js +2 -2
- package/dist-es/commands/UpdateItemCommand.js +2 -2
- package/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +2 -2
- package/dist-es/commands/UpdateTableCommand.js +2 -2
- package/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +2 -2
- package/dist-es/commands/UpdateTimeToLiveCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +8 -7
- package/dist-es/schemas/schemas_0.js +677 -665
- package/dist-types/DynamoDBClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +318 -397
- package/dist-types/ts3.4/DynamoDBClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +317 -398
- package/package.json +37 -37
package/dist-cjs/index.js
CHANGED
|
@@ -35,14 +35,14 @@ const commonParams = {
|
|
|
35
35
|
AccountIdEndpointMode: { type: "builtInParams", name: "accountIdEndpointMode" },
|
|
36
36
|
};
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
class DynamoDBServiceException extends smithyClient.ServiceException {
|
|
39
39
|
constructor(options) {
|
|
40
40
|
super(options);
|
|
41
41
|
Object.setPrototypeOf(this, DynamoDBServiceException.prototype);
|
|
42
42
|
}
|
|
43
|
-
}
|
|
43
|
+
}
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
class BackupInUseException extends DynamoDBServiceException {
|
|
46
46
|
name = "BackupInUseException";
|
|
47
47
|
$fault = "client";
|
|
48
48
|
constructor(opts) {
|
|
@@ -53,8 +53,8 @@ let BackupInUseException$1 = class BackupInUseException extends DynamoDBServiceE
|
|
|
53
53
|
});
|
|
54
54
|
Object.setPrototypeOf(this, BackupInUseException.prototype);
|
|
55
55
|
}
|
|
56
|
-
}
|
|
57
|
-
|
|
56
|
+
}
|
|
57
|
+
class BackupNotFoundException extends DynamoDBServiceException {
|
|
58
58
|
name = "BackupNotFoundException";
|
|
59
59
|
$fault = "client";
|
|
60
60
|
constructor(opts) {
|
|
@@ -65,8 +65,8 @@ let BackupNotFoundException$1 = class BackupNotFoundException extends DynamoDBSe
|
|
|
65
65
|
});
|
|
66
66
|
Object.setPrototypeOf(this, BackupNotFoundException.prototype);
|
|
67
67
|
}
|
|
68
|
-
}
|
|
69
|
-
|
|
68
|
+
}
|
|
69
|
+
class InternalServerError extends DynamoDBServiceException {
|
|
70
70
|
name = "InternalServerError";
|
|
71
71
|
$fault = "server";
|
|
72
72
|
constructor(opts) {
|
|
@@ -77,8 +77,8 @@ let InternalServerError$1 = class InternalServerError extends DynamoDBServiceExc
|
|
|
77
77
|
});
|
|
78
78
|
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
79
79
|
}
|
|
80
|
-
}
|
|
81
|
-
|
|
80
|
+
}
|
|
81
|
+
class RequestLimitExceeded extends DynamoDBServiceException {
|
|
82
82
|
name = "RequestLimitExceeded";
|
|
83
83
|
$fault = "client";
|
|
84
84
|
ThrottlingReasons;
|
|
@@ -91,8 +91,8 @@ let RequestLimitExceeded$1 = class RequestLimitExceeded extends DynamoDBServiceE
|
|
|
91
91
|
Object.setPrototypeOf(this, RequestLimitExceeded.prototype);
|
|
92
92
|
this.ThrottlingReasons = opts.ThrottlingReasons;
|
|
93
93
|
}
|
|
94
|
-
}
|
|
95
|
-
|
|
94
|
+
}
|
|
95
|
+
class ThrottlingException extends DynamoDBServiceException {
|
|
96
96
|
name = "ThrottlingException";
|
|
97
97
|
$fault = "client";
|
|
98
98
|
throttlingReasons;
|
|
@@ -105,8 +105,8 @@ let ThrottlingException$1 = class ThrottlingException extends DynamoDBServiceExc
|
|
|
105
105
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
106
106
|
this.throttlingReasons = opts.throttlingReasons;
|
|
107
107
|
}
|
|
108
|
-
}
|
|
109
|
-
|
|
108
|
+
}
|
|
109
|
+
class InvalidEndpointException extends DynamoDBServiceException {
|
|
110
110
|
name = "InvalidEndpointException";
|
|
111
111
|
$fault = "client";
|
|
112
112
|
Message;
|
|
@@ -119,8 +119,8 @@ let InvalidEndpointException$1 = class InvalidEndpointException extends DynamoDB
|
|
|
119
119
|
Object.setPrototypeOf(this, InvalidEndpointException.prototype);
|
|
120
120
|
this.Message = opts.Message;
|
|
121
121
|
}
|
|
122
|
-
}
|
|
123
|
-
|
|
122
|
+
}
|
|
123
|
+
class ProvisionedThroughputExceededException extends DynamoDBServiceException {
|
|
124
124
|
name = "ProvisionedThroughputExceededException";
|
|
125
125
|
$fault = "client";
|
|
126
126
|
ThrottlingReasons;
|
|
@@ -133,8 +133,8 @@ let ProvisionedThroughputExceededException$1 = class ProvisionedThroughputExceed
|
|
|
133
133
|
Object.setPrototypeOf(this, ProvisionedThroughputExceededException.prototype);
|
|
134
134
|
this.ThrottlingReasons = opts.ThrottlingReasons;
|
|
135
135
|
}
|
|
136
|
-
}
|
|
137
|
-
|
|
136
|
+
}
|
|
137
|
+
class ResourceNotFoundException extends DynamoDBServiceException {
|
|
138
138
|
name = "ResourceNotFoundException";
|
|
139
139
|
$fault = "client";
|
|
140
140
|
constructor(opts) {
|
|
@@ -145,8 +145,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Dynamo
|
|
|
145
145
|
});
|
|
146
146
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
147
147
|
}
|
|
148
|
-
}
|
|
149
|
-
|
|
148
|
+
}
|
|
149
|
+
class ItemCollectionSizeLimitExceededException extends DynamoDBServiceException {
|
|
150
150
|
name = "ItemCollectionSizeLimitExceededException";
|
|
151
151
|
$fault = "client";
|
|
152
152
|
constructor(opts) {
|
|
@@ -157,8 +157,8 @@ let ItemCollectionSizeLimitExceededException$1 = class ItemCollectionSizeLimitEx
|
|
|
157
157
|
});
|
|
158
158
|
Object.setPrototypeOf(this, ItemCollectionSizeLimitExceededException.prototype);
|
|
159
159
|
}
|
|
160
|
-
}
|
|
161
|
-
|
|
160
|
+
}
|
|
161
|
+
class ReplicatedWriteConflictException extends DynamoDBServiceException {
|
|
162
162
|
name = "ReplicatedWriteConflictException";
|
|
163
163
|
$fault = "client";
|
|
164
164
|
$retryable = {};
|
|
@@ -170,8 +170,8 @@ let ReplicatedWriteConflictException$1 = class ReplicatedWriteConflictException
|
|
|
170
170
|
});
|
|
171
171
|
Object.setPrototypeOf(this, ReplicatedWriteConflictException.prototype);
|
|
172
172
|
}
|
|
173
|
-
}
|
|
174
|
-
|
|
173
|
+
}
|
|
174
|
+
class ContinuousBackupsUnavailableException extends DynamoDBServiceException {
|
|
175
175
|
name = "ContinuousBackupsUnavailableException";
|
|
176
176
|
$fault = "client";
|
|
177
177
|
constructor(opts) {
|
|
@@ -182,8 +182,8 @@ let ContinuousBackupsUnavailableException$1 = class ContinuousBackupsUnavailable
|
|
|
182
182
|
});
|
|
183
183
|
Object.setPrototypeOf(this, ContinuousBackupsUnavailableException.prototype);
|
|
184
184
|
}
|
|
185
|
-
}
|
|
186
|
-
|
|
185
|
+
}
|
|
186
|
+
class LimitExceededException extends DynamoDBServiceException {
|
|
187
187
|
name = "LimitExceededException";
|
|
188
188
|
$fault = "client";
|
|
189
189
|
constructor(opts) {
|
|
@@ -194,8 +194,8 @@ let LimitExceededException$1 = class LimitExceededException extends DynamoDBServ
|
|
|
194
194
|
});
|
|
195
195
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
196
196
|
}
|
|
197
|
-
}
|
|
198
|
-
|
|
197
|
+
}
|
|
198
|
+
class TableInUseException extends DynamoDBServiceException {
|
|
199
199
|
name = "TableInUseException";
|
|
200
200
|
$fault = "client";
|
|
201
201
|
constructor(opts) {
|
|
@@ -206,8 +206,8 @@ let TableInUseException$1 = class TableInUseException extends DynamoDBServiceExc
|
|
|
206
206
|
});
|
|
207
207
|
Object.setPrototypeOf(this, TableInUseException.prototype);
|
|
208
208
|
}
|
|
209
|
-
}
|
|
210
|
-
|
|
209
|
+
}
|
|
210
|
+
class TableNotFoundException extends DynamoDBServiceException {
|
|
211
211
|
name = "TableNotFoundException";
|
|
212
212
|
$fault = "client";
|
|
213
213
|
constructor(opts) {
|
|
@@ -218,8 +218,8 @@ let TableNotFoundException$1 = class TableNotFoundException extends DynamoDBServ
|
|
|
218
218
|
});
|
|
219
219
|
Object.setPrototypeOf(this, TableNotFoundException.prototype);
|
|
220
220
|
}
|
|
221
|
-
}
|
|
222
|
-
|
|
221
|
+
}
|
|
222
|
+
class GlobalTableAlreadyExistsException extends DynamoDBServiceException {
|
|
223
223
|
name = "GlobalTableAlreadyExistsException";
|
|
224
224
|
$fault = "client";
|
|
225
225
|
constructor(opts) {
|
|
@@ -230,8 +230,8 @@ let GlobalTableAlreadyExistsException$1 = class GlobalTableAlreadyExistsExceptio
|
|
|
230
230
|
});
|
|
231
231
|
Object.setPrototypeOf(this, GlobalTableAlreadyExistsException.prototype);
|
|
232
232
|
}
|
|
233
|
-
}
|
|
234
|
-
|
|
233
|
+
}
|
|
234
|
+
class ResourceInUseException extends DynamoDBServiceException {
|
|
235
235
|
name = "ResourceInUseException";
|
|
236
236
|
$fault = "client";
|
|
237
237
|
constructor(opts) {
|
|
@@ -242,8 +242,8 @@ let ResourceInUseException$1 = class ResourceInUseException extends DynamoDBServ
|
|
|
242
242
|
});
|
|
243
243
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
244
244
|
}
|
|
245
|
-
}
|
|
246
|
-
|
|
245
|
+
}
|
|
246
|
+
class TransactionConflictException extends DynamoDBServiceException {
|
|
247
247
|
name = "TransactionConflictException";
|
|
248
248
|
$fault = "client";
|
|
249
249
|
constructor(opts) {
|
|
@@ -254,8 +254,8 @@ let TransactionConflictException$1 = class TransactionConflictException extends
|
|
|
254
254
|
});
|
|
255
255
|
Object.setPrototypeOf(this, TransactionConflictException.prototype);
|
|
256
256
|
}
|
|
257
|
-
}
|
|
258
|
-
|
|
257
|
+
}
|
|
258
|
+
class PolicyNotFoundException extends DynamoDBServiceException {
|
|
259
259
|
name = "PolicyNotFoundException";
|
|
260
260
|
$fault = "client";
|
|
261
261
|
constructor(opts) {
|
|
@@ -266,8 +266,8 @@ let PolicyNotFoundException$1 = class PolicyNotFoundException extends DynamoDBSe
|
|
|
266
266
|
});
|
|
267
267
|
Object.setPrototypeOf(this, PolicyNotFoundException.prototype);
|
|
268
268
|
}
|
|
269
|
-
}
|
|
270
|
-
|
|
269
|
+
}
|
|
270
|
+
class ExportNotFoundException extends DynamoDBServiceException {
|
|
271
271
|
name = "ExportNotFoundException";
|
|
272
272
|
$fault = "client";
|
|
273
273
|
constructor(opts) {
|
|
@@ -278,8 +278,8 @@ let ExportNotFoundException$1 = class ExportNotFoundException extends DynamoDBSe
|
|
|
278
278
|
});
|
|
279
279
|
Object.setPrototypeOf(this, ExportNotFoundException.prototype);
|
|
280
280
|
}
|
|
281
|
-
}
|
|
282
|
-
|
|
281
|
+
}
|
|
282
|
+
class GlobalTableNotFoundException extends DynamoDBServiceException {
|
|
283
283
|
name = "GlobalTableNotFoundException";
|
|
284
284
|
$fault = "client";
|
|
285
285
|
constructor(opts) {
|
|
@@ -290,8 +290,8 @@ let GlobalTableNotFoundException$1 = class GlobalTableNotFoundException extends
|
|
|
290
290
|
});
|
|
291
291
|
Object.setPrototypeOf(this, GlobalTableNotFoundException.prototype);
|
|
292
292
|
}
|
|
293
|
-
}
|
|
294
|
-
|
|
293
|
+
}
|
|
294
|
+
class ImportNotFoundException extends DynamoDBServiceException {
|
|
295
295
|
name = "ImportNotFoundException";
|
|
296
296
|
$fault = "client";
|
|
297
297
|
constructor(opts) {
|
|
@@ -302,8 +302,8 @@ let ImportNotFoundException$1 = class ImportNotFoundException extends DynamoDBSe
|
|
|
302
302
|
});
|
|
303
303
|
Object.setPrototypeOf(this, ImportNotFoundException.prototype);
|
|
304
304
|
}
|
|
305
|
-
}
|
|
306
|
-
|
|
305
|
+
}
|
|
306
|
+
class DuplicateItemException extends DynamoDBServiceException {
|
|
307
307
|
name = "DuplicateItemException";
|
|
308
308
|
$fault = "client";
|
|
309
309
|
constructor(opts) {
|
|
@@ -314,8 +314,8 @@ let DuplicateItemException$1 = class DuplicateItemException extends DynamoDBServ
|
|
|
314
314
|
});
|
|
315
315
|
Object.setPrototypeOf(this, DuplicateItemException.prototype);
|
|
316
316
|
}
|
|
317
|
-
}
|
|
318
|
-
|
|
317
|
+
}
|
|
318
|
+
class IdempotentParameterMismatchException extends DynamoDBServiceException {
|
|
319
319
|
name = "IdempotentParameterMismatchException";
|
|
320
320
|
$fault = "client";
|
|
321
321
|
Message;
|
|
@@ -328,8 +328,8 @@ let IdempotentParameterMismatchException$1 = class IdempotentParameterMismatchEx
|
|
|
328
328
|
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
329
329
|
this.Message = opts.Message;
|
|
330
330
|
}
|
|
331
|
-
}
|
|
332
|
-
|
|
331
|
+
}
|
|
332
|
+
class TransactionInProgressException extends DynamoDBServiceException {
|
|
333
333
|
name = "TransactionInProgressException";
|
|
334
334
|
$fault = "client";
|
|
335
335
|
Message;
|
|
@@ -342,8 +342,8 @@ let TransactionInProgressException$1 = class TransactionInProgressException exte
|
|
|
342
342
|
Object.setPrototypeOf(this, TransactionInProgressException.prototype);
|
|
343
343
|
this.Message = opts.Message;
|
|
344
344
|
}
|
|
345
|
-
}
|
|
346
|
-
|
|
345
|
+
}
|
|
346
|
+
class ExportConflictException extends DynamoDBServiceException {
|
|
347
347
|
name = "ExportConflictException";
|
|
348
348
|
$fault = "client";
|
|
349
349
|
constructor(opts) {
|
|
@@ -354,8 +354,8 @@ let ExportConflictException$1 = class ExportConflictException extends DynamoDBSe
|
|
|
354
354
|
});
|
|
355
355
|
Object.setPrototypeOf(this, ExportConflictException.prototype);
|
|
356
356
|
}
|
|
357
|
-
}
|
|
358
|
-
|
|
357
|
+
}
|
|
358
|
+
class InvalidExportTimeException extends DynamoDBServiceException {
|
|
359
359
|
name = "InvalidExportTimeException";
|
|
360
360
|
$fault = "client";
|
|
361
361
|
constructor(opts) {
|
|
@@ -366,8 +366,8 @@ let InvalidExportTimeException$1 = class InvalidExportTimeException extends Dyna
|
|
|
366
366
|
});
|
|
367
367
|
Object.setPrototypeOf(this, InvalidExportTimeException.prototype);
|
|
368
368
|
}
|
|
369
|
-
}
|
|
370
|
-
|
|
369
|
+
}
|
|
370
|
+
class PointInTimeRecoveryUnavailableException extends DynamoDBServiceException {
|
|
371
371
|
name = "PointInTimeRecoveryUnavailableException";
|
|
372
372
|
$fault = "client";
|
|
373
373
|
constructor(opts) {
|
|
@@ -378,8 +378,8 @@ let PointInTimeRecoveryUnavailableException$1 = class PointInTimeRecoveryUnavail
|
|
|
378
378
|
});
|
|
379
379
|
Object.setPrototypeOf(this, PointInTimeRecoveryUnavailableException.prototype);
|
|
380
380
|
}
|
|
381
|
-
}
|
|
382
|
-
|
|
381
|
+
}
|
|
382
|
+
class ImportConflictException extends DynamoDBServiceException {
|
|
383
383
|
name = "ImportConflictException";
|
|
384
384
|
$fault = "client";
|
|
385
385
|
constructor(opts) {
|
|
@@ -390,8 +390,8 @@ let ImportConflictException$1 = class ImportConflictException extends DynamoDBSe
|
|
|
390
390
|
});
|
|
391
391
|
Object.setPrototypeOf(this, ImportConflictException.prototype);
|
|
392
392
|
}
|
|
393
|
-
}
|
|
394
|
-
|
|
393
|
+
}
|
|
394
|
+
class TableAlreadyExistsException extends DynamoDBServiceException {
|
|
395
395
|
name = "TableAlreadyExistsException";
|
|
396
396
|
$fault = "client";
|
|
397
397
|
constructor(opts) {
|
|
@@ -402,8 +402,8 @@ let TableAlreadyExistsException$1 = class TableAlreadyExistsException extends Dy
|
|
|
402
402
|
});
|
|
403
403
|
Object.setPrototypeOf(this, TableAlreadyExistsException.prototype);
|
|
404
404
|
}
|
|
405
|
-
}
|
|
406
|
-
|
|
405
|
+
}
|
|
406
|
+
class InvalidRestoreTimeException extends DynamoDBServiceException {
|
|
407
407
|
name = "InvalidRestoreTimeException";
|
|
408
408
|
$fault = "client";
|
|
409
409
|
constructor(opts) {
|
|
@@ -414,8 +414,8 @@ let InvalidRestoreTimeException$1 = class InvalidRestoreTimeException extends Dy
|
|
|
414
414
|
});
|
|
415
415
|
Object.setPrototypeOf(this, InvalidRestoreTimeException.prototype);
|
|
416
416
|
}
|
|
417
|
-
}
|
|
418
|
-
|
|
417
|
+
}
|
|
418
|
+
class ReplicaAlreadyExistsException extends DynamoDBServiceException {
|
|
419
419
|
name = "ReplicaAlreadyExistsException";
|
|
420
420
|
$fault = "client";
|
|
421
421
|
constructor(opts) {
|
|
@@ -426,8 +426,8 @@ let ReplicaAlreadyExistsException$1 = class ReplicaAlreadyExistsException extend
|
|
|
426
426
|
});
|
|
427
427
|
Object.setPrototypeOf(this, ReplicaAlreadyExistsException.prototype);
|
|
428
428
|
}
|
|
429
|
-
}
|
|
430
|
-
|
|
429
|
+
}
|
|
430
|
+
class ReplicaNotFoundException extends DynamoDBServiceException {
|
|
431
431
|
name = "ReplicaNotFoundException";
|
|
432
432
|
$fault = "client";
|
|
433
433
|
constructor(opts) {
|
|
@@ -438,8 +438,8 @@ let ReplicaNotFoundException$1 = class ReplicaNotFoundException extends DynamoDB
|
|
|
438
438
|
});
|
|
439
439
|
Object.setPrototypeOf(this, ReplicaNotFoundException.prototype);
|
|
440
440
|
}
|
|
441
|
-
}
|
|
442
|
-
|
|
441
|
+
}
|
|
442
|
+
class IndexNotFoundException extends DynamoDBServiceException {
|
|
443
443
|
name = "IndexNotFoundException";
|
|
444
444
|
$fault = "client";
|
|
445
445
|
constructor(opts) {
|
|
@@ -450,8 +450,8 @@ let IndexNotFoundException$1 = class IndexNotFoundException extends DynamoDBServ
|
|
|
450
450
|
});
|
|
451
451
|
Object.setPrototypeOf(this, IndexNotFoundException.prototype);
|
|
452
452
|
}
|
|
453
|
-
}
|
|
454
|
-
|
|
453
|
+
}
|
|
454
|
+
class ConditionalCheckFailedException extends DynamoDBServiceException {
|
|
455
455
|
name = "ConditionalCheckFailedException";
|
|
456
456
|
$fault = "client";
|
|
457
457
|
Item;
|
|
@@ -464,8 +464,8 @@ let ConditionalCheckFailedException$1 = class ConditionalCheckFailedException ex
|
|
|
464
464
|
Object.setPrototypeOf(this, ConditionalCheckFailedException.prototype);
|
|
465
465
|
this.Item = opts.Item;
|
|
466
466
|
}
|
|
467
|
-
}
|
|
468
|
-
|
|
467
|
+
}
|
|
468
|
+
class TransactionCanceledException extends DynamoDBServiceException {
|
|
469
469
|
name = "TransactionCanceledException";
|
|
470
470
|
$fault = "client";
|
|
471
471
|
Message;
|
|
@@ -480,7 +480,7 @@ let TransactionCanceledException$1 = class TransactionCanceledException extends
|
|
|
480
480
|
this.Message = opts.Message;
|
|
481
481
|
this.CancellationReasons = opts.CancellationReasons;
|
|
482
482
|
}
|
|
483
|
-
}
|
|
483
|
+
}
|
|
484
484
|
|
|
485
485
|
const _A = "Action";
|
|
486
486
|
const _ABA = "ArchivalBackupArn";
|
|
@@ -1136,26 +1136,26 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.dynamodb";
|
|
|
1136
1136
|
const _tR = "throttlingReasons";
|
|
1137
1137
|
const _xacrsra = "x-amz-confirm-remove-self-resource-access";
|
|
1138
1138
|
const n0 = "com.amazonaws.dynamodb";
|
|
1139
|
-
var ArchivalSummary = [3, n0, _AS, 0, [_ADT, _AR, _ABA], [4, 0, 0]];
|
|
1140
|
-
var AttributeDefinition = [3, n0, _AD, 0, [_AN, _AT], [0, 0]];
|
|
1141
|
-
var AttributeValueUpdate = [3, n0, _AVU, 0, [_V, _A], [() => AttributeValue
|
|
1142
|
-
var AutoScalingPolicyDescription = [
|
|
1139
|
+
var ArchivalSummary$ = [3, n0, _AS, 0, [_ADT, _AR, _ABA], [4, 0, 0]];
|
|
1140
|
+
var AttributeDefinition$ = [3, n0, _AD, 0, [_AN, _AT], [0, 0]];
|
|
1141
|
+
var AttributeValueUpdate$ = [3, n0, _AVU, 0, [_V, _A], [() => AttributeValue$, 0]];
|
|
1142
|
+
var AutoScalingPolicyDescription$ = [
|
|
1143
1143
|
3,
|
|
1144
1144
|
n0,
|
|
1145
1145
|
_ASPD,
|
|
1146
1146
|
0,
|
|
1147
1147
|
[_PN, _TTSPC],
|
|
1148
|
-
[0, () => AutoScalingTargetTrackingScalingPolicyConfigurationDescription],
|
|
1148
|
+
[0, () => AutoScalingTargetTrackingScalingPolicyConfigurationDescription$],
|
|
1149
1149
|
];
|
|
1150
|
-
var AutoScalingPolicyUpdate = [
|
|
1150
|
+
var AutoScalingPolicyUpdate$ = [
|
|
1151
1151
|
3,
|
|
1152
1152
|
n0,
|
|
1153
1153
|
_ASPU,
|
|
1154
1154
|
0,
|
|
1155
1155
|
[_PN, _TTSPC],
|
|
1156
|
-
[0, () => AutoScalingTargetTrackingScalingPolicyConfigurationUpdate],
|
|
1156
|
+
[0, () => AutoScalingTargetTrackingScalingPolicyConfigurationUpdate$],
|
|
1157
1157
|
];
|
|
1158
|
-
var AutoScalingSettingsDescription = [
|
|
1158
|
+
var AutoScalingSettingsDescription$ = [
|
|
1159
1159
|
3,
|
|
1160
1160
|
n0,
|
|
1161
1161
|
_ASSD,
|
|
@@ -1163,15 +1163,15 @@ var AutoScalingSettingsDescription = [
|
|
|
1163
1163
|
[_MU, _MUa, _ASD, _ASRA, _SP],
|
|
1164
1164
|
[1, 1, 2, 0, () => AutoScalingPolicyDescriptionList],
|
|
1165
1165
|
];
|
|
1166
|
-
var AutoScalingSettingsUpdate = [
|
|
1166
|
+
var AutoScalingSettingsUpdate$ = [
|
|
1167
1167
|
3,
|
|
1168
1168
|
n0,
|
|
1169
1169
|
_ASSU,
|
|
1170
1170
|
0,
|
|
1171
1171
|
[_MU, _MUa, _ASD, _ASRA, _SPU],
|
|
1172
|
-
[1, 1, 2, 0, () => AutoScalingPolicyUpdate],
|
|
1172
|
+
[1, 1, 2, 0, () => AutoScalingPolicyUpdate$],
|
|
1173
1173
|
];
|
|
1174
|
-
var AutoScalingTargetTrackingScalingPolicyConfigurationDescription = [
|
|
1174
|
+
var AutoScalingTargetTrackingScalingPolicyConfigurationDescription$ = [
|
|
1175
1175
|
3,
|
|
1176
1176
|
n0,
|
|
1177
1177
|
_ASTTSPCD,
|
|
@@ -1179,7 +1179,7 @@ var AutoScalingTargetTrackingScalingPolicyConfigurationDescription = [
|
|
|
1179
1179
|
[_DSI, _SIC, _SOC, _TV],
|
|
1180
1180
|
[2, 1, 1, 1],
|
|
1181
1181
|
];
|
|
1182
|
-
var AutoScalingTargetTrackingScalingPolicyConfigurationUpdate = [
|
|
1182
|
+
var AutoScalingTargetTrackingScalingPolicyConfigurationUpdate$ = [
|
|
1183
1183
|
3,
|
|
1184
1184
|
n0,
|
|
1185
1185
|
_ASTTSPCU,
|
|
@@ -1187,15 +1187,15 @@ var AutoScalingTargetTrackingScalingPolicyConfigurationUpdate = [
|
|
|
1187
1187
|
[_DSI, _SIC, _SOC, _TV],
|
|
1188
1188
|
[2, 1, 1, 1],
|
|
1189
1189
|
];
|
|
1190
|
-
var BackupDescription = [
|
|
1190
|
+
var BackupDescription$ = [
|
|
1191
1191
|
3,
|
|
1192
1192
|
n0,
|
|
1193
1193
|
_BD,
|
|
1194
1194
|
0,
|
|
1195
1195
|
[_BDa, _STD, _STFD],
|
|
1196
|
-
[() => BackupDetails
|
|
1196
|
+
[() => BackupDetails$, () => SourceTableDetails$, () => SourceTableFeatureDetails$],
|
|
1197
1197
|
];
|
|
1198
|
-
var BackupDetails = [
|
|
1198
|
+
var BackupDetails$ = [
|
|
1199
1199
|
3,
|
|
1200
1200
|
n0,
|
|
1201
1201
|
_BDa,
|
|
@@ -1203,11 +1203,11 @@ var BackupDetails = [
|
|
|
1203
1203
|
[_BA, _BN, _BSB, _BS, _BT, _BCDT, _BEDT],
|
|
1204
1204
|
[0, 0, 1, 0, 0, 4, 4],
|
|
1205
1205
|
];
|
|
1206
|
-
var BackupInUseException = [-3, n0, _BIUE, { [_e]: _c }, [_m], [0]];
|
|
1207
|
-
schema.TypeRegistry.for(n0).registerError(BackupInUseException
|
|
1208
|
-
var BackupNotFoundException = [-3, n0, _BNFE, { [_e]: _c }, [_m], [0]];
|
|
1209
|
-
schema.TypeRegistry.for(n0).registerError(BackupNotFoundException
|
|
1210
|
-
var BackupSummary = [
|
|
1206
|
+
var BackupInUseException$ = [-3, n0, _BIUE, { [_e]: _c }, [_m], [0]];
|
|
1207
|
+
schema.TypeRegistry.for(n0).registerError(BackupInUseException$, BackupInUseException);
|
|
1208
|
+
var BackupNotFoundException$ = [-3, n0, _BNFE, { [_e]: _c }, [_m], [0]];
|
|
1209
|
+
schema.TypeRegistry.for(n0).registerError(BackupNotFoundException$, BackupNotFoundException);
|
|
1210
|
+
var BackupSummary$ = [
|
|
1211
1211
|
3,
|
|
1212
1212
|
n0,
|
|
1213
1213
|
_BSa,
|
|
@@ -1215,7 +1215,7 @@ var BackupSummary = [
|
|
|
1215
1215
|
[_TN, _TI, _TA, _BA, _BN, _BCDT, _BEDT, _BS, _BT, _BSB],
|
|
1216
1216
|
[0, 0, 0, 0, 0, 4, 4, 0, 0, 1],
|
|
1217
1217
|
];
|
|
1218
|
-
var BatchExecuteStatementInput = [
|
|
1218
|
+
var BatchExecuteStatementInput$ = [
|
|
1219
1219
|
3,
|
|
1220
1220
|
n0,
|
|
1221
1221
|
_BESI,
|
|
@@ -1223,7 +1223,7 @@ var BatchExecuteStatementInput = [
|
|
|
1223
1223
|
[_S, _RCC],
|
|
1224
1224
|
[() => PartiQLBatchRequest, 0],
|
|
1225
1225
|
];
|
|
1226
|
-
var BatchExecuteStatementOutput = [
|
|
1226
|
+
var BatchExecuteStatementOutput$ = [
|
|
1227
1227
|
3,
|
|
1228
1228
|
n0,
|
|
1229
1229
|
_BESO,
|
|
@@ -1231,8 +1231,8 @@ var BatchExecuteStatementOutput = [
|
|
|
1231
1231
|
[_R, _CC],
|
|
1232
1232
|
[() => PartiQLBatchResponse, () => ConsumedCapacityMultiple],
|
|
1233
1233
|
];
|
|
1234
|
-
var BatchGetItemInput = [3, n0, _BGII, 0, [_RI, _RCC], [() => BatchGetRequestMap, 0]];
|
|
1235
|
-
var BatchGetItemOutput = [
|
|
1234
|
+
var BatchGetItemInput$ = [3, n0, _BGII, 0, [_RI, _RCC], [() => BatchGetRequestMap, 0]];
|
|
1235
|
+
var BatchGetItemOutput$ = [
|
|
1236
1236
|
3,
|
|
1237
1237
|
n0,
|
|
1238
1238
|
_BGIO,
|
|
@@ -1240,8 +1240,8 @@ var BatchGetItemOutput = [
|
|
|
1240
1240
|
[_R, _UK, _CC],
|
|
1241
1241
|
[() => BatchGetResponseMap, () => BatchGetRequestMap, () => ConsumedCapacityMultiple],
|
|
1242
1242
|
];
|
|
1243
|
-
var BatchStatementError = [3, n0, _BSE, 0, [_C, _M, _I], [0, 0, () => AttributeMap]];
|
|
1244
|
-
var BatchStatementRequest = [
|
|
1243
|
+
var BatchStatementError$ = [3, n0, _BSE, 0, [_C, _M, _I], [0, 0, () => AttributeMap]];
|
|
1244
|
+
var BatchStatementRequest$ = [
|
|
1245
1245
|
3,
|
|
1246
1246
|
n0,
|
|
1247
1247
|
_BSR,
|
|
@@ -1249,15 +1249,15 @@ var BatchStatementRequest = [
|
|
|
1249
1249
|
[_St, _P, _CR, _RVOCCF],
|
|
1250
1250
|
[0, () => PreparedStatementParameters, 2, 0],
|
|
1251
1251
|
];
|
|
1252
|
-
var BatchStatementResponse = [
|
|
1252
|
+
var BatchStatementResponse$ = [
|
|
1253
1253
|
3,
|
|
1254
1254
|
n0,
|
|
1255
1255
|
_BSRa,
|
|
1256
1256
|
0,
|
|
1257
1257
|
[_E, _TN, _I],
|
|
1258
|
-
[() => BatchStatementError
|
|
1258
|
+
[() => BatchStatementError$, 0, () => AttributeMap],
|
|
1259
1259
|
];
|
|
1260
|
-
var BatchWriteItemInput = [
|
|
1260
|
+
var BatchWriteItemInput$ = [
|
|
1261
1261
|
3,
|
|
1262
1262
|
n0,
|
|
1263
1263
|
_BWII,
|
|
@@ -1265,7 +1265,7 @@ var BatchWriteItemInput = [
|
|
|
1265
1265
|
[_RI, _RCC, _RICM],
|
|
1266
1266
|
[() => BatchWriteItemRequestMap, 0, 0],
|
|
1267
1267
|
];
|
|
1268
|
-
var BatchWriteItemOutput = [
|
|
1268
|
+
var BatchWriteItemOutput$ = [
|
|
1269
1269
|
3,
|
|
1270
1270
|
n0,
|
|
1271
1271
|
_BWIO,
|
|
@@ -1273,11 +1273,11 @@ var BatchWriteItemOutput = [
|
|
|
1273
1273
|
[_UI, _ICM, _CC],
|
|
1274
1274
|
[() => BatchWriteItemRequestMap, () => ItemCollectionMetricsPerTable, () => ConsumedCapacityMultiple],
|
|
1275
1275
|
];
|
|
1276
|
-
var BillingModeSummary = [3, n0, _BMS, 0, [_BM, _LUTPPRDT], [0, 4]];
|
|
1277
|
-
var CancellationReason = [3, n0, _CRa, 0, [_I, _C, _M], [() => AttributeMap, 0, 0]];
|
|
1278
|
-
var Capacity = [3, n0, _Ca, 0, [_RCU, _WCU, _CU], [1, 1, 1]];
|
|
1279
|
-
var Condition = [3, n0, _Co, 0, [_AVL, _CO], [() => AttributeValueList, 0]];
|
|
1280
|
-
var ConditionalCheckFailedException = [
|
|
1276
|
+
var BillingModeSummary$ = [3, n0, _BMS, 0, [_BM, _LUTPPRDT], [0, 4]];
|
|
1277
|
+
var CancellationReason$ = [3, n0, _CRa, 0, [_I, _C, _M], [() => AttributeMap, 0, 0]];
|
|
1278
|
+
var Capacity$ = [3, n0, _Ca, 0, [_RCU, _WCU, _CU], [1, 1, 1]];
|
|
1279
|
+
var Condition$ = [3, n0, _Co, 0, [_AVL, _CO], [() => AttributeValueList, 0]];
|
|
1280
|
+
var ConditionalCheckFailedException$ = [
|
|
1281
1281
|
-3,
|
|
1282
1282
|
n0,
|
|
1283
1283
|
_CCFE,
|
|
@@ -1285,8 +1285,8 @@ var ConditionalCheckFailedException = [
|
|
|
1285
1285
|
[_m, _I],
|
|
1286
1286
|
[0, () => AttributeMap],
|
|
1287
1287
|
];
|
|
1288
|
-
schema.TypeRegistry.for(n0).registerError(ConditionalCheckFailedException
|
|
1289
|
-
var ConditionCheck = [
|
|
1288
|
+
schema.TypeRegistry.for(n0).registerError(ConditionalCheckFailedException$, ConditionalCheckFailedException);
|
|
1289
|
+
var ConditionCheck$ = [
|
|
1290
1290
|
3,
|
|
1291
1291
|
n0,
|
|
1292
1292
|
_CCo,
|
|
@@ -1294,40 +1294,47 @@ var ConditionCheck = [
|
|
|
1294
1294
|
[_K, _TN, _CE, _EAN, _EAV, _RVOCCF],
|
|
1295
1295
|
[() => Key, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0],
|
|
1296
1296
|
];
|
|
1297
|
-
var ConsumedCapacity = [
|
|
1297
|
+
var ConsumedCapacity$ = [
|
|
1298
1298
|
3,
|
|
1299
1299
|
n0,
|
|
1300
1300
|
_CC,
|
|
1301
1301
|
0,
|
|
1302
1302
|
[_TN, _CU, _RCU, _WCU, _T, _LSI, _GSI],
|
|
1303
|
-
[0, 1, 1, 1, () => Capacity
|
|
1303
|
+
[0, 1, 1, 1, () => Capacity$, () => SecondaryIndexesCapacityMap, () => SecondaryIndexesCapacityMap],
|
|
1304
1304
|
];
|
|
1305
|
-
var ContinuousBackupsDescription = [
|
|
1305
|
+
var ContinuousBackupsDescription$ = [
|
|
1306
1306
|
3,
|
|
1307
1307
|
n0,
|
|
1308
1308
|
_CBD,
|
|
1309
1309
|
0,
|
|
1310
1310
|
[_CBS, _PITRD],
|
|
1311
|
-
[0, () => PointInTimeRecoveryDescription],
|
|
1312
|
-
];
|
|
1313
|
-
var ContinuousBackupsUnavailableException = [-3, n0, _CBUE, { [_e]: _c }, [_m], [0]];
|
|
1314
|
-
schema.TypeRegistry.for(n0).registerError(ContinuousBackupsUnavailableException
|
|
1315
|
-
var ContributorInsightsSummary = [3, n0, _CIS, 0, [_TN, _IN, _CISo, _CIM], [0, 0, 0, 0]];
|
|
1316
|
-
var CreateBackupInput = [3, n0, _CBI, 0, [_TN, _BN], [0, 0]];
|
|
1317
|
-
var CreateBackupOutput = [3, n0, _CBO, 0, [_BDa], [() => BackupDetails]];
|
|
1318
|
-
var CreateGlobalSecondaryIndexAction = [
|
|
1311
|
+
[0, () => PointInTimeRecoveryDescription$],
|
|
1312
|
+
];
|
|
1313
|
+
var ContinuousBackupsUnavailableException$ = [-3, n0, _CBUE, { [_e]: _c }, [_m], [0]];
|
|
1314
|
+
schema.TypeRegistry.for(n0).registerError(ContinuousBackupsUnavailableException$, ContinuousBackupsUnavailableException);
|
|
1315
|
+
var ContributorInsightsSummary$ = [3, n0, _CIS, 0, [_TN, _IN, _CISo, _CIM], [0, 0, 0, 0]];
|
|
1316
|
+
var CreateBackupInput$ = [3, n0, _CBI, 0, [_TN, _BN], [0, 0]];
|
|
1317
|
+
var CreateBackupOutput$ = [3, n0, _CBO, 0, [_BDa], [() => BackupDetails$]];
|
|
1318
|
+
var CreateGlobalSecondaryIndexAction$ = [
|
|
1319
1319
|
3,
|
|
1320
1320
|
n0,
|
|
1321
1321
|
_CGSIA,
|
|
1322
1322
|
0,
|
|
1323
1323
|
[_IN, _KS, _Pr, _PT, _ODT, _WT],
|
|
1324
|
-
[
|
|
1324
|
+
[
|
|
1325
|
+
0,
|
|
1326
|
+
() => KeySchema,
|
|
1327
|
+
() => Projection$,
|
|
1328
|
+
() => ProvisionedThroughput$,
|
|
1329
|
+
() => OnDemandThroughput$,
|
|
1330
|
+
() => WarmThroughput$,
|
|
1331
|
+
],
|
|
1325
1332
|
];
|
|
1326
|
-
var CreateGlobalTableInput = [3, n0, _CGTI, 0, [_GTN, _RG], [0, () => ReplicaList]];
|
|
1327
|
-
var CreateGlobalTableOutput = [3, n0, _CGTO, 0, [_GTD], [() => GlobalTableDescription]];
|
|
1328
|
-
var CreateGlobalTableWitnessGroupMemberAction = [3, n0, _CGTWGMA, 0, [_RN], [0]];
|
|
1329
|
-
var CreateReplicaAction = [3, n0, _CRA, 0, [_RN], [0]];
|
|
1330
|
-
var CreateReplicationGroupMemberAction = [
|
|
1333
|
+
var CreateGlobalTableInput$ = [3, n0, _CGTI, 0, [_GTN, _RG], [0, () => ReplicaList]];
|
|
1334
|
+
var CreateGlobalTableOutput$ = [3, n0, _CGTO, 0, [_GTD], [() => GlobalTableDescription$]];
|
|
1335
|
+
var CreateGlobalTableWitnessGroupMemberAction$ = [3, n0, _CGTWGMA, 0, [_RN], [0]];
|
|
1336
|
+
var CreateReplicaAction$ = [3, n0, _CRA, 0, [_RN], [0]];
|
|
1337
|
+
var CreateReplicationGroupMemberAction$ = [
|
|
1331
1338
|
3,
|
|
1332
1339
|
n0,
|
|
1333
1340
|
_CRGMA,
|
|
@@ -1336,13 +1343,13 @@ var CreateReplicationGroupMemberAction = [
|
|
|
1336
1343
|
[
|
|
1337
1344
|
0,
|
|
1338
1345
|
0,
|
|
1339
|
-
() => ProvisionedThroughputOverride
|
|
1340
|
-
() => OnDemandThroughputOverride
|
|
1346
|
+
() => ProvisionedThroughputOverride$,
|
|
1347
|
+
() => OnDemandThroughputOverride$,
|
|
1341
1348
|
() => ReplicaGlobalSecondaryIndexList,
|
|
1342
1349
|
0,
|
|
1343
1350
|
],
|
|
1344
1351
|
];
|
|
1345
|
-
var CreateTableInput = [
|
|
1352
|
+
var CreateTableInput$ = [
|
|
1346
1353
|
3,
|
|
1347
1354
|
n0,
|
|
1348
1355
|
_CTI,
|
|
@@ -1355,20 +1362,20 @@ var CreateTableInput = [
|
|
|
1355
1362
|
() => LocalSecondaryIndexList,
|
|
1356
1363
|
() => GlobalSecondaryIndexList,
|
|
1357
1364
|
0,
|
|
1358
|
-
() => ProvisionedThroughput
|
|
1359
|
-
() => StreamSpecification
|
|
1360
|
-
() => SSESpecification
|
|
1365
|
+
() => ProvisionedThroughput$,
|
|
1366
|
+
() => StreamSpecification$,
|
|
1367
|
+
() => SSESpecification$,
|
|
1361
1368
|
() => TagList,
|
|
1362
1369
|
0,
|
|
1363
1370
|
2,
|
|
1364
|
-
() => WarmThroughput
|
|
1371
|
+
() => WarmThroughput$,
|
|
1365
1372
|
0,
|
|
1366
|
-
() => OnDemandThroughput
|
|
1373
|
+
() => OnDemandThroughput$,
|
|
1367
1374
|
],
|
|
1368
1375
|
];
|
|
1369
|
-
var CreateTableOutput = [3, n0, _CTO, 0, [_TD], [() => TableDescription]];
|
|
1370
|
-
var CsvOptions = [3, n0, _COs, 0, [_D, _HL], [0, 64 | 0]];
|
|
1371
|
-
var Delete = [
|
|
1376
|
+
var CreateTableOutput$ = [3, n0, _CTO, 0, [_TD], [() => TableDescription$]];
|
|
1377
|
+
var CsvOptions$ = [3, n0, _COs, 0, [_D, _HL], [0, 64 | 0]];
|
|
1378
|
+
var Delete$ = [
|
|
1372
1379
|
3,
|
|
1373
1380
|
n0,
|
|
1374
1381
|
_De,
|
|
@@ -1376,11 +1383,11 @@ var Delete = [
|
|
|
1376
1383
|
[_K, _TN, _CE, _EAN, _EAV, _RVOCCF],
|
|
1377
1384
|
[() => Key, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0],
|
|
1378
1385
|
];
|
|
1379
|
-
var DeleteBackupInput = [3, n0, _DBI, 0, [_BA], [0]];
|
|
1380
|
-
var DeleteBackupOutput = [3, n0, _DBO, 0, [_BD], [() => BackupDescription]];
|
|
1381
|
-
var DeleteGlobalSecondaryIndexAction = [3, n0, _DGSIA, 0, [_IN], [0]];
|
|
1382
|
-
var DeleteGlobalTableWitnessGroupMemberAction = [3, n0, _DGTWGMA, 0, [_RN], [0]];
|
|
1383
|
-
var DeleteItemInput = [
|
|
1386
|
+
var DeleteBackupInput$ = [3, n0, _DBI, 0, [_BA], [0]];
|
|
1387
|
+
var DeleteBackupOutput$ = [3, n0, _DBO, 0, [_BD], [() => BackupDescription$]];
|
|
1388
|
+
var DeleteGlobalSecondaryIndexAction$ = [3, n0, _DGSIA, 0, [_IN], [0]];
|
|
1389
|
+
var DeleteGlobalTableWitnessGroupMemberAction$ = [3, n0, _DGTWGMA, 0, [_RN], [0]];
|
|
1390
|
+
var DeleteItemInput$ = [
|
|
1384
1391
|
3,
|
|
1385
1392
|
n0,
|
|
1386
1393
|
_DII,
|
|
@@ -1388,49 +1395,56 @@ var DeleteItemInput = [
|
|
|
1388
1395
|
[_TN, _K, _Ex, _COo, _RV, _RCC, _RICM, _CE, _EAN, _EAV, _RVOCCF],
|
|
1389
1396
|
[0, () => Key, () => ExpectedAttributeMap, 0, 0, 0, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0],
|
|
1390
1397
|
];
|
|
1391
|
-
var DeleteItemOutput = [
|
|
1398
|
+
var DeleteItemOutput$ = [
|
|
1392
1399
|
3,
|
|
1393
1400
|
n0,
|
|
1394
1401
|
_DIO,
|
|
1395
1402
|
0,
|
|
1396
1403
|
[_At, _CC, _ICM],
|
|
1397
|
-
[() => AttributeMap, () => ConsumedCapacity
|
|
1398
|
-
];
|
|
1399
|
-
var DeleteReplicaAction = [3, n0, _DRA, 0, [_RN], [0]];
|
|
1400
|
-
var DeleteReplicationGroupMemberAction = [3, n0, _DRGMA, 0, [_RN], [0]];
|
|
1401
|
-
var DeleteRequest = [3, n0, _DR, 0, [_K], [() => Key]];
|
|
1402
|
-
var DeleteResourcePolicyInput = [3, n0, _DRPI, 0, [_RA, _ERI], [0, 0]];
|
|
1403
|
-
var DeleteResourcePolicyOutput = [3, n0, _DRPO, 0, [_RIe], [0]];
|
|
1404
|
-
var DeleteTableInput = [3, n0, _DTI, 0, [_TN], [0]];
|
|
1405
|
-
var DeleteTableOutput = [3, n0, _DTO, 0, [_TD], [() => TableDescription]];
|
|
1406
|
-
var DescribeBackupInput = [3, n0, _DBIe, 0, [_BA], [0]];
|
|
1407
|
-
var DescribeBackupOutput = [3, n0, _DBOe, 0, [_BD], [() => BackupDescription]];
|
|
1408
|
-
var DescribeContinuousBackupsInput = [3, n0, _DCBI, 0, [_TN], [0]];
|
|
1409
|
-
var DescribeContinuousBackupsOutput = [
|
|
1404
|
+
[() => AttributeMap, () => ConsumedCapacity$, () => ItemCollectionMetrics$],
|
|
1405
|
+
];
|
|
1406
|
+
var DeleteReplicaAction$ = [3, n0, _DRA, 0, [_RN], [0]];
|
|
1407
|
+
var DeleteReplicationGroupMemberAction$ = [3, n0, _DRGMA, 0, [_RN], [0]];
|
|
1408
|
+
var DeleteRequest$ = [3, n0, _DR, 0, [_K], [() => Key]];
|
|
1409
|
+
var DeleteResourcePolicyInput$ = [3, n0, _DRPI, 0, [_RA, _ERI], [0, 0]];
|
|
1410
|
+
var DeleteResourcePolicyOutput$ = [3, n0, _DRPO, 0, [_RIe], [0]];
|
|
1411
|
+
var DeleteTableInput$ = [3, n0, _DTI, 0, [_TN], [0]];
|
|
1412
|
+
var DeleteTableOutput$ = [3, n0, _DTO, 0, [_TD], [() => TableDescription$]];
|
|
1413
|
+
var DescribeBackupInput$ = [3, n0, _DBIe, 0, [_BA], [0]];
|
|
1414
|
+
var DescribeBackupOutput$ = [3, n0, _DBOe, 0, [_BD], [() => BackupDescription$]];
|
|
1415
|
+
var DescribeContinuousBackupsInput$ = [3, n0, _DCBI, 0, [_TN], [0]];
|
|
1416
|
+
var DescribeContinuousBackupsOutput$ = [
|
|
1410
1417
|
3,
|
|
1411
1418
|
n0,
|
|
1412
1419
|
_DCBO,
|
|
1413
1420
|
0,
|
|
1414
1421
|
[_CBD],
|
|
1415
|
-
[() => ContinuousBackupsDescription],
|
|
1422
|
+
[() => ContinuousBackupsDescription$],
|
|
1416
1423
|
];
|
|
1417
|
-
var DescribeContributorInsightsInput = [3, n0, _DCII, 0, [_TN, _IN], [0, 0]];
|
|
1418
|
-
var DescribeContributorInsightsOutput = [
|
|
1424
|
+
var DescribeContributorInsightsInput$ = [3, n0, _DCII, 0, [_TN, _IN], [0, 0]];
|
|
1425
|
+
var DescribeContributorInsightsOutput$ = [
|
|
1419
1426
|
3,
|
|
1420
1427
|
n0,
|
|
1421
1428
|
_DCIO,
|
|
1422
1429
|
0,
|
|
1423
1430
|
[_TN, _IN, _CIRL, _CISo, _LUDT, _FE, _CIM],
|
|
1424
|
-
[0, 0, 64 | 0, 0, 4, () => FailureException
|
|
1425
|
-
];
|
|
1426
|
-
var DescribeEndpointsRequest = [3, n0, _DER, 0, [], []];
|
|
1427
|
-
var DescribeEndpointsResponse = [3, n0, _DERe, 0, [_En], [() => Endpoints]];
|
|
1428
|
-
var DescribeExportInput = [3, n0, _DEI, 0, [_EA], [0]];
|
|
1429
|
-
var DescribeExportOutput = [3, n0, _DEO, 0, [_ED], [() => ExportDescription]];
|
|
1430
|
-
var DescribeGlobalTableInput = [3, n0, _DGTI, 0, [_GTN], [0]];
|
|
1431
|
-
var DescribeGlobalTableOutput = [
|
|
1432
|
-
|
|
1433
|
-
|
|
1431
|
+
[0, 0, 64 | 0, 0, 4, () => FailureException$, 0],
|
|
1432
|
+
];
|
|
1433
|
+
var DescribeEndpointsRequest$ = [3, n0, _DER, 0, [], []];
|
|
1434
|
+
var DescribeEndpointsResponse$ = [3, n0, _DERe, 0, [_En], [() => Endpoints]];
|
|
1435
|
+
var DescribeExportInput$ = [3, n0, _DEI, 0, [_EA], [0]];
|
|
1436
|
+
var DescribeExportOutput$ = [3, n0, _DEO, 0, [_ED], [() => ExportDescription$]];
|
|
1437
|
+
var DescribeGlobalTableInput$ = [3, n0, _DGTI, 0, [_GTN], [0]];
|
|
1438
|
+
var DescribeGlobalTableOutput$ = [
|
|
1439
|
+
3,
|
|
1440
|
+
n0,
|
|
1441
|
+
_DGTO,
|
|
1442
|
+
0,
|
|
1443
|
+
[_GTD],
|
|
1444
|
+
[() => GlobalTableDescription$],
|
|
1445
|
+
];
|
|
1446
|
+
var DescribeGlobalTableSettingsInput$ = [3, n0, _DGTSI, 0, [_GTN], [0]];
|
|
1447
|
+
var DescribeGlobalTableSettingsOutput$ = [
|
|
1434
1448
|
3,
|
|
1435
1449
|
n0,
|
|
1436
1450
|
_DGTSO,
|
|
@@ -1438,10 +1452,10 @@ var DescribeGlobalTableSettingsOutput = [
|
|
|
1438
1452
|
[_GTN, _RS],
|
|
1439
1453
|
[0, () => ReplicaSettingsDescriptionList],
|
|
1440
1454
|
];
|
|
1441
|
-
var DescribeImportInput = [3, n0, _DIIe, 0, [_IA], [0]];
|
|
1442
|
-
var DescribeImportOutput = [3, n0, _DIOe, 0, [_ITD], [() => ImportTableDescription]];
|
|
1443
|
-
var DescribeKinesisStreamingDestinationInput = [3, n0, _DKSDI, 0, [_TN], [0]];
|
|
1444
|
-
var DescribeKinesisStreamingDestinationOutput = [
|
|
1455
|
+
var DescribeImportInput$ = [3, n0, _DIIe, 0, [_IA], [0]];
|
|
1456
|
+
var DescribeImportOutput$ = [3, n0, _DIOe, 0, [_ITD], [() => ImportTableDescription$]];
|
|
1457
|
+
var DescribeKinesisStreamingDestinationInput$ = [3, n0, _DKSDI, 0, [_TN], [0]];
|
|
1458
|
+
var DescribeKinesisStreamingDestinationOutput$ = [
|
|
1445
1459
|
3,
|
|
1446
1460
|
n0,
|
|
1447
1461
|
_DKSDO,
|
|
@@ -1449,8 +1463,8 @@ var DescribeKinesisStreamingDestinationOutput = [
|
|
|
1449
1463
|
[_TN, _KDSD],
|
|
1450
1464
|
[0, () => KinesisDataStreamDestinations],
|
|
1451
1465
|
];
|
|
1452
|
-
var DescribeLimitsInput = [3, n0, _DLI, 0, [], []];
|
|
1453
|
-
var DescribeLimitsOutput = [
|
|
1466
|
+
var DescribeLimitsInput$ = [3, n0, _DLI, 0, [], []];
|
|
1467
|
+
var DescribeLimitsOutput$ = [
|
|
1454
1468
|
3,
|
|
1455
1469
|
n0,
|
|
1456
1470
|
_DLO,
|
|
@@ -1458,24 +1472,31 @@ var DescribeLimitsOutput = [
|
|
|
1458
1472
|
[_AMRCU, _AMWCU, _TMRCU, _TMWCU],
|
|
1459
1473
|
[1, 1, 1, 1],
|
|
1460
1474
|
];
|
|
1461
|
-
var DescribeTableInput = [3, n0, _DTIe, 0, [_TN], [0]];
|
|
1462
|
-
var DescribeTableOutput = [3, n0, _DTOe, 0, [_T], [() => TableDescription]];
|
|
1463
|
-
var DescribeTableReplicaAutoScalingInput = [3, n0, _DTRASI, 0, [_TN], [0]];
|
|
1464
|
-
var DescribeTableReplicaAutoScalingOutput = [
|
|
1475
|
+
var DescribeTableInput$ = [3, n0, _DTIe, 0, [_TN], [0]];
|
|
1476
|
+
var DescribeTableOutput$ = [3, n0, _DTOe, 0, [_T], [() => TableDescription$]];
|
|
1477
|
+
var DescribeTableReplicaAutoScalingInput$ = [3, n0, _DTRASI, 0, [_TN], [0]];
|
|
1478
|
+
var DescribeTableReplicaAutoScalingOutput$ = [
|
|
1465
1479
|
3,
|
|
1466
1480
|
n0,
|
|
1467
1481
|
_DTRASO,
|
|
1468
1482
|
0,
|
|
1469
1483
|
[_TASD],
|
|
1470
|
-
[() => TableAutoScalingDescription],
|
|
1471
|
-
];
|
|
1472
|
-
var DescribeTimeToLiveInput = [3, n0, _DTTLI, 0, [_TN], [0]];
|
|
1473
|
-
var DescribeTimeToLiveOutput = [
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1484
|
+
[() => TableAutoScalingDescription$],
|
|
1485
|
+
];
|
|
1486
|
+
var DescribeTimeToLiveInput$ = [3, n0, _DTTLI, 0, [_TN], [0]];
|
|
1487
|
+
var DescribeTimeToLiveOutput$ = [
|
|
1488
|
+
3,
|
|
1489
|
+
n0,
|
|
1490
|
+
_DTTLO,
|
|
1491
|
+
0,
|
|
1492
|
+
[_TTLD],
|
|
1493
|
+
[() => TimeToLiveDescription$],
|
|
1494
|
+
];
|
|
1495
|
+
var DuplicateItemException$ = [-3, n0, _DIE, { [_e]: _c }, [_m], [0]];
|
|
1496
|
+
schema.TypeRegistry.for(n0).registerError(DuplicateItemException$, DuplicateItemException);
|
|
1497
|
+
var EnableKinesisStreamingConfiguration$ = [3, n0, _EKSC, 0, [_ACDTP], [0]];
|
|
1498
|
+
var Endpoint$ = [3, n0, _End, 0, [_Ad, _CPIM], [0, 1]];
|
|
1499
|
+
var ExecuteStatementInput$ = [
|
|
1479
1500
|
3,
|
|
1480
1501
|
n0,
|
|
1481
1502
|
_ESI,
|
|
@@ -1483,15 +1504,15 @@ var ExecuteStatementInput = [
|
|
|
1483
1504
|
[_St, _P, _CR, _NT, _RCC, _L, _RVOCCF],
|
|
1484
1505
|
[0, () => PreparedStatementParameters, 2, 0, 0, 1, 0],
|
|
1485
1506
|
];
|
|
1486
|
-
var ExecuteStatementOutput = [
|
|
1507
|
+
var ExecuteStatementOutput$ = [
|
|
1487
1508
|
3,
|
|
1488
1509
|
n0,
|
|
1489
1510
|
_ESO,
|
|
1490
1511
|
0,
|
|
1491
1512
|
[_It, _NT, _CC, _LEK],
|
|
1492
|
-
[() => ItemList, 0, () => ConsumedCapacity
|
|
1513
|
+
[() => ItemList, 0, () => ConsumedCapacity$, () => Key],
|
|
1493
1514
|
];
|
|
1494
|
-
var ExecuteTransactionInput = [
|
|
1515
|
+
var ExecuteTransactionInput$ = [
|
|
1495
1516
|
3,
|
|
1496
1517
|
n0,
|
|
1497
1518
|
_ETI,
|
|
@@ -1499,7 +1520,7 @@ var ExecuteTransactionInput = [
|
|
|
1499
1520
|
[_TS, _CRT, _RCC],
|
|
1500
1521
|
[() => ParameterizedStatements, [0, 4], 0],
|
|
1501
1522
|
];
|
|
1502
|
-
var ExecuteTransactionOutput = [
|
|
1523
|
+
var ExecuteTransactionOutput$ = [
|
|
1503
1524
|
3,
|
|
1504
1525
|
n0,
|
|
1505
1526
|
_ETO,
|
|
@@ -1507,46 +1528,46 @@ var ExecuteTransactionOutput = [
|
|
|
1507
1528
|
[_R, _CC],
|
|
1508
1529
|
[() => ItemResponseList, () => ConsumedCapacityMultiple],
|
|
1509
1530
|
];
|
|
1510
|
-
var ExpectedAttributeValue = [
|
|
1531
|
+
var ExpectedAttributeValue$ = [
|
|
1511
1532
|
3,
|
|
1512
1533
|
n0,
|
|
1513
1534
|
_EAVx,
|
|
1514
1535
|
0,
|
|
1515
1536
|
[_V, _Exi, _CO, _AVL],
|
|
1516
|
-
[() => AttributeValue
|
|
1537
|
+
[() => AttributeValue$, 2, 0, () => AttributeValueList],
|
|
1517
1538
|
];
|
|
1518
|
-
var ExportConflictException = [-3, n0, _ECE, { [_e]: _c }, [_m], [0]];
|
|
1519
|
-
schema.TypeRegistry.for(n0).registerError(ExportConflictException
|
|
1520
|
-
var ExportDescription = [
|
|
1539
|
+
var ExportConflictException$ = [-3, n0, _ECE, { [_e]: _c }, [_m], [0]];
|
|
1540
|
+
schema.TypeRegistry.for(n0).registerError(ExportConflictException$, ExportConflictException);
|
|
1541
|
+
var ExportDescription$ = [
|
|
1521
1542
|
3,
|
|
1522
1543
|
n0,
|
|
1523
1544
|
_ED,
|
|
1524
1545
|
0,
|
|
1525
1546
|
[_EA, _ES, _ST, _ET, _EM, _TA, _TI, _ETx, _CT, _SB, _SBO, _SPr, _SSA, _SSKKI, _FC, _FM, _EF, _BSBi, _IC, _ETxp, _IES],
|
|
1526
|
-
[0, 0, 4, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, () => IncrementalExportSpecification],
|
|
1547
|
+
[0, 0, 4, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, () => IncrementalExportSpecification$],
|
|
1527
1548
|
];
|
|
1528
|
-
var ExportNotFoundException = [-3, n0, _ENFE, { [_e]: _c }, [_m], [0]];
|
|
1529
|
-
schema.TypeRegistry.for(n0).registerError(ExportNotFoundException
|
|
1530
|
-
var ExportSummary = [3, n0, _ESx, 0, [_EA, _ES, _ETxp], [0, 0, 0]];
|
|
1531
|
-
var ExportTableToPointInTimeInput = [
|
|
1549
|
+
var ExportNotFoundException$ = [-3, n0, _ENFE, { [_e]: _c }, [_m], [0]];
|
|
1550
|
+
schema.TypeRegistry.for(n0).registerError(ExportNotFoundException$, ExportNotFoundException);
|
|
1551
|
+
var ExportSummary$ = [3, n0, _ESx, 0, [_EA, _ES, _ETxp], [0, 0, 0]];
|
|
1552
|
+
var ExportTableToPointInTimeInput$ = [
|
|
1532
1553
|
3,
|
|
1533
1554
|
n0,
|
|
1534
1555
|
_ETTPITI,
|
|
1535
1556
|
0,
|
|
1536
1557
|
[_TA, _ETx, _CT, _SB, _SBO, _SPr, _SSA, _SSKKI, _EF, _ETxp, _IES],
|
|
1537
|
-
[0, 4, [0, 4], 0, 0, 0, 0, 0, 0, 0, () => IncrementalExportSpecification],
|
|
1558
|
+
[0, 4, [0, 4], 0, 0, 0, 0, 0, 0, 0, () => IncrementalExportSpecification$],
|
|
1538
1559
|
];
|
|
1539
|
-
var ExportTableToPointInTimeOutput = [
|
|
1560
|
+
var ExportTableToPointInTimeOutput$ = [
|
|
1540
1561
|
3,
|
|
1541
1562
|
n0,
|
|
1542
1563
|
_ETTPITO,
|
|
1543
1564
|
0,
|
|
1544
1565
|
[_ED],
|
|
1545
|
-
[() => ExportDescription],
|
|
1566
|
+
[() => ExportDescription$],
|
|
1546
1567
|
];
|
|
1547
|
-
var FailureException = [3, n0, _FE, 0, [_EN, _EDx], [0, 0]];
|
|
1548
|
-
var Get = [3, n0, _G, 0, [_K, _TN, _PE, _EAN], [() => Key, 0, 0, 128 | 0]];
|
|
1549
|
-
var GetItemInput = [
|
|
1568
|
+
var FailureException$ = [3, n0, _FE, 0, [_EN, _EDx], [0, 0]];
|
|
1569
|
+
var Get$ = [3, n0, _G, 0, [_K, _TN, _PE, _EAN], [() => Key, 0, 0, 128 | 0]];
|
|
1570
|
+
var GetItemInput$ = [
|
|
1550
1571
|
3,
|
|
1551
1572
|
n0,
|
|
1552
1573
|
_GII,
|
|
@@ -1554,33 +1575,40 @@ var GetItemInput = [
|
|
|
1554
1575
|
[_TN, _K, _ATG, _CR, _RCC, _PE, _EAN],
|
|
1555
1576
|
[0, () => Key, 64 | 0, 2, 0, 0, 128 | 0],
|
|
1556
1577
|
];
|
|
1557
|
-
var GetItemOutput = [
|
|
1578
|
+
var GetItemOutput$ = [
|
|
1558
1579
|
3,
|
|
1559
1580
|
n0,
|
|
1560
1581
|
_GIO,
|
|
1561
1582
|
0,
|
|
1562
1583
|
[_I, _CC],
|
|
1563
|
-
[() => AttributeMap, () => ConsumedCapacity],
|
|
1584
|
+
[() => AttributeMap, () => ConsumedCapacity$],
|
|
1564
1585
|
];
|
|
1565
|
-
var GetResourcePolicyInput = [3, n0, _GRPI, 0, [_RA], [0]];
|
|
1566
|
-
var GetResourcePolicyOutput = [3, n0, _GRPO, 0, [_Po, _RIe], [0, 0]];
|
|
1567
|
-
var GlobalSecondaryIndex = [
|
|
1586
|
+
var GetResourcePolicyInput$ = [3, n0, _GRPI, 0, [_RA], [0]];
|
|
1587
|
+
var GetResourcePolicyOutput$ = [3, n0, _GRPO, 0, [_Po, _RIe], [0, 0]];
|
|
1588
|
+
var GlobalSecondaryIndex$ = [
|
|
1568
1589
|
3,
|
|
1569
1590
|
n0,
|
|
1570
1591
|
_GSIl,
|
|
1571
1592
|
0,
|
|
1572
1593
|
[_IN, _KS, _Pr, _PT, _ODT, _WT],
|
|
1573
|
-
[
|
|
1594
|
+
[
|
|
1595
|
+
0,
|
|
1596
|
+
() => KeySchema,
|
|
1597
|
+
() => Projection$,
|
|
1598
|
+
() => ProvisionedThroughput$,
|
|
1599
|
+
() => OnDemandThroughput$,
|
|
1600
|
+
() => WarmThroughput$,
|
|
1601
|
+
],
|
|
1574
1602
|
];
|
|
1575
|
-
var GlobalSecondaryIndexAutoScalingUpdate = [
|
|
1603
|
+
var GlobalSecondaryIndexAutoScalingUpdate$ = [
|
|
1576
1604
|
3,
|
|
1577
1605
|
n0,
|
|
1578
1606
|
_GSIASU,
|
|
1579
1607
|
0,
|
|
1580
1608
|
[_IN, _PWCASU],
|
|
1581
|
-
[0, () => AutoScalingSettingsUpdate],
|
|
1609
|
+
[0, () => AutoScalingSettingsUpdate$],
|
|
1582
1610
|
];
|
|
1583
|
-
var GlobalSecondaryIndexDescription = [
|
|
1611
|
+
var GlobalSecondaryIndexDescription$ = [
|
|
1584
1612
|
3,
|
|
1585
1613
|
n0,
|
|
1586
1614
|
_GSID,
|
|
@@ -1589,38 +1617,38 @@ var GlobalSecondaryIndexDescription = [
|
|
|
1589
1617
|
[
|
|
1590
1618
|
0,
|
|
1591
1619
|
() => KeySchema,
|
|
1592
|
-
() => Projection
|
|
1620
|
+
() => Projection$,
|
|
1593
1621
|
0,
|
|
1594
1622
|
2,
|
|
1595
|
-
() => ProvisionedThroughputDescription
|
|
1623
|
+
() => ProvisionedThroughputDescription$,
|
|
1596
1624
|
1,
|
|
1597
1625
|
1,
|
|
1598
1626
|
0,
|
|
1599
|
-
() => OnDemandThroughput
|
|
1600
|
-
() => GlobalSecondaryIndexWarmThroughputDescription
|
|
1627
|
+
() => OnDemandThroughput$,
|
|
1628
|
+
() => GlobalSecondaryIndexWarmThroughputDescription$,
|
|
1601
1629
|
],
|
|
1602
1630
|
];
|
|
1603
|
-
var GlobalSecondaryIndexInfo = [
|
|
1631
|
+
var GlobalSecondaryIndexInfo$ = [
|
|
1604
1632
|
3,
|
|
1605
1633
|
n0,
|
|
1606
1634
|
_GSII,
|
|
1607
1635
|
0,
|
|
1608
1636
|
[_IN, _KS, _Pr, _PT, _ODT],
|
|
1609
|
-
[0, () => KeySchema, () => Projection
|
|
1637
|
+
[0, () => KeySchema, () => Projection$, () => ProvisionedThroughput$, () => OnDemandThroughput$],
|
|
1610
1638
|
];
|
|
1611
|
-
var GlobalSecondaryIndexUpdate = [
|
|
1639
|
+
var GlobalSecondaryIndexUpdate$ = [
|
|
1612
1640
|
3,
|
|
1613
1641
|
n0,
|
|
1614
1642
|
_GSIU,
|
|
1615
1643
|
0,
|
|
1616
1644
|
[_U, _Cr, _De],
|
|
1617
1645
|
[
|
|
1618
|
-
() => UpdateGlobalSecondaryIndexAction
|
|
1619
|
-
() => CreateGlobalSecondaryIndexAction
|
|
1620
|
-
() => DeleteGlobalSecondaryIndexAction
|
|
1646
|
+
() => UpdateGlobalSecondaryIndexAction$,
|
|
1647
|
+
() => CreateGlobalSecondaryIndexAction$,
|
|
1648
|
+
() => DeleteGlobalSecondaryIndexAction$,
|
|
1621
1649
|
],
|
|
1622
1650
|
];
|
|
1623
|
-
var GlobalSecondaryIndexWarmThroughputDescription = [
|
|
1651
|
+
var GlobalSecondaryIndexWarmThroughputDescription$ = [
|
|
1624
1652
|
3,
|
|
1625
1653
|
n0,
|
|
1626
1654
|
_GSIWTD,
|
|
@@ -1628,10 +1656,10 @@ var GlobalSecondaryIndexWarmThroughputDescription = [
|
|
|
1628
1656
|
[_RUPS, _WUPS, _Sta],
|
|
1629
1657
|
[1, 1, 0],
|
|
1630
1658
|
];
|
|
1631
|
-
var GlobalTable = [3, n0, _GT, 0, [_GTN, _RG], [0, () => ReplicaList]];
|
|
1632
|
-
var GlobalTableAlreadyExistsException = [-3, n0, _GTAEE, { [_e]: _c }, [_m], [0]];
|
|
1633
|
-
schema.TypeRegistry.for(n0).registerError(GlobalTableAlreadyExistsException
|
|
1634
|
-
var GlobalTableDescription = [
|
|
1659
|
+
var GlobalTable$ = [3, n0, _GT, 0, [_GTN, _RG], [0, () => ReplicaList]];
|
|
1660
|
+
var GlobalTableAlreadyExistsException$ = [-3, n0, _GTAEE, { [_e]: _c }, [_m], [0]];
|
|
1661
|
+
schema.TypeRegistry.for(n0).registerError(GlobalTableAlreadyExistsException$, GlobalTableAlreadyExistsException);
|
|
1662
|
+
var GlobalTableDescription$ = [
|
|
1635
1663
|
3,
|
|
1636
1664
|
n0,
|
|
1637
1665
|
_GTD,
|
|
@@ -1639,40 +1667,40 @@ var GlobalTableDescription = [
|
|
|
1639
1667
|
[_RG, _GTA, _CDT, _GTS, _GTN],
|
|
1640
1668
|
[() => ReplicaDescriptionList, 0, 4, 0, 0],
|
|
1641
1669
|
];
|
|
1642
|
-
var GlobalTableGlobalSecondaryIndexSettingsUpdate = [
|
|
1670
|
+
var GlobalTableGlobalSecondaryIndexSettingsUpdate$ = [
|
|
1643
1671
|
3,
|
|
1644
1672
|
n0,
|
|
1645
1673
|
_GTGSISU,
|
|
1646
1674
|
0,
|
|
1647
1675
|
[_IN, _PWCU, _PWCASSU],
|
|
1648
|
-
[0, 1, () => AutoScalingSettingsUpdate],
|
|
1676
|
+
[0, 1, () => AutoScalingSettingsUpdate$],
|
|
1649
1677
|
];
|
|
1650
|
-
var GlobalTableNotFoundException = [-3, n0, _GTNFE, { [_e]: _c }, [_m], [0]];
|
|
1651
|
-
schema.TypeRegistry.for(n0).registerError(GlobalTableNotFoundException
|
|
1652
|
-
var GlobalTableWitnessDescription = [3, n0, _GTWD, 0, [_RN, _WS], [0, 0]];
|
|
1653
|
-
var GlobalTableWitnessGroupUpdate = [
|
|
1678
|
+
var GlobalTableNotFoundException$ = [-3, n0, _GTNFE, { [_e]: _c }, [_m], [0]];
|
|
1679
|
+
schema.TypeRegistry.for(n0).registerError(GlobalTableNotFoundException$, GlobalTableNotFoundException);
|
|
1680
|
+
var GlobalTableWitnessDescription$ = [3, n0, _GTWD, 0, [_RN, _WS], [0, 0]];
|
|
1681
|
+
var GlobalTableWitnessGroupUpdate$ = [
|
|
1654
1682
|
3,
|
|
1655
1683
|
n0,
|
|
1656
1684
|
_GTWGU,
|
|
1657
1685
|
0,
|
|
1658
1686
|
[_Cr, _De],
|
|
1659
|
-
[() => CreateGlobalTableWitnessGroupMemberAction
|
|
1660
|
-
];
|
|
1661
|
-
var IdempotentParameterMismatchException = [-3, n0, _IPME, { [_e]: _c }, [_M], [0]];
|
|
1662
|
-
schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException
|
|
1663
|
-
var ImportConflictException = [-3, n0, _ICE, { [_e]: _c }, [_m], [0]];
|
|
1664
|
-
schema.TypeRegistry.for(n0).registerError(ImportConflictException
|
|
1665
|
-
var ImportNotFoundException = [-3, n0, _INFE, { [_e]: _c }, [_m], [0]];
|
|
1666
|
-
schema.TypeRegistry.for(n0).registerError(ImportNotFoundException
|
|
1667
|
-
var ImportSummary = [
|
|
1687
|
+
[() => CreateGlobalTableWitnessGroupMemberAction$, () => DeleteGlobalTableWitnessGroupMemberAction$],
|
|
1688
|
+
];
|
|
1689
|
+
var IdempotentParameterMismatchException$ = [-3, n0, _IPME, { [_e]: _c }, [_M], [0]];
|
|
1690
|
+
schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
|
|
1691
|
+
var ImportConflictException$ = [-3, n0, _ICE, { [_e]: _c }, [_m], [0]];
|
|
1692
|
+
schema.TypeRegistry.for(n0).registerError(ImportConflictException$, ImportConflictException);
|
|
1693
|
+
var ImportNotFoundException$ = [-3, n0, _INFE, { [_e]: _c }, [_m], [0]];
|
|
1694
|
+
schema.TypeRegistry.for(n0).registerError(ImportNotFoundException$, ImportNotFoundException);
|
|
1695
|
+
var ImportSummary$ = [
|
|
1668
1696
|
3,
|
|
1669
1697
|
n0,
|
|
1670
1698
|
_ISm,
|
|
1671
1699
|
0,
|
|
1672
1700
|
[_IA, _ISmp, _TA, _SBS, _CWLGA, _IF, _ST, _ET],
|
|
1673
|
-
[0, 0, 0, () => S3BucketSource
|
|
1701
|
+
[0, 0, 0, () => S3BucketSource$, 0, 0, 4, 4],
|
|
1674
1702
|
];
|
|
1675
|
-
var ImportTableDescription = [
|
|
1703
|
+
var ImportTableDescription$ = [
|
|
1676
1704
|
3,
|
|
1677
1705
|
n0,
|
|
1678
1706
|
_ITD,
|
|
@@ -1684,13 +1712,13 @@ var ImportTableDescription = [
|
|
|
1684
1712
|
0,
|
|
1685
1713
|
0,
|
|
1686
1714
|
0,
|
|
1687
|
-
() => S3BucketSource
|
|
1715
|
+
() => S3BucketSource$,
|
|
1688
1716
|
1,
|
|
1689
1717
|
0,
|
|
1690
1718
|
0,
|
|
1691
|
-
() => InputFormatOptions
|
|
1719
|
+
() => InputFormatOptions$,
|
|
1692
1720
|
0,
|
|
1693
|
-
() => TableCreationParameters
|
|
1721
|
+
() => TableCreationParameters$,
|
|
1694
1722
|
4,
|
|
1695
1723
|
4,
|
|
1696
1724
|
1,
|
|
@@ -1700,28 +1728,28 @@ var ImportTableDescription = [
|
|
|
1700
1728
|
0,
|
|
1701
1729
|
],
|
|
1702
1730
|
];
|
|
1703
|
-
var ImportTableInput = [
|
|
1731
|
+
var ImportTableInput$ = [
|
|
1704
1732
|
3,
|
|
1705
1733
|
n0,
|
|
1706
1734
|
_ITI,
|
|
1707
1735
|
0,
|
|
1708
1736
|
[_CT, _SBS, _IF, _IFO, _ICT, _TCP],
|
|
1709
|
-
[[0, 4], () => S3BucketSource
|
|
1710
|
-
];
|
|
1711
|
-
var ImportTableOutput = [3, n0, _ITO, 0, [_ITD], [() => ImportTableDescription]];
|
|
1712
|
-
var IncrementalExportSpecification = [3, n0, _IES, 0, [_EFT, _ETT, _EVT], [4, 4, 0]];
|
|
1713
|
-
var IndexNotFoundException = [-3, n0, _INFEn, { [_e]: _c }, [_m], [0]];
|
|
1714
|
-
schema.TypeRegistry.for(n0).registerError(IndexNotFoundException
|
|
1715
|
-
var InputFormatOptions = [3, n0, _IFO, 0, [_Cs], [() => CsvOptions]];
|
|
1716
|
-
var InternalServerError = [-3, n0, _ISE, { [_e]: _s }, [_m], [0]];
|
|
1717
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerError
|
|
1718
|
-
var InvalidEndpointException = [-3, n0, _IEE, { [_e]: _c, [_hE]: 421 }, [_M], [0]];
|
|
1719
|
-
schema.TypeRegistry.for(n0).registerError(InvalidEndpointException
|
|
1720
|
-
var InvalidExportTimeException = [-3, n0, _IETE, { [_e]: _c }, [_m], [0]];
|
|
1721
|
-
schema.TypeRegistry.for(n0).registerError(InvalidExportTimeException
|
|
1722
|
-
var InvalidRestoreTimeException = [-3, n0, _IRTE, { [_e]: _c }, [_m], [0]];
|
|
1723
|
-
schema.TypeRegistry.for(n0).registerError(InvalidRestoreTimeException
|
|
1724
|
-
var ItemCollectionMetrics = [
|
|
1737
|
+
[[0, 4], () => S3BucketSource$, 0, () => InputFormatOptions$, 0, () => TableCreationParameters$],
|
|
1738
|
+
];
|
|
1739
|
+
var ImportTableOutput$ = [3, n0, _ITO, 0, [_ITD], [() => ImportTableDescription$]];
|
|
1740
|
+
var IncrementalExportSpecification$ = [3, n0, _IES, 0, [_EFT, _ETT, _EVT], [4, 4, 0]];
|
|
1741
|
+
var IndexNotFoundException$ = [-3, n0, _INFEn, { [_e]: _c }, [_m], [0]];
|
|
1742
|
+
schema.TypeRegistry.for(n0).registerError(IndexNotFoundException$, IndexNotFoundException);
|
|
1743
|
+
var InputFormatOptions$ = [3, n0, _IFO, 0, [_Cs], [() => CsvOptions$]];
|
|
1744
|
+
var InternalServerError$ = [-3, n0, _ISE, { [_e]: _s }, [_m], [0]];
|
|
1745
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerError$, InternalServerError);
|
|
1746
|
+
var InvalidEndpointException$ = [-3, n0, _IEE, { [_e]: _c, [_hE]: 421 }, [_M], [0]];
|
|
1747
|
+
schema.TypeRegistry.for(n0).registerError(InvalidEndpointException$, InvalidEndpointException);
|
|
1748
|
+
var InvalidExportTimeException$ = [-3, n0, _IETE, { [_e]: _c }, [_m], [0]];
|
|
1749
|
+
schema.TypeRegistry.for(n0).registerError(InvalidExportTimeException$, InvalidExportTimeException);
|
|
1750
|
+
var InvalidRestoreTimeException$ = [-3, n0, _IRTE, { [_e]: _c }, [_m], [0]];
|
|
1751
|
+
schema.TypeRegistry.for(n0).registerError(InvalidRestoreTimeException$, InvalidRestoreTimeException);
|
|
1752
|
+
var ItemCollectionMetrics$ = [
|
|
1725
1753
|
3,
|
|
1726
1754
|
n0,
|
|
1727
1755
|
_ICM,
|
|
@@ -1729,10 +1757,10 @@ var ItemCollectionMetrics = [
|
|
|
1729
1757
|
[_ICK, _SERGB],
|
|
1730
1758
|
[() => ItemCollectionKeyAttributeMap, 64 | 1],
|
|
1731
1759
|
];
|
|
1732
|
-
var ItemCollectionSizeLimitExceededException = [-3, n0, _ICSLEE, { [_e]: _c }, [_m], [0]];
|
|
1733
|
-
schema.TypeRegistry.for(n0).registerError(ItemCollectionSizeLimitExceededException
|
|
1734
|
-
var ItemResponse = [3, n0, _IR, 0, [_I], [() => AttributeMap]];
|
|
1735
|
-
var KeysAndAttributes = [
|
|
1760
|
+
var ItemCollectionSizeLimitExceededException$ = [-3, n0, _ICSLEE, { [_e]: _c }, [_m], [0]];
|
|
1761
|
+
schema.TypeRegistry.for(n0).registerError(ItemCollectionSizeLimitExceededException$, ItemCollectionSizeLimitExceededException);
|
|
1762
|
+
var ItemResponse$ = [3, n0, _IR, 0, [_I], [() => AttributeMap]];
|
|
1763
|
+
var KeysAndAttributes$ = [
|
|
1736
1764
|
3,
|
|
1737
1765
|
n0,
|
|
1738
1766
|
_KAA,
|
|
@@ -1740,8 +1768,8 @@ var KeysAndAttributes = [
|
|
|
1740
1768
|
[_Ke, _ATG, _CR, _PE, _EAN],
|
|
1741
1769
|
[() => KeyList, 64 | 0, 2, 0, 128 | 0],
|
|
1742
1770
|
];
|
|
1743
|
-
var KeySchemaElement = [3, n0, _KSE, 0, [_AN, _KT], [0, 0]];
|
|
1744
|
-
var KinesisDataStreamDestination = [
|
|
1771
|
+
var KeySchemaElement$ = [3, n0, _KSE, 0, [_AN, _KT], [0, 0]];
|
|
1772
|
+
var KinesisDataStreamDestination$ = [
|
|
1745
1773
|
3,
|
|
1746
1774
|
n0,
|
|
1747
1775
|
_KDSDi,
|
|
@@ -1749,25 +1777,25 @@ var KinesisDataStreamDestination = [
|
|
|
1749
1777
|
[_SA, _DS, _DSD, _ACDTP],
|
|
1750
1778
|
[0, 0, 0, 0],
|
|
1751
1779
|
];
|
|
1752
|
-
var KinesisStreamingDestinationInput = [
|
|
1780
|
+
var KinesisStreamingDestinationInput$ = [
|
|
1753
1781
|
3,
|
|
1754
1782
|
n0,
|
|
1755
1783
|
_KSDI,
|
|
1756
1784
|
0,
|
|
1757
1785
|
[_TN, _SA, _EKSC],
|
|
1758
|
-
[0, 0, () => EnableKinesisStreamingConfiguration],
|
|
1786
|
+
[0, 0, () => EnableKinesisStreamingConfiguration$],
|
|
1759
1787
|
];
|
|
1760
|
-
var KinesisStreamingDestinationOutput = [
|
|
1788
|
+
var KinesisStreamingDestinationOutput$ = [
|
|
1761
1789
|
3,
|
|
1762
1790
|
n0,
|
|
1763
1791
|
_KSDO,
|
|
1764
1792
|
0,
|
|
1765
1793
|
[_TN, _SA, _DS, _EKSC],
|
|
1766
|
-
[0, 0, 0, () => EnableKinesisStreamingConfiguration],
|
|
1794
|
+
[0, 0, 0, () => EnableKinesisStreamingConfiguration$],
|
|
1767
1795
|
];
|
|
1768
|
-
var LimitExceededException = [-3, n0, _LEE, { [_e]: _c }, [_m], [0]];
|
|
1769
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException
|
|
1770
|
-
var ListBackupsInput = [
|
|
1796
|
+
var LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c }, [_m], [0]];
|
|
1797
|
+
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1798
|
+
var ListBackupsInput$ = [
|
|
1771
1799
|
3,
|
|
1772
1800
|
n0,
|
|
1773
1801
|
_LBI,
|
|
@@ -1775,9 +1803,9 @@ var ListBackupsInput = [
|
|
|
1775
1803
|
[_TN, _L, _TRLB, _TRUB, _ESBA, _BT],
|
|
1776
1804
|
[0, 1, 4, 4, 0, 0],
|
|
1777
1805
|
];
|
|
1778
|
-
var ListBackupsOutput = [3, n0, _LBO, 0, [_BSac, _LEBA], [() => BackupSummaries, 0]];
|
|
1779
|
-
var ListContributorInsightsInput = [3, n0, _LCII, 0, [_TN, _NT, _MR], [0, 0, 1]];
|
|
1780
|
-
var ListContributorInsightsOutput = [
|
|
1806
|
+
var ListBackupsOutput$ = [3, n0, _LBO, 0, [_BSac, _LEBA], [() => BackupSummaries, 0]];
|
|
1807
|
+
var ListContributorInsightsInput$ = [3, n0, _LCII, 0, [_TN, _NT, _MR], [0, 0, 1]];
|
|
1808
|
+
var ListContributorInsightsOutput$ = [
|
|
1781
1809
|
3,
|
|
1782
1810
|
n0,
|
|
1783
1811
|
_LCIO,
|
|
@@ -1785,10 +1813,10 @@ var ListContributorInsightsOutput = [
|
|
|
1785
1813
|
[_CISon, _NT],
|
|
1786
1814
|
[() => ContributorInsightsSummaries, 0],
|
|
1787
1815
|
];
|
|
1788
|
-
var ListExportsInput = [3, n0, _LEI, 0, [_TA, _MR, _NT], [0, 1, 0]];
|
|
1789
|
-
var ListExportsOutput = [3, n0, _LEO, 0, [_ESxp, _NT], [() => ExportSummaries, 0]];
|
|
1790
|
-
var ListGlobalTablesInput = [3, n0, _LGTI, 0, [_ESGTN, _L, _RN], [0, 1, 0]];
|
|
1791
|
-
var ListGlobalTablesOutput = [
|
|
1816
|
+
var ListExportsInput$ = [3, n0, _LEI, 0, [_TA, _MR, _NT], [0, 1, 0]];
|
|
1817
|
+
var ListExportsOutput$ = [3, n0, _LEO, 0, [_ESxp, _NT], [() => ExportSummaries, 0]];
|
|
1818
|
+
var ListGlobalTablesInput$ = [3, n0, _LGTI, 0, [_ESGTN, _L, _RN], [0, 1, 0]];
|
|
1819
|
+
var ListGlobalTablesOutput$ = [
|
|
1792
1820
|
3,
|
|
1793
1821
|
n0,
|
|
1794
1822
|
_LGTO,
|
|
@@ -1796,39 +1824,39 @@ var ListGlobalTablesOutput = [
|
|
|
1796
1824
|
[_GTl, _LEGTN],
|
|
1797
1825
|
[() => GlobalTableList, 0],
|
|
1798
1826
|
];
|
|
1799
|
-
var ListImportsInput = [3, n0, _LII, 0, [_TA, _PS, _NT], [0, 1, 0]];
|
|
1800
|
-
var ListImportsOutput = [3, n0, _LIO, 0, [_ISL, _NT], [() => ImportSummaryList, 0]];
|
|
1801
|
-
var ListTablesInput = [3, n0, _LTI, 0, [_ESTN, _L], [0, 1]];
|
|
1802
|
-
var ListTablesOutput = [3, n0, _LTO, 0, [_TNa, _LETN], [64 | 0, 0]];
|
|
1803
|
-
var ListTagsOfResourceInput = [3, n0, _LTORI, 0, [_RA, _NT], [0, 0]];
|
|
1804
|
-
var ListTagsOfResourceOutput = [3, n0, _LTORO, 0, [_Ta, _NT], [() => TagList, 0]];
|
|
1805
|
-
var LocalSecondaryIndex = [
|
|
1827
|
+
var ListImportsInput$ = [3, n0, _LII, 0, [_TA, _PS, _NT], [0, 1, 0]];
|
|
1828
|
+
var ListImportsOutput$ = [3, n0, _LIO, 0, [_ISL, _NT], [() => ImportSummaryList, 0]];
|
|
1829
|
+
var ListTablesInput$ = [3, n0, _LTI, 0, [_ESTN, _L], [0, 1]];
|
|
1830
|
+
var ListTablesOutput$ = [3, n0, _LTO, 0, [_TNa, _LETN], [64 | 0, 0]];
|
|
1831
|
+
var ListTagsOfResourceInput$ = [3, n0, _LTORI, 0, [_RA, _NT], [0, 0]];
|
|
1832
|
+
var ListTagsOfResourceOutput$ = [3, n0, _LTORO, 0, [_Ta, _NT], [() => TagList, 0]];
|
|
1833
|
+
var LocalSecondaryIndex$ = [
|
|
1806
1834
|
3,
|
|
1807
1835
|
n0,
|
|
1808
1836
|
_LSIo,
|
|
1809
1837
|
0,
|
|
1810
1838
|
[_IN, _KS, _Pr],
|
|
1811
|
-
[0, () => KeySchema, () => Projection],
|
|
1839
|
+
[0, () => KeySchema, () => Projection$],
|
|
1812
1840
|
];
|
|
1813
|
-
var LocalSecondaryIndexDescription = [
|
|
1841
|
+
var LocalSecondaryIndexDescription$ = [
|
|
1814
1842
|
3,
|
|
1815
1843
|
n0,
|
|
1816
1844
|
_LSID,
|
|
1817
1845
|
0,
|
|
1818
1846
|
[_IN, _KS, _Pr, _ISB, _IC, _IAn],
|
|
1819
|
-
[0, () => KeySchema, () => Projection
|
|
1847
|
+
[0, () => KeySchema, () => Projection$, 1, 1, 0],
|
|
1820
1848
|
];
|
|
1821
|
-
var LocalSecondaryIndexInfo = [
|
|
1849
|
+
var LocalSecondaryIndexInfo$ = [
|
|
1822
1850
|
3,
|
|
1823
1851
|
n0,
|
|
1824
1852
|
_LSII,
|
|
1825
1853
|
0,
|
|
1826
1854
|
[_IN, _KS, _Pr],
|
|
1827
|
-
[0, () => KeySchema, () => Projection],
|
|
1855
|
+
[0, () => KeySchema, () => Projection$],
|
|
1828
1856
|
];
|
|
1829
|
-
var OnDemandThroughput = [3, n0, _ODT, 0, [_MRRU, _MWRU], [1, 1]];
|
|
1830
|
-
var OnDemandThroughputOverride = [3, n0, _ODTO, 0, [_MRRU], [1]];
|
|
1831
|
-
var ParameterizedStatement = [
|
|
1857
|
+
var OnDemandThroughput$ = [3, n0, _ODT, 0, [_MRRU, _MWRU], [1, 1]];
|
|
1858
|
+
var OnDemandThroughputOverride$ = [3, n0, _ODTO, 0, [_MRRU], [1]];
|
|
1859
|
+
var ParameterizedStatement$ = [
|
|
1832
1860
|
3,
|
|
1833
1861
|
n0,
|
|
1834
1862
|
_PSa,
|
|
@@ -1836,7 +1864,7 @@ var ParameterizedStatement = [
|
|
|
1836
1864
|
[_St, _P, _RVOCCF],
|
|
1837
1865
|
[0, () => PreparedStatementParameters, 0],
|
|
1838
1866
|
];
|
|
1839
|
-
var PointInTimeRecoveryDescription = [
|
|
1867
|
+
var PointInTimeRecoveryDescription$ = [
|
|
1840
1868
|
3,
|
|
1841
1869
|
n0,
|
|
1842
1870
|
_PITRD,
|
|
@@ -1844,14 +1872,14 @@ var PointInTimeRecoveryDescription = [
|
|
|
1844
1872
|
[_PITRS, _RPID, _ERDT, _LRDT],
|
|
1845
1873
|
[0, 1, 4, 4],
|
|
1846
1874
|
];
|
|
1847
|
-
var PointInTimeRecoverySpecification = [3, n0, _PITRSo, 0, [_PITRE, _RPID], [2, 1]];
|
|
1848
|
-
var PointInTimeRecoveryUnavailableException = [-3, n0, _PITRUE, { [_e]: _c }, [_m], [0]];
|
|
1849
|
-
schema.TypeRegistry.for(n0).registerError(PointInTimeRecoveryUnavailableException
|
|
1850
|
-
var PolicyNotFoundException = [-3, n0, _PNFE, { [_e]: _c }, [_m], [0]];
|
|
1851
|
-
schema.TypeRegistry.for(n0).registerError(PolicyNotFoundException
|
|
1852
|
-
var Projection = [3, n0, _Pr, 0, [_PTr, _NKA], [0, 64 | 0]];
|
|
1853
|
-
var ProvisionedThroughput = [3, n0, _PT, 0, [_RCU, _WCU], [1, 1]];
|
|
1854
|
-
var ProvisionedThroughputDescription = [
|
|
1875
|
+
var PointInTimeRecoverySpecification$ = [3, n0, _PITRSo, 0, [_PITRE, _RPID], [2, 1]];
|
|
1876
|
+
var PointInTimeRecoveryUnavailableException$ = [-3, n0, _PITRUE, { [_e]: _c }, [_m], [0]];
|
|
1877
|
+
schema.TypeRegistry.for(n0).registerError(PointInTimeRecoveryUnavailableException$, PointInTimeRecoveryUnavailableException);
|
|
1878
|
+
var PolicyNotFoundException$ = [-3, n0, _PNFE, { [_e]: _c }, [_m], [0]];
|
|
1879
|
+
schema.TypeRegistry.for(n0).registerError(PolicyNotFoundException$, PolicyNotFoundException);
|
|
1880
|
+
var Projection$ = [3, n0, _Pr, 0, [_PTr, _NKA], [0, 64 | 0]];
|
|
1881
|
+
var ProvisionedThroughput$ = [3, n0, _PT, 0, [_RCU, _WCU], [1, 1]];
|
|
1882
|
+
var ProvisionedThroughputDescription$ = [
|
|
1855
1883
|
3,
|
|
1856
1884
|
n0,
|
|
1857
1885
|
_PTD,
|
|
@@ -1859,7 +1887,7 @@ var ProvisionedThroughputDescription = [
|
|
|
1859
1887
|
[_LIDT, _LDDT, _NODT, _RCU, _WCU],
|
|
1860
1888
|
[4, 4, 1, 1, 1],
|
|
1861
1889
|
];
|
|
1862
|
-
var ProvisionedThroughputExceededException = [
|
|
1890
|
+
var ProvisionedThroughputExceededException$ = [
|
|
1863
1891
|
-3,
|
|
1864
1892
|
n0,
|
|
1865
1893
|
_PTEE,
|
|
@@ -1867,9 +1895,9 @@ var ProvisionedThroughputExceededException = [
|
|
|
1867
1895
|
[_m, _TR],
|
|
1868
1896
|
[0, () => ThrottlingReasonList],
|
|
1869
1897
|
];
|
|
1870
|
-
schema.TypeRegistry.for(n0).registerError(ProvisionedThroughputExceededException
|
|
1871
|
-
var ProvisionedThroughputOverride = [3, n0, _PTO, 0, [_RCU], [1]];
|
|
1872
|
-
var Put = [
|
|
1898
|
+
schema.TypeRegistry.for(n0).registerError(ProvisionedThroughputExceededException$, ProvisionedThroughputExceededException);
|
|
1899
|
+
var ProvisionedThroughputOverride$ = [3, n0, _PTO, 0, [_RCU], [1]];
|
|
1900
|
+
var Put$ = [
|
|
1873
1901
|
3,
|
|
1874
1902
|
n0,
|
|
1875
1903
|
_Pu,
|
|
@@ -1877,7 +1905,7 @@ var Put = [
|
|
|
1877
1905
|
[_I, _TN, _CE, _EAN, _EAV, _RVOCCF],
|
|
1878
1906
|
[() => PutItemInputAttributeMap, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0],
|
|
1879
1907
|
];
|
|
1880
|
-
var PutItemInput = [
|
|
1908
|
+
var PutItemInput$ = [
|
|
1881
1909
|
3,
|
|
1882
1910
|
n0,
|
|
1883
1911
|
_PII,
|
|
@@ -1897,16 +1925,16 @@ var PutItemInput = [
|
|
|
1897
1925
|
0,
|
|
1898
1926
|
],
|
|
1899
1927
|
];
|
|
1900
|
-
var PutItemOutput = [
|
|
1928
|
+
var PutItemOutput$ = [
|
|
1901
1929
|
3,
|
|
1902
1930
|
n0,
|
|
1903
1931
|
_PIO,
|
|
1904
1932
|
0,
|
|
1905
1933
|
[_At, _CC, _ICM],
|
|
1906
|
-
[() => AttributeMap, () => ConsumedCapacity
|
|
1934
|
+
[() => AttributeMap, () => ConsumedCapacity$, () => ItemCollectionMetrics$],
|
|
1907
1935
|
];
|
|
1908
|
-
var PutRequest = [3, n0, _PR, 0, [_I], [() => PutItemInputAttributeMap]];
|
|
1909
|
-
var PutResourcePolicyInput = [
|
|
1936
|
+
var PutRequest$ = [3, n0, _PR, 0, [_I], [() => PutItemInputAttributeMap]];
|
|
1937
|
+
var PutResourcePolicyInput$ = [
|
|
1910
1938
|
3,
|
|
1911
1939
|
n0,
|
|
1912
1940
|
_PRPI,
|
|
@@ -1914,8 +1942,8 @@ var PutResourcePolicyInput = [
|
|
|
1914
1942
|
[_RA, _Po, _ERI, _CRSRA],
|
|
1915
1943
|
[0, 0, 0, [2, { [_hH]: _xacrsra }]],
|
|
1916
1944
|
];
|
|
1917
|
-
var PutResourcePolicyOutput = [3, n0, _PRPO, 0, [_RIe], [0]];
|
|
1918
|
-
var QueryInput = [
|
|
1945
|
+
var PutResourcePolicyOutput$ = [3, n0, _PRPO, 0, [_RIe], [0]];
|
|
1946
|
+
var QueryInput$ = [
|
|
1919
1947
|
3,
|
|
1920
1948
|
n0,
|
|
1921
1949
|
_QI,
|
|
@@ -1941,18 +1969,18 @@ var QueryInput = [
|
|
|
1941
1969
|
() => ExpressionAttributeValueMap,
|
|
1942
1970
|
],
|
|
1943
1971
|
];
|
|
1944
|
-
var QueryOutput = [
|
|
1972
|
+
var QueryOutput$ = [
|
|
1945
1973
|
3,
|
|
1946
1974
|
n0,
|
|
1947
1975
|
_QO,
|
|
1948
1976
|
0,
|
|
1949
1977
|
[_It, _Cou, _SC, _LEK, _CC],
|
|
1950
|
-
[() => ItemList, 1, 1, () => Key, () => ConsumedCapacity],
|
|
1978
|
+
[() => ItemList, 1, 1, () => Key, () => ConsumedCapacity$],
|
|
1951
1979
|
];
|
|
1952
|
-
var Replica = [3, n0, _Re, 0, [_RN], [0]];
|
|
1953
|
-
var ReplicaAlreadyExistsException = [-3, n0, _RAEE, { [_e]: _c }, [_m], [0]];
|
|
1954
|
-
schema.TypeRegistry.for(n0).registerError(ReplicaAlreadyExistsException
|
|
1955
|
-
var ReplicaAutoScalingDescription = [
|
|
1980
|
+
var Replica$ = [3, n0, _Re, 0, [_RN], [0]];
|
|
1981
|
+
var ReplicaAlreadyExistsException$ = [-3, n0, _RAEE, { [_e]: _c }, [_m], [0]];
|
|
1982
|
+
schema.TypeRegistry.for(n0).registerError(ReplicaAlreadyExistsException$, ReplicaAlreadyExistsException);
|
|
1983
|
+
var ReplicaAutoScalingDescription$ = [
|
|
1956
1984
|
3,
|
|
1957
1985
|
n0,
|
|
1958
1986
|
_RASD,
|
|
@@ -1961,20 +1989,20 @@ var ReplicaAutoScalingDescription = [
|
|
|
1961
1989
|
[
|
|
1962
1990
|
0,
|
|
1963
1991
|
() => ReplicaGlobalSecondaryIndexAutoScalingDescriptionList,
|
|
1964
|
-
() => AutoScalingSettingsDescription
|
|
1965
|
-
() => AutoScalingSettingsDescription
|
|
1992
|
+
() => AutoScalingSettingsDescription$,
|
|
1993
|
+
() => AutoScalingSettingsDescription$,
|
|
1966
1994
|
0,
|
|
1967
1995
|
],
|
|
1968
1996
|
];
|
|
1969
|
-
var ReplicaAutoScalingUpdate = [
|
|
1997
|
+
var ReplicaAutoScalingUpdate$ = [
|
|
1970
1998
|
3,
|
|
1971
1999
|
n0,
|
|
1972
2000
|
_RASU,
|
|
1973
2001
|
0,
|
|
1974
2002
|
[_RN, _RGSIU, _RPRCASU],
|
|
1975
|
-
[0, () => ReplicaGlobalSecondaryIndexAutoScalingUpdateList, () => AutoScalingSettingsUpdate],
|
|
2003
|
+
[0, () => ReplicaGlobalSecondaryIndexAutoScalingUpdateList, () => AutoScalingSettingsUpdate$],
|
|
1976
2004
|
];
|
|
1977
|
-
var ReplicaDescription = [
|
|
2005
|
+
var ReplicaDescription$ = [
|
|
1978
2006
|
3,
|
|
1979
2007
|
n0,
|
|
1980
2008
|
_RD,
|
|
@@ -1986,39 +2014,39 @@ var ReplicaDescription = [
|
|
|
1986
2014
|
0,
|
|
1987
2015
|
0,
|
|
1988
2016
|
0,
|
|
1989
|
-
() => ProvisionedThroughputOverride
|
|
1990
|
-
() => OnDemandThroughputOverride
|
|
1991
|
-
() => TableWarmThroughputDescription
|
|
2017
|
+
() => ProvisionedThroughputOverride$,
|
|
2018
|
+
() => OnDemandThroughputOverride$,
|
|
2019
|
+
() => TableWarmThroughputDescription$,
|
|
1992
2020
|
() => ReplicaGlobalSecondaryIndexDescriptionList,
|
|
1993
2021
|
4,
|
|
1994
|
-
() => TableClassSummary
|
|
2022
|
+
() => TableClassSummary$,
|
|
1995
2023
|
],
|
|
1996
2024
|
];
|
|
1997
|
-
var ReplicaGlobalSecondaryIndex = [
|
|
2025
|
+
var ReplicaGlobalSecondaryIndex$ = [
|
|
1998
2026
|
3,
|
|
1999
2027
|
n0,
|
|
2000
2028
|
_RGSI,
|
|
2001
2029
|
0,
|
|
2002
2030
|
[_IN, _PTO, _ODTO],
|
|
2003
|
-
[0, () => ProvisionedThroughputOverride
|
|
2031
|
+
[0, () => ProvisionedThroughputOverride$, () => OnDemandThroughputOverride$],
|
|
2004
2032
|
];
|
|
2005
|
-
var ReplicaGlobalSecondaryIndexAutoScalingDescription = [
|
|
2033
|
+
var ReplicaGlobalSecondaryIndexAutoScalingDescription$ = [
|
|
2006
2034
|
3,
|
|
2007
2035
|
n0,
|
|
2008
2036
|
_RGSIASD,
|
|
2009
2037
|
0,
|
|
2010
2038
|
[_IN, _IS, _PRCASS, _PWCASS],
|
|
2011
|
-
[0, 0, () => AutoScalingSettingsDescription
|
|
2039
|
+
[0, 0, () => AutoScalingSettingsDescription$, () => AutoScalingSettingsDescription$],
|
|
2012
2040
|
];
|
|
2013
|
-
var ReplicaGlobalSecondaryIndexAutoScalingUpdate = [
|
|
2041
|
+
var ReplicaGlobalSecondaryIndexAutoScalingUpdate$ = [
|
|
2014
2042
|
3,
|
|
2015
2043
|
n0,
|
|
2016
2044
|
_RGSIASU,
|
|
2017
2045
|
0,
|
|
2018
2046
|
[_IN, _PRCASU],
|
|
2019
|
-
[0, () => AutoScalingSettingsUpdate],
|
|
2047
|
+
[0, () => AutoScalingSettingsUpdate$],
|
|
2020
2048
|
];
|
|
2021
|
-
var ReplicaGlobalSecondaryIndexDescription = [
|
|
2049
|
+
var ReplicaGlobalSecondaryIndexDescription$ = [
|
|
2022
2050
|
3,
|
|
2023
2051
|
n0,
|
|
2024
2052
|
_RGSID,
|
|
@@ -2026,30 +2054,30 @@ var ReplicaGlobalSecondaryIndexDescription = [
|
|
|
2026
2054
|
[_IN, _PTO, _ODTO, _WT],
|
|
2027
2055
|
[
|
|
2028
2056
|
0,
|
|
2029
|
-
() => ProvisionedThroughputOverride
|
|
2030
|
-
() => OnDemandThroughputOverride
|
|
2031
|
-
() => GlobalSecondaryIndexWarmThroughputDescription
|
|
2057
|
+
() => ProvisionedThroughputOverride$,
|
|
2058
|
+
() => OnDemandThroughputOverride$,
|
|
2059
|
+
() => GlobalSecondaryIndexWarmThroughputDescription$,
|
|
2032
2060
|
],
|
|
2033
2061
|
];
|
|
2034
|
-
var ReplicaGlobalSecondaryIndexSettingsDescription = [
|
|
2062
|
+
var ReplicaGlobalSecondaryIndexSettingsDescription$ = [
|
|
2035
2063
|
3,
|
|
2036
2064
|
n0,
|
|
2037
2065
|
_RGSISD,
|
|
2038
2066
|
0,
|
|
2039
2067
|
[_IN, _IS, _PRCU, _PRCASS, _PWCU, _PWCASS],
|
|
2040
|
-
[0, 0, 1, () => AutoScalingSettingsDescription
|
|
2068
|
+
[0, 0, 1, () => AutoScalingSettingsDescription$, 1, () => AutoScalingSettingsDescription$],
|
|
2041
2069
|
];
|
|
2042
|
-
var ReplicaGlobalSecondaryIndexSettingsUpdate = [
|
|
2070
|
+
var ReplicaGlobalSecondaryIndexSettingsUpdate$ = [
|
|
2043
2071
|
3,
|
|
2044
2072
|
n0,
|
|
2045
2073
|
_RGSISU,
|
|
2046
2074
|
0,
|
|
2047
2075
|
[_IN, _PRCU, _PRCASSU],
|
|
2048
|
-
[0, 1, () => AutoScalingSettingsUpdate],
|
|
2076
|
+
[0, 1, () => AutoScalingSettingsUpdate$],
|
|
2049
2077
|
];
|
|
2050
|
-
var ReplicaNotFoundException = [-3, n0, _RNFE, { [_e]: _c }, [_m], [0]];
|
|
2051
|
-
schema.TypeRegistry.for(n0).registerError(ReplicaNotFoundException
|
|
2052
|
-
var ReplicaSettingsDescription = [
|
|
2078
|
+
var ReplicaNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c }, [_m], [0]];
|
|
2079
|
+
schema.TypeRegistry.for(n0).registerError(ReplicaNotFoundException$, ReplicaNotFoundException);
|
|
2080
|
+
var ReplicaSettingsDescription$ = [
|
|
2053
2081
|
3,
|
|
2054
2082
|
n0,
|
|
2055
2083
|
_RSDe,
|
|
@@ -2058,46 +2086,46 @@ var ReplicaSettingsDescription = [
|
|
|
2058
2086
|
[
|
|
2059
2087
|
0,
|
|
2060
2088
|
0,
|
|
2061
|
-
() => BillingModeSummary
|
|
2089
|
+
() => BillingModeSummary$,
|
|
2062
2090
|
1,
|
|
2063
|
-
() => AutoScalingSettingsDescription
|
|
2091
|
+
() => AutoScalingSettingsDescription$,
|
|
2064
2092
|
1,
|
|
2065
|
-
() => AutoScalingSettingsDescription
|
|
2093
|
+
() => AutoScalingSettingsDescription$,
|
|
2066
2094
|
() => ReplicaGlobalSecondaryIndexSettingsDescriptionList,
|
|
2067
|
-
() => TableClassSummary
|
|
2095
|
+
() => TableClassSummary$,
|
|
2068
2096
|
],
|
|
2069
2097
|
];
|
|
2070
|
-
var ReplicaSettingsUpdate = [
|
|
2098
|
+
var ReplicaSettingsUpdate$ = [
|
|
2071
2099
|
3,
|
|
2072
2100
|
n0,
|
|
2073
2101
|
_RSU,
|
|
2074
2102
|
0,
|
|
2075
2103
|
[_RN, _RPRCU, _RPRCASSU, _RGSISU, _RTC],
|
|
2076
|
-
[0, 1, () => AutoScalingSettingsUpdate
|
|
2104
|
+
[0, 1, () => AutoScalingSettingsUpdate$, () => ReplicaGlobalSecondaryIndexSettingsUpdateList, 0],
|
|
2077
2105
|
];
|
|
2078
|
-
var ReplicatedWriteConflictException = [-3, n0, _RWCE, { [_e]: _c }, [_m], [0]];
|
|
2079
|
-
schema.TypeRegistry.for(n0).registerError(ReplicatedWriteConflictException
|
|
2080
|
-
var ReplicationGroupUpdate = [
|
|
2106
|
+
var ReplicatedWriteConflictException$ = [-3, n0, _RWCE, { [_e]: _c }, [_m], [0]];
|
|
2107
|
+
schema.TypeRegistry.for(n0).registerError(ReplicatedWriteConflictException$, ReplicatedWriteConflictException);
|
|
2108
|
+
var ReplicationGroupUpdate$ = [
|
|
2081
2109
|
3,
|
|
2082
2110
|
n0,
|
|
2083
2111
|
_RGU,
|
|
2084
2112
|
0,
|
|
2085
2113
|
[_Cr, _U, _De],
|
|
2086
2114
|
[
|
|
2087
|
-
() => CreateReplicationGroupMemberAction
|
|
2088
|
-
() => UpdateReplicationGroupMemberAction
|
|
2089
|
-
() => DeleteReplicationGroupMemberAction
|
|
2115
|
+
() => CreateReplicationGroupMemberAction$,
|
|
2116
|
+
() => UpdateReplicationGroupMemberAction$,
|
|
2117
|
+
() => DeleteReplicationGroupMemberAction$,
|
|
2090
2118
|
],
|
|
2091
2119
|
];
|
|
2092
|
-
var ReplicaUpdate = [
|
|
2120
|
+
var ReplicaUpdate$ = [
|
|
2093
2121
|
3,
|
|
2094
2122
|
n0,
|
|
2095
2123
|
_RU,
|
|
2096
2124
|
0,
|
|
2097
2125
|
[_Cr, _De],
|
|
2098
|
-
[() => CreateReplicaAction
|
|
2126
|
+
[() => CreateReplicaAction$, () => DeleteReplicaAction$],
|
|
2099
2127
|
];
|
|
2100
|
-
var RequestLimitExceeded = [
|
|
2128
|
+
var RequestLimitExceeded$ = [
|
|
2101
2129
|
-3,
|
|
2102
2130
|
n0,
|
|
2103
2131
|
_RLE,
|
|
@@ -2105,13 +2133,13 @@ var RequestLimitExceeded = [
|
|
|
2105
2133
|
[_m, _TR],
|
|
2106
2134
|
[0, () => ThrottlingReasonList],
|
|
2107
2135
|
];
|
|
2108
|
-
schema.TypeRegistry.for(n0).registerError(RequestLimitExceeded
|
|
2109
|
-
var ResourceInUseException = [-3, n0, _RIUE, { [_e]: _c }, [_m], [0]];
|
|
2110
|
-
schema.TypeRegistry.for(n0).registerError(ResourceInUseException
|
|
2111
|
-
var ResourceNotFoundException = [-3, n0, _RNFEe, { [_e]: _c }, [_m], [0]];
|
|
2112
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
2113
|
-
var RestoreSummary = [3, n0, _RSes, 0, [_SBA, _STA, _RDT, _RIP], [0, 0, 4, 2]];
|
|
2114
|
-
var RestoreTableFromBackupInput = [
|
|
2136
|
+
schema.TypeRegistry.for(n0).registerError(RequestLimitExceeded$, RequestLimitExceeded);
|
|
2137
|
+
var ResourceInUseException$ = [-3, n0, _RIUE, { [_e]: _c }, [_m], [0]];
|
|
2138
|
+
schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
2139
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFEe, { [_e]: _c }, [_m], [0]];
|
|
2140
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
2141
|
+
var RestoreSummary$ = [3, n0, _RSes, 0, [_SBA, _STA, _RDT, _RIP], [0, 0, 4, 2]];
|
|
2142
|
+
var RestoreTableFromBackupInput$ = [
|
|
2115
2143
|
3,
|
|
2116
2144
|
n0,
|
|
2117
2145
|
_RTFBI,
|
|
@@ -2123,13 +2151,13 @@ var RestoreTableFromBackupInput = [
|
|
|
2123
2151
|
0,
|
|
2124
2152
|
() => GlobalSecondaryIndexList,
|
|
2125
2153
|
() => LocalSecondaryIndexList,
|
|
2126
|
-
() => ProvisionedThroughput
|
|
2127
|
-
() => OnDemandThroughput
|
|
2128
|
-
() => SSESpecification
|
|
2154
|
+
() => ProvisionedThroughput$,
|
|
2155
|
+
() => OnDemandThroughput$,
|
|
2156
|
+
() => SSESpecification$,
|
|
2129
2157
|
],
|
|
2130
2158
|
];
|
|
2131
|
-
var RestoreTableFromBackupOutput = [3, n0, _RTFBO, 0, [_TD], [() => TableDescription]];
|
|
2132
|
-
var RestoreTableToPointInTimeInput = [
|
|
2159
|
+
var RestoreTableFromBackupOutput$ = [3, n0, _RTFBO, 0, [_TD], [() => TableDescription$]];
|
|
2160
|
+
var RestoreTableToPointInTimeInput$ = [
|
|
2133
2161
|
3,
|
|
2134
2162
|
n0,
|
|
2135
2163
|
_RTTPITI,
|
|
@@ -2144,21 +2172,21 @@ var RestoreTableToPointInTimeInput = [
|
|
|
2144
2172
|
0,
|
|
2145
2173
|
() => GlobalSecondaryIndexList,
|
|
2146
2174
|
() => LocalSecondaryIndexList,
|
|
2147
|
-
() => ProvisionedThroughput
|
|
2148
|
-
() => OnDemandThroughput
|
|
2149
|
-
() => SSESpecification
|
|
2175
|
+
() => ProvisionedThroughput$,
|
|
2176
|
+
() => OnDemandThroughput$,
|
|
2177
|
+
() => SSESpecification$,
|
|
2150
2178
|
],
|
|
2151
2179
|
];
|
|
2152
|
-
var RestoreTableToPointInTimeOutput = [
|
|
2180
|
+
var RestoreTableToPointInTimeOutput$ = [
|
|
2153
2181
|
3,
|
|
2154
2182
|
n0,
|
|
2155
2183
|
_RTTPITO,
|
|
2156
2184
|
0,
|
|
2157
2185
|
[_TD],
|
|
2158
|
-
[() => TableDescription],
|
|
2186
|
+
[() => TableDescription$],
|
|
2159
2187
|
];
|
|
2160
|
-
var S3BucketSource = [3, n0, _SBS, 0, [_SBO, _SB, _SKP], [0, 0, 0]];
|
|
2161
|
-
var ScanInput = [
|
|
2188
|
+
var S3BucketSource$ = [3, n0, _SBS, 0, [_SBO, _SB, _SKP], [0, 0, 0]];
|
|
2189
|
+
var ScanInput$ = [
|
|
2162
2190
|
3,
|
|
2163
2191
|
n0,
|
|
2164
2192
|
_SI,
|
|
@@ -2183,23 +2211,23 @@ var ScanInput = [
|
|
|
2183
2211
|
2,
|
|
2184
2212
|
],
|
|
2185
2213
|
];
|
|
2186
|
-
var ScanOutput = [
|
|
2214
|
+
var ScanOutput$ = [
|
|
2187
2215
|
3,
|
|
2188
2216
|
n0,
|
|
2189
2217
|
_SO,
|
|
2190
2218
|
0,
|
|
2191
2219
|
[_It, _Cou, _SC, _LEK, _CC],
|
|
2192
|
-
[() => ItemList, 1, 1, () => Key, () => ConsumedCapacity],
|
|
2220
|
+
[() => ItemList, 1, 1, () => Key, () => ConsumedCapacity$],
|
|
2193
2221
|
];
|
|
2194
|
-
var SourceTableDetails = [
|
|
2222
|
+
var SourceTableDetails$ = [
|
|
2195
2223
|
3,
|
|
2196
2224
|
n0,
|
|
2197
2225
|
_STD,
|
|
2198
2226
|
0,
|
|
2199
2227
|
[_TN, _TI, _TA, _TSB, _KS, _TCDT, _PT, _ODT, _IC, _BM],
|
|
2200
|
-
[0, 0, 0, 1, () => KeySchema, 4, () => ProvisionedThroughput
|
|
2228
|
+
[0, 0, 0, 1, () => KeySchema, 4, () => ProvisionedThroughput$, () => OnDemandThroughput$, 1, 0],
|
|
2201
2229
|
];
|
|
2202
|
-
var SourceTableFeatureDetails = [
|
|
2230
|
+
var SourceTableFeatureDetails$ = [
|
|
2203
2231
|
3,
|
|
2204
2232
|
n0,
|
|
2205
2233
|
_STFD,
|
|
@@ -2208,17 +2236,17 @@ var SourceTableFeatureDetails = [
|
|
|
2208
2236
|
[
|
|
2209
2237
|
() => LocalSecondaryIndexes,
|
|
2210
2238
|
() => GlobalSecondaryIndexes,
|
|
2211
|
-
() => StreamSpecification
|
|
2212
|
-
() => TimeToLiveDescription
|
|
2213
|
-
() => SSEDescription
|
|
2239
|
+
() => StreamSpecification$,
|
|
2240
|
+
() => TimeToLiveDescription$,
|
|
2241
|
+
() => SSEDescription$,
|
|
2214
2242
|
],
|
|
2215
2243
|
];
|
|
2216
|
-
var SSEDescription = [3, n0, _SSED, 0, [_Sta, _SSET, _KMSMKA, _IEDT], [0, 0, 0, 4]];
|
|
2217
|
-
var SSESpecification = [3, n0, _SSES, 0, [_Ena, _SSET, _KMSMKI], [2, 0, 0]];
|
|
2218
|
-
var StreamSpecification = [3, n0, _SS, 0, [_SE, _SVT], [2, 0]];
|
|
2219
|
-
var TableAlreadyExistsException = [-3, n0, _TAEE, { [_e]: _c }, [_m], [0]];
|
|
2220
|
-
schema.TypeRegistry.for(n0).registerError(TableAlreadyExistsException
|
|
2221
|
-
var TableAutoScalingDescription = [
|
|
2244
|
+
var SSEDescription$ = [3, n0, _SSED, 0, [_Sta, _SSET, _KMSMKA, _IEDT], [0, 0, 0, 4]];
|
|
2245
|
+
var SSESpecification$ = [3, n0, _SSES, 0, [_Ena, _SSET, _KMSMKI], [2, 0, 0]];
|
|
2246
|
+
var StreamSpecification$ = [3, n0, _SS, 0, [_SE, _SVT], [2, 0]];
|
|
2247
|
+
var TableAlreadyExistsException$ = [-3, n0, _TAEE, { [_e]: _c }, [_m], [0]];
|
|
2248
|
+
schema.TypeRegistry.for(n0).registerError(TableAlreadyExistsException$, TableAlreadyExistsException);
|
|
2249
|
+
var TableAutoScalingDescription$ = [
|
|
2222
2250
|
3,
|
|
2223
2251
|
n0,
|
|
2224
2252
|
_TASD,
|
|
@@ -2226,8 +2254,8 @@ var TableAutoScalingDescription = [
|
|
|
2226
2254
|
[_TN, _TSa, _Rep],
|
|
2227
2255
|
[0, 0, () => ReplicaAutoScalingDescriptionList],
|
|
2228
2256
|
];
|
|
2229
|
-
var TableClassSummary = [3, n0, _TCS, 0, [_TC, _LUDT], [0, 4]];
|
|
2230
|
-
var TableCreationParameters = [
|
|
2257
|
+
var TableClassSummary$ = [3, n0, _TCS, 0, [_TC, _LUDT], [0, 4]];
|
|
2258
|
+
var TableCreationParameters$ = [
|
|
2231
2259
|
3,
|
|
2232
2260
|
n0,
|
|
2233
2261
|
_TCP,
|
|
@@ -2238,13 +2266,13 @@ var TableCreationParameters = [
|
|
|
2238
2266
|
() => AttributeDefinitions,
|
|
2239
2267
|
() => KeySchema,
|
|
2240
2268
|
0,
|
|
2241
|
-
() => ProvisionedThroughput
|
|
2242
|
-
() => OnDemandThroughput
|
|
2243
|
-
() => SSESpecification
|
|
2269
|
+
() => ProvisionedThroughput$,
|
|
2270
|
+
() => OnDemandThroughput$,
|
|
2271
|
+
() => SSESpecification$,
|
|
2244
2272
|
() => GlobalSecondaryIndexList,
|
|
2245
2273
|
],
|
|
2246
2274
|
];
|
|
2247
|
-
var TableDescription = [
|
|
2275
|
+
var TableDescription$ = [
|
|
2248
2276
|
3,
|
|
2249
2277
|
n0,
|
|
2250
2278
|
_TD,
|
|
@@ -2284,38 +2312,38 @@ var TableDescription = [
|
|
|
2284
2312
|
() => KeySchema,
|
|
2285
2313
|
0,
|
|
2286
2314
|
4,
|
|
2287
|
-
() => ProvisionedThroughputDescription
|
|
2315
|
+
() => ProvisionedThroughputDescription$,
|
|
2288
2316
|
1,
|
|
2289
2317
|
1,
|
|
2290
2318
|
0,
|
|
2291
2319
|
0,
|
|
2292
|
-
() => BillingModeSummary
|
|
2320
|
+
() => BillingModeSummary$,
|
|
2293
2321
|
() => LocalSecondaryIndexDescriptionList,
|
|
2294
2322
|
() => GlobalSecondaryIndexDescriptionList,
|
|
2295
|
-
() => StreamSpecification
|
|
2323
|
+
() => StreamSpecification$,
|
|
2296
2324
|
0,
|
|
2297
2325
|
0,
|
|
2298
2326
|
0,
|
|
2299
2327
|
() => ReplicaDescriptionList,
|
|
2300
2328
|
() => GlobalTableWitnessDescriptionList,
|
|
2301
|
-
() => RestoreSummary
|
|
2302
|
-
() => SSEDescription
|
|
2303
|
-
() => ArchivalSummary
|
|
2304
|
-
() => TableClassSummary
|
|
2329
|
+
() => RestoreSummary$,
|
|
2330
|
+
() => SSEDescription$,
|
|
2331
|
+
() => ArchivalSummary$,
|
|
2332
|
+
() => TableClassSummary$,
|
|
2305
2333
|
2,
|
|
2306
|
-
() => OnDemandThroughput
|
|
2307
|
-
() => TableWarmThroughputDescription
|
|
2334
|
+
() => OnDemandThroughput$,
|
|
2335
|
+
() => TableWarmThroughputDescription$,
|
|
2308
2336
|
0,
|
|
2309
2337
|
],
|
|
2310
2338
|
];
|
|
2311
|
-
var TableInUseException = [-3, n0, _TIUE, { [_e]: _c }, [_m], [0]];
|
|
2312
|
-
schema.TypeRegistry.for(n0).registerError(TableInUseException
|
|
2313
|
-
var TableNotFoundException = [-3, n0, _TNFE, { [_e]: _c }, [_m], [0]];
|
|
2314
|
-
schema.TypeRegistry.for(n0).registerError(TableNotFoundException
|
|
2315
|
-
var TableWarmThroughputDescription = [3, n0, _TWTD, 0, [_RUPS, _WUPS, _Sta], [1, 1, 0]];
|
|
2316
|
-
var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
|
|
2317
|
-
var TagResourceInput = [3, n0, _TRI, 0, [_RA, _Ta], [0, () => TagList]];
|
|
2318
|
-
var ThrottlingException = [
|
|
2339
|
+
var TableInUseException$ = [-3, n0, _TIUE, { [_e]: _c }, [_m], [0]];
|
|
2340
|
+
schema.TypeRegistry.for(n0).registerError(TableInUseException$, TableInUseException);
|
|
2341
|
+
var TableNotFoundException$ = [-3, n0, _TNFE, { [_e]: _c }, [_m], [0]];
|
|
2342
|
+
schema.TypeRegistry.for(n0).registerError(TableNotFoundException$, TableNotFoundException);
|
|
2343
|
+
var TableWarmThroughputDescription$ = [3, n0, _TWTD, 0, [_RUPS, _WUPS, _Sta], [1, 1, 0]];
|
|
2344
|
+
var Tag$ = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
|
|
2345
|
+
var TagResourceInput$ = [3, n0, _TRI, 0, [_RA, _Ta], [0, () => TagList]];
|
|
2346
|
+
var ThrottlingException$ = [
|
|
2319
2347
|
-3,
|
|
2320
2348
|
n0,
|
|
2321
2349
|
_TE,
|
|
@@ -2323,12 +2351,12 @@ var ThrottlingException = [
|
|
|
2323
2351
|
[_m, _tR],
|
|
2324
2352
|
[0, () => ThrottlingReasonList],
|
|
2325
2353
|
];
|
|
2326
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
2327
|
-
var ThrottlingReason = [3, n0, _TRh, 0, [_r, _re], [0, 0]];
|
|
2328
|
-
var TimeToLiveDescription = [3, n0, _TTLD, 0, [_TTLS, _AN], [0, 0]];
|
|
2329
|
-
var TimeToLiveSpecification = [3, n0, _TTLSi, 0, [_Ena, _AN], [2, 0]];
|
|
2330
|
-
var TransactGetItem = [3, n0, _TGI, 0, [_G], [() => Get]];
|
|
2331
|
-
var TransactGetItemsInput = [
|
|
2354
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
2355
|
+
var ThrottlingReason$ = [3, n0, _TRh, 0, [_r, _re], [0, 0]];
|
|
2356
|
+
var TimeToLiveDescription$ = [3, n0, _TTLD, 0, [_TTLS, _AN], [0, 0]];
|
|
2357
|
+
var TimeToLiveSpecification$ = [3, n0, _TTLSi, 0, [_Ena, _AN], [2, 0]];
|
|
2358
|
+
var TransactGetItem$ = [3, n0, _TGI, 0, [_G], [() => Get$]];
|
|
2359
|
+
var TransactGetItemsInput$ = [
|
|
2332
2360
|
3,
|
|
2333
2361
|
n0,
|
|
2334
2362
|
_TGII,
|
|
@@ -2336,7 +2364,7 @@ var TransactGetItemsInput = [
|
|
|
2336
2364
|
[_TIr, _RCC],
|
|
2337
2365
|
[() => TransactGetItemList, 0],
|
|
2338
2366
|
];
|
|
2339
|
-
var TransactGetItemsOutput = [
|
|
2367
|
+
var TransactGetItemsOutput$ = [
|
|
2340
2368
|
3,
|
|
2341
2369
|
n0,
|
|
2342
2370
|
_TGIO,
|
|
@@ -2344,7 +2372,7 @@ var TransactGetItemsOutput = [
|
|
|
2344
2372
|
[_CC, _R],
|
|
2345
2373
|
[() => ConsumedCapacityMultiple, () => ItemResponseList],
|
|
2346
2374
|
];
|
|
2347
|
-
var TransactionCanceledException = [
|
|
2375
|
+
var TransactionCanceledException$ = [
|
|
2348
2376
|
-3,
|
|
2349
2377
|
n0,
|
|
2350
2378
|
_TCE,
|
|
@@ -2352,20 +2380,20 @@ var TransactionCanceledException = [
|
|
|
2352
2380
|
[_M, _CRan],
|
|
2353
2381
|
[0, () => CancellationReasonList],
|
|
2354
2382
|
];
|
|
2355
|
-
schema.TypeRegistry.for(n0).registerError(TransactionCanceledException
|
|
2356
|
-
var TransactionConflictException = [-3, n0, _TCEr, { [_e]: _c }, [_m], [0]];
|
|
2357
|
-
schema.TypeRegistry.for(n0).registerError(TransactionConflictException
|
|
2358
|
-
var TransactionInProgressException = [-3, n0, _TIPE, { [_e]: _c }, [_M], [0]];
|
|
2359
|
-
schema.TypeRegistry.for(n0).registerError(TransactionInProgressException
|
|
2360
|
-
var TransactWriteItem = [
|
|
2383
|
+
schema.TypeRegistry.for(n0).registerError(TransactionCanceledException$, TransactionCanceledException);
|
|
2384
|
+
var TransactionConflictException$ = [-3, n0, _TCEr, { [_e]: _c }, [_m], [0]];
|
|
2385
|
+
schema.TypeRegistry.for(n0).registerError(TransactionConflictException$, TransactionConflictException);
|
|
2386
|
+
var TransactionInProgressException$ = [-3, n0, _TIPE, { [_e]: _c }, [_M], [0]];
|
|
2387
|
+
schema.TypeRegistry.for(n0).registerError(TransactionInProgressException$, TransactionInProgressException);
|
|
2388
|
+
var TransactWriteItem$ = [
|
|
2361
2389
|
3,
|
|
2362
2390
|
n0,
|
|
2363
2391
|
_TWI,
|
|
2364
2392
|
0,
|
|
2365
2393
|
[_CCo, _Pu, _De, _U],
|
|
2366
|
-
[() => ConditionCheck
|
|
2394
|
+
[() => ConditionCheck$, () => Put$, () => Delete$, () => Update$],
|
|
2367
2395
|
];
|
|
2368
|
-
var TransactWriteItemsInput = [
|
|
2396
|
+
var TransactWriteItemsInput$ = [
|
|
2369
2397
|
3,
|
|
2370
2398
|
n0,
|
|
2371
2399
|
_TWII,
|
|
@@ -2373,7 +2401,7 @@ var TransactWriteItemsInput = [
|
|
|
2373
2401
|
[_TIr, _RCC, _RICM, _CRT],
|
|
2374
2402
|
[() => TransactWriteItemList, 0, 0, [0, 4]],
|
|
2375
2403
|
];
|
|
2376
|
-
var TransactWriteItemsOutput = [
|
|
2404
|
+
var TransactWriteItemsOutput$ = [
|
|
2377
2405
|
3,
|
|
2378
2406
|
n0,
|
|
2379
2407
|
_TWIO,
|
|
@@ -2381,8 +2409,8 @@ var TransactWriteItemsOutput = [
|
|
|
2381
2409
|
[_CC, _ICM],
|
|
2382
2410
|
[() => ConsumedCapacityMultiple, () => ItemCollectionMetricsPerTable],
|
|
2383
2411
|
];
|
|
2384
|
-
var UntagResourceInput = [3, n0, _URI, 0, [_RA, _TK], [0, 64 | 0]];
|
|
2385
|
-
var Update = [
|
|
2412
|
+
var UntagResourceInput$ = [3, n0, _URI, 0, [_RA, _TK], [0, 64 | 0]];
|
|
2413
|
+
var Update$ = [
|
|
2386
2414
|
3,
|
|
2387
2415
|
n0,
|
|
2388
2416
|
_U,
|
|
@@ -2390,23 +2418,23 @@ var Update = [
|
|
|
2390
2418
|
[_K, _UE, _TN, _CE, _EAN, _EAV, _RVOCCF],
|
|
2391
2419
|
[() => Key, 0, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0],
|
|
2392
2420
|
];
|
|
2393
|
-
var UpdateContinuousBackupsInput = [
|
|
2421
|
+
var UpdateContinuousBackupsInput$ = [
|
|
2394
2422
|
3,
|
|
2395
2423
|
n0,
|
|
2396
2424
|
_UCBI,
|
|
2397
2425
|
0,
|
|
2398
2426
|
[_TN, _PITRSo],
|
|
2399
|
-
[0, () => PointInTimeRecoverySpecification],
|
|
2427
|
+
[0, () => PointInTimeRecoverySpecification$],
|
|
2400
2428
|
];
|
|
2401
|
-
var UpdateContinuousBackupsOutput = [
|
|
2429
|
+
var UpdateContinuousBackupsOutput$ = [
|
|
2402
2430
|
3,
|
|
2403
2431
|
n0,
|
|
2404
2432
|
_UCBO,
|
|
2405
2433
|
0,
|
|
2406
2434
|
[_CBD],
|
|
2407
|
-
[() => ContinuousBackupsDescription],
|
|
2435
|
+
[() => ContinuousBackupsDescription$],
|
|
2408
2436
|
];
|
|
2409
|
-
var UpdateContributorInsightsInput = [
|
|
2437
|
+
var UpdateContributorInsightsInput$ = [
|
|
2410
2438
|
3,
|
|
2411
2439
|
n0,
|
|
2412
2440
|
_UCII,
|
|
@@ -2414,7 +2442,7 @@ var UpdateContributorInsightsInput = [
|
|
|
2414
2442
|
[_TN, _IN, _CIA, _CIM],
|
|
2415
2443
|
[0, 0, 0, 0],
|
|
2416
2444
|
];
|
|
2417
|
-
var UpdateContributorInsightsOutput = [
|
|
2445
|
+
var UpdateContributorInsightsOutput$ = [
|
|
2418
2446
|
3,
|
|
2419
2447
|
n0,
|
|
2420
2448
|
_UCIO,
|
|
@@ -2422,15 +2450,15 @@ var UpdateContributorInsightsOutput = [
|
|
|
2422
2450
|
[_TN, _IN, _CISo, _CIM],
|
|
2423
2451
|
[0, 0, 0, 0],
|
|
2424
2452
|
];
|
|
2425
|
-
var UpdateGlobalSecondaryIndexAction = [
|
|
2453
|
+
var UpdateGlobalSecondaryIndexAction$ = [
|
|
2426
2454
|
3,
|
|
2427
2455
|
n0,
|
|
2428
2456
|
_UGSIA,
|
|
2429
2457
|
0,
|
|
2430
2458
|
[_IN, _PT, _ODT, _WT],
|
|
2431
|
-
[0, () => ProvisionedThroughput
|
|
2459
|
+
[0, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => WarmThroughput$],
|
|
2432
2460
|
];
|
|
2433
|
-
var UpdateGlobalTableInput = [
|
|
2461
|
+
var UpdateGlobalTableInput$ = [
|
|
2434
2462
|
3,
|
|
2435
2463
|
n0,
|
|
2436
2464
|
_UGTI,
|
|
@@ -2438,8 +2466,8 @@ var UpdateGlobalTableInput = [
|
|
|
2438
2466
|
[_GTN, _RUe],
|
|
2439
2467
|
[0, () => ReplicaUpdateList],
|
|
2440
2468
|
];
|
|
2441
|
-
var UpdateGlobalTableOutput = [3, n0, _UGTO, 0, [_GTD], [() => GlobalTableDescription]];
|
|
2442
|
-
var UpdateGlobalTableSettingsInput = [
|
|
2469
|
+
var UpdateGlobalTableOutput$ = [3, n0, _UGTO, 0, [_GTD], [() => GlobalTableDescription$]];
|
|
2470
|
+
var UpdateGlobalTableSettingsInput$ = [
|
|
2443
2471
|
3,
|
|
2444
2472
|
n0,
|
|
2445
2473
|
_UGTSI,
|
|
@@ -2449,12 +2477,12 @@ var UpdateGlobalTableSettingsInput = [
|
|
|
2449
2477
|
0,
|
|
2450
2478
|
0,
|
|
2451
2479
|
1,
|
|
2452
|
-
() => AutoScalingSettingsUpdate
|
|
2480
|
+
() => AutoScalingSettingsUpdate$,
|
|
2453
2481
|
() => GlobalTableGlobalSecondaryIndexSettingsUpdateList,
|
|
2454
2482
|
() => ReplicaSettingsUpdateList,
|
|
2455
2483
|
],
|
|
2456
2484
|
];
|
|
2457
|
-
var UpdateGlobalTableSettingsOutput = [
|
|
2485
|
+
var UpdateGlobalTableSettingsOutput$ = [
|
|
2458
2486
|
3,
|
|
2459
2487
|
n0,
|
|
2460
2488
|
_UGTSO,
|
|
@@ -2462,7 +2490,7 @@ var UpdateGlobalTableSettingsOutput = [
|
|
|
2462
2490
|
[_GTN, _RS],
|
|
2463
2491
|
[0, () => ReplicaSettingsDescriptionList],
|
|
2464
2492
|
];
|
|
2465
|
-
var UpdateItemInput = [
|
|
2493
|
+
var UpdateItemInput$ = [
|
|
2466
2494
|
3,
|
|
2467
2495
|
n0,
|
|
2468
2496
|
_UII,
|
|
@@ -2484,32 +2512,32 @@ var UpdateItemInput = [
|
|
|
2484
2512
|
0,
|
|
2485
2513
|
],
|
|
2486
2514
|
];
|
|
2487
|
-
var UpdateItemOutput = [
|
|
2515
|
+
var UpdateItemOutput$ = [
|
|
2488
2516
|
3,
|
|
2489
2517
|
n0,
|
|
2490
2518
|
_UIO,
|
|
2491
2519
|
0,
|
|
2492
2520
|
[_At, _CC, _ICM],
|
|
2493
|
-
[() => AttributeMap, () => ConsumedCapacity
|
|
2521
|
+
[() => AttributeMap, () => ConsumedCapacity$, () => ItemCollectionMetrics$],
|
|
2494
2522
|
];
|
|
2495
|
-
var UpdateKinesisStreamingConfiguration = [3, n0, _UKSC, 0, [_ACDTP], [0]];
|
|
2496
|
-
var UpdateKinesisStreamingDestinationInput = [
|
|
2523
|
+
var UpdateKinesisStreamingConfiguration$ = [3, n0, _UKSC, 0, [_ACDTP], [0]];
|
|
2524
|
+
var UpdateKinesisStreamingDestinationInput$ = [
|
|
2497
2525
|
3,
|
|
2498
2526
|
n0,
|
|
2499
2527
|
_UKSDI,
|
|
2500
2528
|
0,
|
|
2501
2529
|
[_TN, _SA, _UKSC],
|
|
2502
|
-
[0, 0, () => UpdateKinesisStreamingConfiguration],
|
|
2530
|
+
[0, 0, () => UpdateKinesisStreamingConfiguration$],
|
|
2503
2531
|
];
|
|
2504
|
-
var UpdateKinesisStreamingDestinationOutput = [
|
|
2532
|
+
var UpdateKinesisStreamingDestinationOutput$ = [
|
|
2505
2533
|
3,
|
|
2506
2534
|
n0,
|
|
2507
2535
|
_UKSDO,
|
|
2508
2536
|
0,
|
|
2509
2537
|
[_TN, _SA, _DS, _UKSC],
|
|
2510
|
-
[0, 0, 0, () => UpdateKinesisStreamingConfiguration],
|
|
2538
|
+
[0, 0, 0, () => UpdateKinesisStreamingConfiguration$],
|
|
2511
2539
|
];
|
|
2512
|
-
var UpdateReplicationGroupMemberAction = [
|
|
2540
|
+
var UpdateReplicationGroupMemberAction$ = [
|
|
2513
2541
|
3,
|
|
2514
2542
|
n0,
|
|
2515
2543
|
_URGMA,
|
|
@@ -2518,13 +2546,13 @@ var UpdateReplicationGroupMemberAction = [
|
|
|
2518
2546
|
[
|
|
2519
2547
|
0,
|
|
2520
2548
|
0,
|
|
2521
|
-
() => ProvisionedThroughputOverride
|
|
2522
|
-
() => OnDemandThroughputOverride
|
|
2549
|
+
() => ProvisionedThroughputOverride$,
|
|
2550
|
+
() => OnDemandThroughputOverride$,
|
|
2523
2551
|
() => ReplicaGlobalSecondaryIndexList,
|
|
2524
2552
|
0,
|
|
2525
2553
|
],
|
|
2526
2554
|
];
|
|
2527
|
-
var UpdateTableInput = [
|
|
2555
|
+
var UpdateTableInput$ = [
|
|
2528
2556
|
3,
|
|
2529
2557
|
n0,
|
|
2530
2558
|
_UTI,
|
|
@@ -2534,21 +2562,21 @@ var UpdateTableInput = [
|
|
|
2534
2562
|
() => AttributeDefinitions,
|
|
2535
2563
|
0,
|
|
2536
2564
|
0,
|
|
2537
|
-
() => ProvisionedThroughput
|
|
2565
|
+
() => ProvisionedThroughput$,
|
|
2538
2566
|
() => GlobalSecondaryIndexUpdateList,
|
|
2539
|
-
() => StreamSpecification
|
|
2540
|
-
() => SSESpecification
|
|
2567
|
+
() => StreamSpecification$,
|
|
2568
|
+
() => SSESpecification$,
|
|
2541
2569
|
() => ReplicationGroupUpdateList,
|
|
2542
2570
|
0,
|
|
2543
2571
|
2,
|
|
2544
2572
|
0,
|
|
2545
2573
|
() => GlobalTableWitnessGroupUpdateList,
|
|
2546
|
-
() => OnDemandThroughput
|
|
2547
|
-
() => WarmThroughput
|
|
2574
|
+
() => OnDemandThroughput$,
|
|
2575
|
+
() => WarmThroughput$,
|
|
2548
2576
|
],
|
|
2549
2577
|
];
|
|
2550
|
-
var UpdateTableOutput = [3, n0, _UTO, 0, [_TD], [() => TableDescription]];
|
|
2551
|
-
var UpdateTableReplicaAutoScalingInput = [
|
|
2578
|
+
var UpdateTableOutput$ = [3, n0, _UTO, 0, [_TD], [() => TableDescription$]];
|
|
2579
|
+
var UpdateTableReplicaAutoScalingInput$ = [
|
|
2552
2580
|
3,
|
|
2553
2581
|
n0,
|
|
2554
2582
|
_UTRASI,
|
|
@@ -2557,179 +2585,156 @@ var UpdateTableReplicaAutoScalingInput = [
|
|
|
2557
2585
|
[
|
|
2558
2586
|
() => GlobalSecondaryIndexAutoScalingUpdateList,
|
|
2559
2587
|
0,
|
|
2560
|
-
() => AutoScalingSettingsUpdate
|
|
2588
|
+
() => AutoScalingSettingsUpdate$,
|
|
2561
2589
|
() => ReplicaAutoScalingUpdateList,
|
|
2562
2590
|
],
|
|
2563
2591
|
];
|
|
2564
|
-
var UpdateTableReplicaAutoScalingOutput = [
|
|
2592
|
+
var UpdateTableReplicaAutoScalingOutput$ = [
|
|
2565
2593
|
3,
|
|
2566
2594
|
n0,
|
|
2567
2595
|
_UTRASO,
|
|
2568
2596
|
0,
|
|
2569
2597
|
[_TASD],
|
|
2570
|
-
[() => TableAutoScalingDescription],
|
|
2598
|
+
[() => TableAutoScalingDescription$],
|
|
2571
2599
|
];
|
|
2572
|
-
var UpdateTimeToLiveInput = [
|
|
2600
|
+
var UpdateTimeToLiveInput$ = [
|
|
2573
2601
|
3,
|
|
2574
2602
|
n0,
|
|
2575
2603
|
_UTTLI,
|
|
2576
2604
|
0,
|
|
2577
2605
|
[_TN, _TTLSi],
|
|
2578
|
-
[0, () => TimeToLiveSpecification],
|
|
2606
|
+
[0, () => TimeToLiveSpecification$],
|
|
2579
2607
|
];
|
|
2580
|
-
var UpdateTimeToLiveOutput = [
|
|
2608
|
+
var UpdateTimeToLiveOutput$ = [
|
|
2581
2609
|
3,
|
|
2582
2610
|
n0,
|
|
2583
2611
|
_UTTLO,
|
|
2584
2612
|
0,
|
|
2585
2613
|
[_TTLSi],
|
|
2586
|
-
[() => TimeToLiveSpecification],
|
|
2614
|
+
[() => TimeToLiveSpecification$],
|
|
2587
2615
|
];
|
|
2588
|
-
var WarmThroughput = [3, n0, _WT, 0, [_RUPS, _WUPS], [1, 1]];
|
|
2589
|
-
var WriteRequest = [
|
|
2590
|
-
|
|
2591
|
-
var DynamoDBServiceException = [-3, _sm, "DynamoDBServiceException", 0, [], []];
|
|
2592
|
-
schema.TypeRegistry.for(_sm).registerError(DynamoDBServiceException, DynamoDBServiceException$1);
|
|
2593
|
-
var AttributeDefinitions = [1, n0, _ADt, 0, () => AttributeDefinition];
|
|
2594
|
-
var AttributeValueList = [1, n0, _AVL, 0, () => AttributeValue];
|
|
2595
|
-
var AutoScalingPolicyDescriptionList = [1, n0, _ASPDL, 0, () => AutoScalingPolicyDescription];
|
|
2596
|
-
var BackupSummaries = [1, n0, _BSac, 0, () => BackupSummary];
|
|
2597
|
-
var CancellationReasonList = [1, n0, _CRL, 0, () => CancellationReason];
|
|
2598
|
-
var ConsumedCapacityMultiple = [1, n0, _CCM, 0, () => ConsumedCapacity];
|
|
2599
|
-
var ContributorInsightsSummaries = [1, n0, _CISon, 0, () => ContributorInsightsSummary];
|
|
2600
|
-
var Endpoints = [1, n0, _En, 0, () => Endpoint];
|
|
2601
|
-
var ExportSummaries = [1, n0, _ESxp, 0, () => ExportSummary];
|
|
2602
|
-
var GlobalSecondaryIndexAutoScalingUpdateList = [
|
|
2603
|
-
1,
|
|
2616
|
+
var WarmThroughput$ = [3, n0, _WT, 0, [_RUPS, _WUPS], [1, 1]];
|
|
2617
|
+
var WriteRequest$ = [
|
|
2618
|
+
3,
|
|
2604
2619
|
n0,
|
|
2605
|
-
|
|
2620
|
+
_WR,
|
|
2606
2621
|
0,
|
|
2607
|
-
|
|
2622
|
+
[_PR, _DR],
|
|
2623
|
+
[() => PutRequest$, () => DeleteRequest$],
|
|
2608
2624
|
];
|
|
2609
|
-
var
|
|
2625
|
+
var __Unit = "unit";
|
|
2626
|
+
var DynamoDBServiceException$ = [-3, _sm, "DynamoDBServiceException", 0, [], []];
|
|
2627
|
+
schema.TypeRegistry.for(_sm).registerError(DynamoDBServiceException$, DynamoDBServiceException);
|
|
2628
|
+
var AttributeDefinitions = [1, n0, _ADt, 0, () => AttributeDefinition$];
|
|
2629
|
+
var AttributeValueList = [1, n0, _AVL, 0, () => AttributeValue$];
|
|
2630
|
+
var AutoScalingPolicyDescriptionList = [1, n0, _ASPDL, 0, () => AutoScalingPolicyDescription$];
|
|
2631
|
+
var BackupSummaries = [1, n0, _BSac, 0, () => BackupSummary$];
|
|
2632
|
+
var CancellationReasonList = [1, n0, _CRL, 0, () => CancellationReason$];
|
|
2633
|
+
var ConsumedCapacityMultiple = [1, n0, _CCM, 0, () => ConsumedCapacity$];
|
|
2634
|
+
var ContributorInsightsSummaries = [1, n0, _CISon, 0, () => ContributorInsightsSummary$];
|
|
2635
|
+
var Endpoints = [1, n0, _En, 0, () => Endpoint$];
|
|
2636
|
+
var ExportSummaries = [1, n0, _ESxp, 0, () => ExportSummary$];
|
|
2637
|
+
var GlobalSecondaryIndexAutoScalingUpdateList = [
|
|
2610
2638
|
1,
|
|
2611
2639
|
n0,
|
|
2612
|
-
|
|
2640
|
+
_GSIASUL,
|
|
2613
2641
|
0,
|
|
2614
|
-
() =>
|
|
2642
|
+
() => GlobalSecondaryIndexAutoScalingUpdate$,
|
|
2615
2643
|
];
|
|
2616
|
-
var
|
|
2617
|
-
var
|
|
2618
|
-
var
|
|
2644
|
+
var GlobalSecondaryIndexDescriptionList = [1, n0, _GSIDL, 0, () => GlobalSecondaryIndexDescription$];
|
|
2645
|
+
var GlobalSecondaryIndexes = [1, n0, _GSI, 0, () => GlobalSecondaryIndexInfo$];
|
|
2646
|
+
var GlobalSecondaryIndexList = [1, n0, _GSIL, 0, () => GlobalSecondaryIndex$];
|
|
2647
|
+
var GlobalSecondaryIndexUpdateList = [1, n0, _GSIUL, 0, () => GlobalSecondaryIndexUpdate$];
|
|
2619
2648
|
var GlobalTableGlobalSecondaryIndexSettingsUpdateList = [
|
|
2620
2649
|
1,
|
|
2621
2650
|
n0,
|
|
2622
2651
|
_GTGSISUL,
|
|
2623
2652
|
0,
|
|
2624
|
-
() => GlobalTableGlobalSecondaryIndexSettingsUpdate
|
|
2653
|
+
() => GlobalTableGlobalSecondaryIndexSettingsUpdate$,
|
|
2625
2654
|
];
|
|
2626
|
-
var GlobalTableList = [1, n0, _GTL, 0, () => GlobalTable];
|
|
2627
|
-
var GlobalTableWitnessDescriptionList = [
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
0,
|
|
2632
|
-
() => GlobalTableWitnessDescription,
|
|
2633
|
-
];
|
|
2634
|
-
var GlobalTableWitnessGroupUpdateList = [
|
|
2635
|
-
1,
|
|
2636
|
-
n0,
|
|
2637
|
-
_GTWGUL,
|
|
2638
|
-
0,
|
|
2639
|
-
() => GlobalTableWitnessGroupUpdate,
|
|
2640
|
-
];
|
|
2641
|
-
var ImportSummaryList = [1, n0, _ISL, 0, () => ImportSummary];
|
|
2642
|
-
var ItemCollectionMetricsMultiple = [1, n0, _ICMM, 0, () => ItemCollectionMetrics];
|
|
2655
|
+
var GlobalTableList = [1, n0, _GTL, 0, () => GlobalTable$];
|
|
2656
|
+
var GlobalTableWitnessDescriptionList = [1, n0, _GTWDL, 0, () => GlobalTableWitnessDescription$];
|
|
2657
|
+
var GlobalTableWitnessGroupUpdateList = [1, n0, _GTWGUL, 0, () => GlobalTableWitnessGroupUpdate$];
|
|
2658
|
+
var ImportSummaryList = [1, n0, _ISL, 0, () => ImportSummary$];
|
|
2659
|
+
var ItemCollectionMetricsMultiple = [1, n0, _ICMM, 0, () => ItemCollectionMetrics$];
|
|
2643
2660
|
var ItemList = [1, n0, _IL, 0, () => AttributeMap];
|
|
2644
|
-
var ItemResponseList = [1, n0, _IRL, 0, () => ItemResponse];
|
|
2661
|
+
var ItemResponseList = [1, n0, _IRL, 0, () => ItemResponse$];
|
|
2645
2662
|
var KeyList = [1, n0, _KL, 0, () => Key];
|
|
2646
|
-
var KeySchema = [1, n0, _KS, 0, () => KeySchemaElement];
|
|
2647
|
-
var KinesisDataStreamDestinations = [1, n0, _KDSD, 0, () => KinesisDataStreamDestination];
|
|
2648
|
-
var ListAttributeValue = [1, n0, _LAV, 0, () => AttributeValue];
|
|
2649
|
-
var LocalSecondaryIndexDescriptionList = [
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
];
|
|
2656
|
-
var
|
|
2657
|
-
var
|
|
2658
|
-
var
|
|
2659
|
-
var PartiQLBatchRequest = [1, n0, _PQLBR, 0, () => BatchStatementRequest];
|
|
2660
|
-
var PartiQLBatchResponse = [1, n0, _PQLBRa, 0, () => BatchStatementResponse];
|
|
2661
|
-
var PreparedStatementParameters = [1, n0, _PSP, 0, () => AttributeValue];
|
|
2662
|
-
var ReplicaAutoScalingDescriptionList = [
|
|
2663
|
-
1,
|
|
2664
|
-
n0,
|
|
2665
|
-
_RASDL,
|
|
2666
|
-
0,
|
|
2667
|
-
() => ReplicaAutoScalingDescription,
|
|
2668
|
-
];
|
|
2669
|
-
var ReplicaAutoScalingUpdateList = [1, n0, _RASUL, 0, () => ReplicaAutoScalingUpdate];
|
|
2670
|
-
var ReplicaDescriptionList = [1, n0, _RDL, 0, () => ReplicaDescription];
|
|
2663
|
+
var KeySchema = [1, n0, _KS, 0, () => KeySchemaElement$];
|
|
2664
|
+
var KinesisDataStreamDestinations = [1, n0, _KDSD, 0, () => KinesisDataStreamDestination$];
|
|
2665
|
+
var ListAttributeValue = [1, n0, _LAV, 0, () => AttributeValue$];
|
|
2666
|
+
var LocalSecondaryIndexDescriptionList = [1, n0, _LSIDL, 0, () => LocalSecondaryIndexDescription$];
|
|
2667
|
+
var LocalSecondaryIndexes = [1, n0, _LSI, 0, () => LocalSecondaryIndexInfo$];
|
|
2668
|
+
var LocalSecondaryIndexList = [1, n0, _LSIL, 0, () => LocalSecondaryIndex$];
|
|
2669
|
+
var ParameterizedStatements = [1, n0, _PSar, 0, () => ParameterizedStatement$];
|
|
2670
|
+
var PartiQLBatchRequest = [1, n0, _PQLBR, 0, () => BatchStatementRequest$];
|
|
2671
|
+
var PartiQLBatchResponse = [1, n0, _PQLBRa, 0, () => BatchStatementResponse$];
|
|
2672
|
+
var PreparedStatementParameters = [1, n0, _PSP, 0, () => AttributeValue$];
|
|
2673
|
+
var ReplicaAutoScalingDescriptionList = [1, n0, _RASDL, 0, () => ReplicaAutoScalingDescription$];
|
|
2674
|
+
var ReplicaAutoScalingUpdateList = [1, n0, _RASUL, 0, () => ReplicaAutoScalingUpdate$];
|
|
2675
|
+
var ReplicaDescriptionList = [1, n0, _RDL, 0, () => ReplicaDescription$];
|
|
2671
2676
|
var ReplicaGlobalSecondaryIndexAutoScalingDescriptionList = [
|
|
2672
2677
|
1,
|
|
2673
2678
|
n0,
|
|
2674
2679
|
_RGSIASDL,
|
|
2675
2680
|
0,
|
|
2676
|
-
() => ReplicaGlobalSecondaryIndexAutoScalingDescription
|
|
2681
|
+
() => ReplicaGlobalSecondaryIndexAutoScalingDescription$,
|
|
2677
2682
|
];
|
|
2678
2683
|
var ReplicaGlobalSecondaryIndexAutoScalingUpdateList = [
|
|
2679
2684
|
1,
|
|
2680
2685
|
n0,
|
|
2681
2686
|
_RGSIASUL,
|
|
2682
2687
|
0,
|
|
2683
|
-
() => ReplicaGlobalSecondaryIndexAutoScalingUpdate
|
|
2688
|
+
() => ReplicaGlobalSecondaryIndexAutoScalingUpdate$,
|
|
2684
2689
|
];
|
|
2685
2690
|
var ReplicaGlobalSecondaryIndexDescriptionList = [
|
|
2686
2691
|
1,
|
|
2687
2692
|
n0,
|
|
2688
2693
|
_RGSIDL,
|
|
2689
2694
|
0,
|
|
2690
|
-
() => ReplicaGlobalSecondaryIndexDescription
|
|
2695
|
+
() => ReplicaGlobalSecondaryIndexDescription$,
|
|
2691
2696
|
];
|
|
2692
|
-
var ReplicaGlobalSecondaryIndexList = [1, n0, _RGSIL, 0, () => ReplicaGlobalSecondaryIndex];
|
|
2697
|
+
var ReplicaGlobalSecondaryIndexList = [1, n0, _RGSIL, 0, () => ReplicaGlobalSecondaryIndex$];
|
|
2693
2698
|
var ReplicaGlobalSecondaryIndexSettingsDescriptionList = [
|
|
2694
2699
|
1,
|
|
2695
2700
|
n0,
|
|
2696
2701
|
_RGSISDL,
|
|
2697
2702
|
0,
|
|
2698
|
-
() => ReplicaGlobalSecondaryIndexSettingsDescription
|
|
2703
|
+
() => ReplicaGlobalSecondaryIndexSettingsDescription$,
|
|
2699
2704
|
];
|
|
2700
2705
|
var ReplicaGlobalSecondaryIndexSettingsUpdateList = [
|
|
2701
2706
|
1,
|
|
2702
2707
|
n0,
|
|
2703
2708
|
_RGSISUL,
|
|
2704
2709
|
0,
|
|
2705
|
-
() => ReplicaGlobalSecondaryIndexSettingsUpdate
|
|
2706
|
-
];
|
|
2707
|
-
var ReplicaList = [1, n0, _RL, 0, () => Replica];
|
|
2708
|
-
var ReplicaSettingsDescriptionList = [1, n0, _RSDL, 0, () => ReplicaSettingsDescription];
|
|
2709
|
-
var ReplicaSettingsUpdateList = [1, n0, _RSUL, 0, () => ReplicaSettingsUpdate];
|
|
2710
|
-
var ReplicationGroupUpdateList = [1, n0, _RGUL, 0, () => ReplicationGroupUpdate];
|
|
2711
|
-
var ReplicaUpdateList = [1, n0, _RUL, 0, () => ReplicaUpdate];
|
|
2712
|
-
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
2713
|
-
var ThrottlingReasonList = [1, n0, _TRL, 0, () => ThrottlingReason];
|
|
2714
|
-
var TransactGetItemList = [1, n0, _TGIL, 0, () => TransactGetItem];
|
|
2715
|
-
var TransactWriteItemList = [1, n0, _TWIL, 0, () => TransactWriteItem];
|
|
2716
|
-
var WriteRequests = [1, n0, _WRr, 0, () => WriteRequest];
|
|
2717
|
-
var AttributeMap = [2, n0, _AM, 0, 0, () => AttributeValue];
|
|
2718
|
-
var AttributeUpdates = [2, n0, _AU, 0, 0, () => AttributeValueUpdate];
|
|
2719
|
-
var BatchGetRequestMap = [2, n0, _BGRMa, 0, 0, () => KeysAndAttributes];
|
|
2710
|
+
() => ReplicaGlobalSecondaryIndexSettingsUpdate$,
|
|
2711
|
+
];
|
|
2712
|
+
var ReplicaList = [1, n0, _RL, 0, () => Replica$];
|
|
2713
|
+
var ReplicaSettingsDescriptionList = [1, n0, _RSDL, 0, () => ReplicaSettingsDescription$];
|
|
2714
|
+
var ReplicaSettingsUpdateList = [1, n0, _RSUL, 0, () => ReplicaSettingsUpdate$];
|
|
2715
|
+
var ReplicationGroupUpdateList = [1, n0, _RGUL, 0, () => ReplicationGroupUpdate$];
|
|
2716
|
+
var ReplicaUpdateList = [1, n0, _RUL, 0, () => ReplicaUpdate$];
|
|
2717
|
+
var TagList = [1, n0, _TL, 0, () => Tag$];
|
|
2718
|
+
var ThrottlingReasonList = [1, n0, _TRL, 0, () => ThrottlingReason$];
|
|
2719
|
+
var TransactGetItemList = [1, n0, _TGIL, 0, () => TransactGetItem$];
|
|
2720
|
+
var TransactWriteItemList = [1, n0, _TWIL, 0, () => TransactWriteItem$];
|
|
2721
|
+
var WriteRequests = [1, n0, _WRr, 0, () => WriteRequest$];
|
|
2722
|
+
var AttributeMap = [2, n0, _AM, 0, 0, () => AttributeValue$];
|
|
2723
|
+
var AttributeUpdates = [2, n0, _AU, 0, 0, () => AttributeValueUpdate$];
|
|
2724
|
+
var BatchGetRequestMap = [2, n0, _BGRMa, 0, 0, () => KeysAndAttributes$];
|
|
2720
2725
|
var BatchGetResponseMap = [2, n0, _BGRM, 0, 0, () => ItemList];
|
|
2721
2726
|
var BatchWriteItemRequestMap = [2, n0, _BWIRM, 0, 0, () => WriteRequests];
|
|
2722
|
-
var ExpectedAttributeMap = [2, n0, _EAM, 0, 0, () => ExpectedAttributeValue];
|
|
2723
|
-
var ExpressionAttributeValueMap = [2, n0, _EAVM, 0, 0, () => AttributeValue];
|
|
2724
|
-
var FilterConditionMap = [2, n0, _FCM, 0, 0, () => Condition];
|
|
2725
|
-
var ItemCollectionKeyAttributeMap = [2, n0, _ICKAM, 0, 0, () => AttributeValue];
|
|
2727
|
+
var ExpectedAttributeMap = [2, n0, _EAM, 0, 0, () => ExpectedAttributeValue$];
|
|
2728
|
+
var ExpressionAttributeValueMap = [2, n0, _EAVM, 0, 0, () => AttributeValue$];
|
|
2729
|
+
var FilterConditionMap = [2, n0, _FCM, 0, 0, () => Condition$];
|
|
2730
|
+
var ItemCollectionKeyAttributeMap = [2, n0, _ICKAM, 0, 0, () => AttributeValue$];
|
|
2726
2731
|
var ItemCollectionMetricsPerTable = [2, n0, _ICMPT, 0, 0, () => ItemCollectionMetricsMultiple];
|
|
2727
|
-
var Key = [2, n0, _K, 0, 0, () => AttributeValue];
|
|
2728
|
-
var KeyConditions = [2, n0, _KC, 0, 0, () => Condition];
|
|
2729
|
-
var MapAttributeValue = [2, n0, _MAV, 0, 0, () => AttributeValue];
|
|
2730
|
-
var PutItemInputAttributeMap = [2, n0, _PIIAM, 0, 0, () => AttributeValue];
|
|
2731
|
-
var SecondaryIndexesCapacityMap = [2, n0, _SICM, 0, 0, () => Capacity];
|
|
2732
|
-
var AttributeValue = [
|
|
2732
|
+
var Key = [2, n0, _K, 0, 0, () => AttributeValue$];
|
|
2733
|
+
var KeyConditions = [2, n0, _KC, 0, 0, () => Condition$];
|
|
2734
|
+
var MapAttributeValue = [2, n0, _MAV, 0, 0, () => AttributeValue$];
|
|
2735
|
+
var PutItemInputAttributeMap = [2, n0, _PIIAM, 0, 0, () => AttributeValue$];
|
|
2736
|
+
var SecondaryIndexesCapacityMap = [2, n0, _SICM, 0, 0, () => Capacity$];
|
|
2737
|
+
var AttributeValue$ = [
|
|
2733
2738
|
3,
|
|
2734
2739
|
n0,
|
|
2735
2740
|
_AV,
|
|
@@ -2737,321 +2742,328 @@ var AttributeValue = [
|
|
|
2737
2742
|
[_S_, _N, _B_, _SS_, _NS, _BS_, _M_, _L_, _NULL, _BOOL],
|
|
2738
2743
|
[0, 0, 21, 64 | 0, 64 | 0, 64 | 21, () => MapAttributeValue, () => ListAttributeValue, 2, 2],
|
|
2739
2744
|
];
|
|
2740
|
-
var BatchExecuteStatement = [
|
|
2745
|
+
var BatchExecuteStatement$ = [
|
|
2741
2746
|
9,
|
|
2742
2747
|
n0,
|
|
2743
2748
|
_BES,
|
|
2744
2749
|
0,
|
|
2745
|
-
() => BatchExecuteStatementInput
|
|
2746
|
-
() => BatchExecuteStatementOutput
|
|
2750
|
+
() => BatchExecuteStatementInput$,
|
|
2751
|
+
() => BatchExecuteStatementOutput$,
|
|
2747
2752
|
];
|
|
2748
|
-
var BatchGetItem = [9, n0, _BGI, 0, () => BatchGetItemInput
|
|
2749
|
-
var BatchWriteItem = [
|
|
2753
|
+
var BatchGetItem$ = [9, n0, _BGI, 0, () => BatchGetItemInput$, () => BatchGetItemOutput$];
|
|
2754
|
+
var BatchWriteItem$ = [
|
|
2750
2755
|
9,
|
|
2751
2756
|
n0,
|
|
2752
2757
|
_BWI,
|
|
2753
2758
|
0,
|
|
2754
|
-
() => BatchWriteItemInput
|
|
2755
|
-
() => BatchWriteItemOutput
|
|
2759
|
+
() => BatchWriteItemInput$,
|
|
2760
|
+
() => BatchWriteItemOutput$,
|
|
2756
2761
|
];
|
|
2757
|
-
var CreateBackup = [9, n0, _CB, 0, () => CreateBackupInput
|
|
2758
|
-
var CreateGlobalTable = [
|
|
2762
|
+
var CreateBackup$ = [9, n0, _CB, 0, () => CreateBackupInput$, () => CreateBackupOutput$];
|
|
2763
|
+
var CreateGlobalTable$ = [
|
|
2759
2764
|
9,
|
|
2760
2765
|
n0,
|
|
2761
2766
|
_CGT,
|
|
2762
2767
|
0,
|
|
2763
|
-
() => CreateGlobalTableInput
|
|
2764
|
-
() => CreateGlobalTableOutput
|
|
2768
|
+
() => CreateGlobalTableInput$,
|
|
2769
|
+
() => CreateGlobalTableOutput$,
|
|
2765
2770
|
];
|
|
2766
|
-
var CreateTable = [9, n0, _CTr, 0, () => CreateTableInput
|
|
2767
|
-
var DeleteBackup = [9, n0, _DB, 0, () => DeleteBackupInput
|
|
2768
|
-
var DeleteItem = [9, n0, _DI, 0, () => DeleteItemInput
|
|
2769
|
-
var DeleteResourcePolicy = [
|
|
2771
|
+
var CreateTable$ = [9, n0, _CTr, 0, () => CreateTableInput$, () => CreateTableOutput$];
|
|
2772
|
+
var DeleteBackup$ = [9, n0, _DB, 0, () => DeleteBackupInput$, () => DeleteBackupOutput$];
|
|
2773
|
+
var DeleteItem$ = [9, n0, _DI, 0, () => DeleteItemInput$, () => DeleteItemOutput$];
|
|
2774
|
+
var DeleteResourcePolicy$ = [
|
|
2770
2775
|
9,
|
|
2771
2776
|
n0,
|
|
2772
2777
|
_DRP,
|
|
2773
2778
|
0,
|
|
2774
|
-
() => DeleteResourcePolicyInput
|
|
2775
|
-
() => DeleteResourcePolicyOutput
|
|
2779
|
+
() => DeleteResourcePolicyInput$,
|
|
2780
|
+
() => DeleteResourcePolicyOutput$,
|
|
2776
2781
|
];
|
|
2777
|
-
var DeleteTable = [9, n0, _DT, 0, () => DeleteTableInput
|
|
2778
|
-
var DescribeBackup = [
|
|
2782
|
+
var DeleteTable$ = [9, n0, _DT, 0, () => DeleteTableInput$, () => DeleteTableOutput$];
|
|
2783
|
+
var DescribeBackup$ = [
|
|
2779
2784
|
9,
|
|
2780
2785
|
n0,
|
|
2781
2786
|
_DBe,
|
|
2782
2787
|
0,
|
|
2783
|
-
() => DescribeBackupInput
|
|
2784
|
-
() => DescribeBackupOutput
|
|
2788
|
+
() => DescribeBackupInput$,
|
|
2789
|
+
() => DescribeBackupOutput$,
|
|
2785
2790
|
];
|
|
2786
|
-
var DescribeContinuousBackups = [
|
|
2791
|
+
var DescribeContinuousBackups$ = [
|
|
2787
2792
|
9,
|
|
2788
2793
|
n0,
|
|
2789
2794
|
_DCB,
|
|
2790
2795
|
0,
|
|
2791
|
-
() => DescribeContinuousBackupsInput
|
|
2792
|
-
() => DescribeContinuousBackupsOutput
|
|
2796
|
+
() => DescribeContinuousBackupsInput$,
|
|
2797
|
+
() => DescribeContinuousBackupsOutput$,
|
|
2793
2798
|
];
|
|
2794
|
-
var DescribeContributorInsights = [
|
|
2799
|
+
var DescribeContributorInsights$ = [
|
|
2795
2800
|
9,
|
|
2796
2801
|
n0,
|
|
2797
2802
|
_DCI,
|
|
2798
2803
|
0,
|
|
2799
|
-
() => DescribeContributorInsightsInput
|
|
2800
|
-
() => DescribeContributorInsightsOutput
|
|
2804
|
+
() => DescribeContributorInsightsInput$,
|
|
2805
|
+
() => DescribeContributorInsightsOutput$,
|
|
2801
2806
|
];
|
|
2802
|
-
var DescribeEndpoints = [
|
|
2807
|
+
var DescribeEndpoints$ = [
|
|
2803
2808
|
9,
|
|
2804
2809
|
n0,
|
|
2805
2810
|
_DE,
|
|
2806
2811
|
0,
|
|
2807
|
-
() => DescribeEndpointsRequest
|
|
2808
|
-
() => DescribeEndpointsResponse
|
|
2812
|
+
() => DescribeEndpointsRequest$,
|
|
2813
|
+
() => DescribeEndpointsResponse$,
|
|
2809
2814
|
];
|
|
2810
|
-
var DescribeExport = [
|
|
2815
|
+
var DescribeExport$ = [
|
|
2811
2816
|
9,
|
|
2812
2817
|
n0,
|
|
2813
2818
|
_DEe,
|
|
2814
2819
|
0,
|
|
2815
|
-
() => DescribeExportInput
|
|
2816
|
-
() => DescribeExportOutput
|
|
2820
|
+
() => DescribeExportInput$,
|
|
2821
|
+
() => DescribeExportOutput$,
|
|
2817
2822
|
];
|
|
2818
|
-
var DescribeGlobalTable = [
|
|
2823
|
+
var DescribeGlobalTable$ = [
|
|
2819
2824
|
9,
|
|
2820
2825
|
n0,
|
|
2821
2826
|
_DGT,
|
|
2822
2827
|
0,
|
|
2823
|
-
() => DescribeGlobalTableInput
|
|
2824
|
-
() => DescribeGlobalTableOutput
|
|
2828
|
+
() => DescribeGlobalTableInput$,
|
|
2829
|
+
() => DescribeGlobalTableOutput$,
|
|
2825
2830
|
];
|
|
2826
|
-
var DescribeGlobalTableSettings = [
|
|
2831
|
+
var DescribeGlobalTableSettings$ = [
|
|
2827
2832
|
9,
|
|
2828
2833
|
n0,
|
|
2829
2834
|
_DGTS,
|
|
2830
2835
|
0,
|
|
2831
|
-
() => DescribeGlobalTableSettingsInput
|
|
2832
|
-
() => DescribeGlobalTableSettingsOutput
|
|
2836
|
+
() => DescribeGlobalTableSettingsInput$,
|
|
2837
|
+
() => DescribeGlobalTableSettingsOutput$,
|
|
2833
2838
|
];
|
|
2834
|
-
var DescribeImport = [
|
|
2839
|
+
var DescribeImport$ = [
|
|
2835
2840
|
9,
|
|
2836
2841
|
n0,
|
|
2837
2842
|
_DIe,
|
|
2838
2843
|
0,
|
|
2839
|
-
() => DescribeImportInput
|
|
2840
|
-
() => DescribeImportOutput
|
|
2844
|
+
() => DescribeImportInput$,
|
|
2845
|
+
() => DescribeImportOutput$,
|
|
2841
2846
|
];
|
|
2842
|
-
var DescribeKinesisStreamingDestination = [
|
|
2847
|
+
var DescribeKinesisStreamingDestination$ = [
|
|
2843
2848
|
9,
|
|
2844
2849
|
n0,
|
|
2845
2850
|
_DKSD,
|
|
2846
2851
|
0,
|
|
2847
|
-
() => DescribeKinesisStreamingDestinationInput
|
|
2848
|
-
() => DescribeKinesisStreamingDestinationOutput
|
|
2852
|
+
() => DescribeKinesisStreamingDestinationInput$,
|
|
2853
|
+
() => DescribeKinesisStreamingDestinationOutput$,
|
|
2849
2854
|
];
|
|
2850
|
-
var DescribeLimits = [
|
|
2855
|
+
var DescribeLimits$ = [
|
|
2851
2856
|
9,
|
|
2852
2857
|
n0,
|
|
2853
2858
|
_DL,
|
|
2854
2859
|
0,
|
|
2855
|
-
() => DescribeLimitsInput
|
|
2856
|
-
() => DescribeLimitsOutput
|
|
2860
|
+
() => DescribeLimitsInput$,
|
|
2861
|
+
() => DescribeLimitsOutput$,
|
|
2862
|
+
];
|
|
2863
|
+
var DescribeTable$ = [
|
|
2864
|
+
9,
|
|
2865
|
+
n0,
|
|
2866
|
+
_DTe,
|
|
2867
|
+
0,
|
|
2868
|
+
() => DescribeTableInput$,
|
|
2869
|
+
() => DescribeTableOutput$,
|
|
2857
2870
|
];
|
|
2858
|
-
var
|
|
2859
|
-
var DescribeTableReplicaAutoScaling = [
|
|
2871
|
+
var DescribeTableReplicaAutoScaling$ = [
|
|
2860
2872
|
9,
|
|
2861
2873
|
n0,
|
|
2862
2874
|
_DTRAS,
|
|
2863
2875
|
0,
|
|
2864
|
-
() => DescribeTableReplicaAutoScalingInput
|
|
2865
|
-
() => DescribeTableReplicaAutoScalingOutput
|
|
2876
|
+
() => DescribeTableReplicaAutoScalingInput$,
|
|
2877
|
+
() => DescribeTableReplicaAutoScalingOutput$,
|
|
2866
2878
|
];
|
|
2867
|
-
var DescribeTimeToLive = [
|
|
2879
|
+
var DescribeTimeToLive$ = [
|
|
2868
2880
|
9,
|
|
2869
2881
|
n0,
|
|
2870
2882
|
_DTTL,
|
|
2871
2883
|
0,
|
|
2872
|
-
() => DescribeTimeToLiveInput
|
|
2873
|
-
() => DescribeTimeToLiveOutput
|
|
2884
|
+
() => DescribeTimeToLiveInput$,
|
|
2885
|
+
() => DescribeTimeToLiveOutput$,
|
|
2874
2886
|
];
|
|
2875
|
-
var DisableKinesisStreamingDestination = [
|
|
2887
|
+
var DisableKinesisStreamingDestination$ = [
|
|
2876
2888
|
9,
|
|
2877
2889
|
n0,
|
|
2878
2890
|
_DKSDi,
|
|
2879
2891
|
0,
|
|
2880
|
-
() => KinesisStreamingDestinationInput
|
|
2881
|
-
() => KinesisStreamingDestinationOutput
|
|
2892
|
+
() => KinesisStreamingDestinationInput$,
|
|
2893
|
+
() => KinesisStreamingDestinationOutput$,
|
|
2882
2894
|
];
|
|
2883
|
-
var EnableKinesisStreamingDestination = [
|
|
2895
|
+
var EnableKinesisStreamingDestination$ = [
|
|
2884
2896
|
9,
|
|
2885
2897
|
n0,
|
|
2886
2898
|
_EKSD,
|
|
2887
2899
|
0,
|
|
2888
|
-
() => KinesisStreamingDestinationInput
|
|
2889
|
-
() => KinesisStreamingDestinationOutput
|
|
2900
|
+
() => KinesisStreamingDestinationInput$,
|
|
2901
|
+
() => KinesisStreamingDestinationOutput$,
|
|
2890
2902
|
];
|
|
2891
|
-
var ExecuteStatement = [
|
|
2903
|
+
var ExecuteStatement$ = [
|
|
2892
2904
|
9,
|
|
2893
2905
|
n0,
|
|
2894
2906
|
_ESxe,
|
|
2895
2907
|
0,
|
|
2896
|
-
() => ExecuteStatementInput
|
|
2897
|
-
() => ExecuteStatementOutput
|
|
2908
|
+
() => ExecuteStatementInput$,
|
|
2909
|
+
() => ExecuteStatementOutput$,
|
|
2898
2910
|
];
|
|
2899
|
-
var ExecuteTransaction = [
|
|
2911
|
+
var ExecuteTransaction$ = [
|
|
2900
2912
|
9,
|
|
2901
2913
|
n0,
|
|
2902
2914
|
_ETxe,
|
|
2903
2915
|
0,
|
|
2904
|
-
() => ExecuteTransactionInput
|
|
2905
|
-
() => ExecuteTransactionOutput
|
|
2916
|
+
() => ExecuteTransactionInput$,
|
|
2917
|
+
() => ExecuteTransactionOutput$,
|
|
2906
2918
|
];
|
|
2907
|
-
var ExportTableToPointInTime = [
|
|
2919
|
+
var ExportTableToPointInTime$ = [
|
|
2908
2920
|
9,
|
|
2909
2921
|
n0,
|
|
2910
2922
|
_ETTPIT,
|
|
2911
2923
|
0,
|
|
2912
|
-
() => ExportTableToPointInTimeInput
|
|
2913
|
-
() => ExportTableToPointInTimeOutput
|
|
2924
|
+
() => ExportTableToPointInTimeInput$,
|
|
2925
|
+
() => ExportTableToPointInTimeOutput$,
|
|
2914
2926
|
];
|
|
2915
|
-
var GetItem = [9, n0, _GI, 0, () => GetItemInput
|
|
2916
|
-
var GetResourcePolicy = [
|
|
2927
|
+
var GetItem$ = [9, n0, _GI, 0, () => GetItemInput$, () => GetItemOutput$];
|
|
2928
|
+
var GetResourcePolicy$ = [
|
|
2917
2929
|
9,
|
|
2918
2930
|
n0,
|
|
2919
2931
|
_GRP,
|
|
2920
2932
|
0,
|
|
2921
|
-
() => GetResourcePolicyInput
|
|
2922
|
-
() => GetResourcePolicyOutput
|
|
2933
|
+
() => GetResourcePolicyInput$,
|
|
2934
|
+
() => GetResourcePolicyOutput$,
|
|
2923
2935
|
];
|
|
2924
|
-
var ImportTable = [9, n0, _IT, 0, () => ImportTableInput
|
|
2925
|
-
var ListBackups = [9, n0, _LB, 0, () => ListBackupsInput
|
|
2926
|
-
var ListContributorInsights = [
|
|
2936
|
+
var ImportTable$ = [9, n0, _IT, 0, () => ImportTableInput$, () => ImportTableOutput$];
|
|
2937
|
+
var ListBackups$ = [9, n0, _LB, 0, () => ListBackupsInput$, () => ListBackupsOutput$];
|
|
2938
|
+
var ListContributorInsights$ = [
|
|
2927
2939
|
9,
|
|
2928
2940
|
n0,
|
|
2929
2941
|
_LCI,
|
|
2930
2942
|
0,
|
|
2931
|
-
() => ListContributorInsightsInput
|
|
2932
|
-
() => ListContributorInsightsOutput
|
|
2943
|
+
() => ListContributorInsightsInput$,
|
|
2944
|
+
() => ListContributorInsightsOutput$,
|
|
2933
2945
|
];
|
|
2934
|
-
var ListExports = [9, n0, _LE, 0, () => ListExportsInput
|
|
2935
|
-
var ListGlobalTables = [
|
|
2946
|
+
var ListExports$ = [9, n0, _LE, 0, () => ListExportsInput$, () => ListExportsOutput$];
|
|
2947
|
+
var ListGlobalTables$ = [
|
|
2936
2948
|
9,
|
|
2937
2949
|
n0,
|
|
2938
2950
|
_LGT,
|
|
2939
2951
|
0,
|
|
2940
|
-
() => ListGlobalTablesInput
|
|
2941
|
-
() => ListGlobalTablesOutput
|
|
2952
|
+
() => ListGlobalTablesInput$,
|
|
2953
|
+
() => ListGlobalTablesOutput$,
|
|
2942
2954
|
];
|
|
2943
|
-
var ListImports = [9, n0, _LI, 0, () => ListImportsInput
|
|
2944
|
-
var ListTables = [9, n0, _LT, 0, () => ListTablesInput
|
|
2945
|
-
var ListTagsOfResource = [
|
|
2955
|
+
var ListImports$ = [9, n0, _LI, 0, () => ListImportsInput$, () => ListImportsOutput$];
|
|
2956
|
+
var ListTables$ = [9, n0, _LT, 0, () => ListTablesInput$, () => ListTablesOutput$];
|
|
2957
|
+
var ListTagsOfResource$ = [
|
|
2946
2958
|
9,
|
|
2947
2959
|
n0,
|
|
2948
2960
|
_LTOR,
|
|
2949
2961
|
0,
|
|
2950
|
-
() => ListTagsOfResourceInput
|
|
2951
|
-
() => ListTagsOfResourceOutput
|
|
2962
|
+
() => ListTagsOfResourceInput$,
|
|
2963
|
+
() => ListTagsOfResourceOutput$,
|
|
2952
2964
|
];
|
|
2953
|
-
var PutItem = [9, n0, _PI, 0, () => PutItemInput
|
|
2954
|
-
var PutResourcePolicy = [
|
|
2965
|
+
var PutItem$ = [9, n0, _PI, 0, () => PutItemInput$, () => PutItemOutput$];
|
|
2966
|
+
var PutResourcePolicy$ = [
|
|
2955
2967
|
9,
|
|
2956
2968
|
n0,
|
|
2957
2969
|
_PRP,
|
|
2958
2970
|
0,
|
|
2959
|
-
() => PutResourcePolicyInput
|
|
2960
|
-
() => PutResourcePolicyOutput
|
|
2971
|
+
() => PutResourcePolicyInput$,
|
|
2972
|
+
() => PutResourcePolicyOutput$,
|
|
2961
2973
|
];
|
|
2962
|
-
var Query = [9, n0, _Q, 0, () => QueryInput
|
|
2963
|
-
var RestoreTableFromBackup = [
|
|
2974
|
+
var Query$ = [9, n0, _Q, 0, () => QueryInput$, () => QueryOutput$];
|
|
2975
|
+
var RestoreTableFromBackup$ = [
|
|
2964
2976
|
9,
|
|
2965
2977
|
n0,
|
|
2966
2978
|
_RTFB,
|
|
2967
2979
|
0,
|
|
2968
|
-
() => RestoreTableFromBackupInput
|
|
2969
|
-
() => RestoreTableFromBackupOutput
|
|
2980
|
+
() => RestoreTableFromBackupInput$,
|
|
2981
|
+
() => RestoreTableFromBackupOutput$,
|
|
2970
2982
|
];
|
|
2971
|
-
var RestoreTableToPointInTime = [
|
|
2983
|
+
var RestoreTableToPointInTime$ = [
|
|
2972
2984
|
9,
|
|
2973
2985
|
n0,
|
|
2974
2986
|
_RTTPIT,
|
|
2975
2987
|
0,
|
|
2976
|
-
() => RestoreTableToPointInTimeInput
|
|
2977
|
-
() => RestoreTableToPointInTimeOutput
|
|
2988
|
+
() => RestoreTableToPointInTimeInput$,
|
|
2989
|
+
() => RestoreTableToPointInTimeOutput$,
|
|
2978
2990
|
];
|
|
2979
|
-
var Scan = [9, n0, _Sc, 0, () => ScanInput
|
|
2980
|
-
var TagResource = [9, n0, _TRa, 0, () => TagResourceInput
|
|
2981
|
-
var TransactGetItems = [
|
|
2991
|
+
var Scan$ = [9, n0, _Sc, 0, () => ScanInput$, () => ScanOutput$];
|
|
2992
|
+
var TagResource$ = [9, n0, _TRa, 0, () => TagResourceInput$, () => __Unit];
|
|
2993
|
+
var TransactGetItems$ = [
|
|
2982
2994
|
9,
|
|
2983
2995
|
n0,
|
|
2984
2996
|
_TGIr,
|
|
2985
2997
|
0,
|
|
2986
|
-
() => TransactGetItemsInput
|
|
2987
|
-
() => TransactGetItemsOutput
|
|
2998
|
+
() => TransactGetItemsInput$,
|
|
2999
|
+
() => TransactGetItemsOutput$,
|
|
2988
3000
|
];
|
|
2989
|
-
var TransactWriteItems = [
|
|
3001
|
+
var TransactWriteItems$ = [
|
|
2990
3002
|
9,
|
|
2991
3003
|
n0,
|
|
2992
3004
|
_TWIr,
|
|
2993
3005
|
0,
|
|
2994
|
-
() => TransactWriteItemsInput
|
|
2995
|
-
() => TransactWriteItemsOutput
|
|
3006
|
+
() => TransactWriteItemsInput$,
|
|
3007
|
+
() => TransactWriteItemsOutput$,
|
|
2996
3008
|
];
|
|
2997
|
-
var UntagResource = [9, n0, _UR, 0, () => UntagResourceInput
|
|
2998
|
-
var UpdateContinuousBackups = [
|
|
3009
|
+
var UntagResource$ = [9, n0, _UR, 0, () => UntagResourceInput$, () => __Unit];
|
|
3010
|
+
var UpdateContinuousBackups$ = [
|
|
2999
3011
|
9,
|
|
3000
3012
|
n0,
|
|
3001
3013
|
_UCB,
|
|
3002
3014
|
0,
|
|
3003
|
-
() => UpdateContinuousBackupsInput
|
|
3004
|
-
() => UpdateContinuousBackupsOutput
|
|
3015
|
+
() => UpdateContinuousBackupsInput$,
|
|
3016
|
+
() => UpdateContinuousBackupsOutput$,
|
|
3005
3017
|
];
|
|
3006
|
-
var UpdateContributorInsights = [
|
|
3018
|
+
var UpdateContributorInsights$ = [
|
|
3007
3019
|
9,
|
|
3008
3020
|
n0,
|
|
3009
3021
|
_UCI,
|
|
3010
3022
|
0,
|
|
3011
|
-
() => UpdateContributorInsightsInput
|
|
3012
|
-
() => UpdateContributorInsightsOutput
|
|
3023
|
+
() => UpdateContributorInsightsInput$,
|
|
3024
|
+
() => UpdateContributorInsightsOutput$,
|
|
3013
3025
|
];
|
|
3014
|
-
var UpdateGlobalTable = [
|
|
3026
|
+
var UpdateGlobalTable$ = [
|
|
3015
3027
|
9,
|
|
3016
3028
|
n0,
|
|
3017
3029
|
_UGT,
|
|
3018
3030
|
0,
|
|
3019
|
-
() => UpdateGlobalTableInput
|
|
3020
|
-
() => UpdateGlobalTableOutput
|
|
3031
|
+
() => UpdateGlobalTableInput$,
|
|
3032
|
+
() => UpdateGlobalTableOutput$,
|
|
3021
3033
|
];
|
|
3022
|
-
var UpdateGlobalTableSettings = [
|
|
3034
|
+
var UpdateGlobalTableSettings$ = [
|
|
3023
3035
|
9,
|
|
3024
3036
|
n0,
|
|
3025
3037
|
_UGTS,
|
|
3026
3038
|
0,
|
|
3027
|
-
() => UpdateGlobalTableSettingsInput
|
|
3028
|
-
() => UpdateGlobalTableSettingsOutput
|
|
3039
|
+
() => UpdateGlobalTableSettingsInput$,
|
|
3040
|
+
() => UpdateGlobalTableSettingsOutput$,
|
|
3029
3041
|
];
|
|
3030
|
-
var UpdateItem = [9, n0, _UIp, 0, () => UpdateItemInput
|
|
3031
|
-
var UpdateKinesisStreamingDestination = [
|
|
3042
|
+
var UpdateItem$ = [9, n0, _UIp, 0, () => UpdateItemInput$, () => UpdateItemOutput$];
|
|
3043
|
+
var UpdateKinesisStreamingDestination$ = [
|
|
3032
3044
|
9,
|
|
3033
3045
|
n0,
|
|
3034
3046
|
_UKSD,
|
|
3035
3047
|
0,
|
|
3036
|
-
() => UpdateKinesisStreamingDestinationInput
|
|
3037
|
-
() => UpdateKinesisStreamingDestinationOutput
|
|
3048
|
+
() => UpdateKinesisStreamingDestinationInput$,
|
|
3049
|
+
() => UpdateKinesisStreamingDestinationOutput$,
|
|
3038
3050
|
];
|
|
3039
|
-
var UpdateTable = [9, n0, _UT, 0, () => UpdateTableInput
|
|
3040
|
-
var UpdateTableReplicaAutoScaling = [
|
|
3051
|
+
var UpdateTable$ = [9, n0, _UT, 0, () => UpdateTableInput$, () => UpdateTableOutput$];
|
|
3052
|
+
var UpdateTableReplicaAutoScaling$ = [
|
|
3041
3053
|
9,
|
|
3042
3054
|
n0,
|
|
3043
3055
|
_UTRAS,
|
|
3044
3056
|
0,
|
|
3045
|
-
() => UpdateTableReplicaAutoScalingInput
|
|
3046
|
-
() => UpdateTableReplicaAutoScalingOutput
|
|
3057
|
+
() => UpdateTableReplicaAutoScalingInput$,
|
|
3058
|
+
() => UpdateTableReplicaAutoScalingOutput$,
|
|
3047
3059
|
];
|
|
3048
|
-
var UpdateTimeToLive = [
|
|
3060
|
+
var UpdateTimeToLive$ = [
|
|
3049
3061
|
9,
|
|
3050
3062
|
n0,
|
|
3051
3063
|
_UTTL,
|
|
3052
3064
|
0,
|
|
3053
|
-
() => UpdateTimeToLiveInput
|
|
3054
|
-
() => UpdateTimeToLiveOutput
|
|
3065
|
+
() => UpdateTimeToLiveInput$,
|
|
3066
|
+
() => UpdateTimeToLiveOutput$,
|
|
3055
3067
|
];
|
|
3056
3068
|
|
|
3057
3069
|
class DescribeEndpointsCommand extends smithyClient.Command
|
|
@@ -3062,7 +3074,7 @@ class DescribeEndpointsCommand extends smithyClient.Command
|
|
|
3062
3074
|
})
|
|
3063
3075
|
.s("DynamoDB_20120810", "DescribeEndpoints", {})
|
|
3064
3076
|
.n("DynamoDBClient", "DescribeEndpointsCommand")
|
|
3065
|
-
.sc(DescribeEndpoints)
|
|
3077
|
+
.sc(DescribeEndpoints$)
|
|
3066
3078
|
.build() {
|
|
3067
3079
|
}
|
|
3068
3080
|
|
|
@@ -3158,7 +3170,7 @@ class BatchExecuteStatementCommand extends smithyClient.Command
|
|
|
3158
3170
|
})
|
|
3159
3171
|
.s("DynamoDB_20120810", "BatchExecuteStatement", {})
|
|
3160
3172
|
.n("DynamoDBClient", "BatchExecuteStatementCommand")
|
|
3161
|
-
.sc(BatchExecuteStatement)
|
|
3173
|
+
.sc(BatchExecuteStatement$)
|
|
3162
3174
|
.build() {
|
|
3163
3175
|
}
|
|
3164
3176
|
|
|
@@ -3173,7 +3185,7 @@ class BatchGetItemCommand extends smithyClient.Command
|
|
|
3173
3185
|
})
|
|
3174
3186
|
.s("DynamoDB_20120810", "BatchGetItem", {})
|
|
3175
3187
|
.n("DynamoDBClient", "BatchGetItemCommand")
|
|
3176
|
-
.sc(BatchGetItem)
|
|
3188
|
+
.sc(BatchGetItem$)
|
|
3177
3189
|
.build() {
|
|
3178
3190
|
}
|
|
3179
3191
|
|
|
@@ -3188,7 +3200,7 @@ class BatchWriteItemCommand extends smithyClient.Command
|
|
|
3188
3200
|
})
|
|
3189
3201
|
.s("DynamoDB_20120810", "BatchWriteItem", {})
|
|
3190
3202
|
.n("DynamoDBClient", "BatchWriteItemCommand")
|
|
3191
|
-
.sc(BatchWriteItem)
|
|
3203
|
+
.sc(BatchWriteItem$)
|
|
3192
3204
|
.build() {
|
|
3193
3205
|
}
|
|
3194
3206
|
|
|
@@ -3203,7 +3215,7 @@ class CreateBackupCommand extends smithyClient.Command
|
|
|
3203
3215
|
})
|
|
3204
3216
|
.s("DynamoDB_20120810", "CreateBackup", {})
|
|
3205
3217
|
.n("DynamoDBClient", "CreateBackupCommand")
|
|
3206
|
-
.sc(CreateBackup)
|
|
3218
|
+
.sc(CreateBackup$)
|
|
3207
3219
|
.build() {
|
|
3208
3220
|
}
|
|
3209
3221
|
|
|
@@ -3218,7 +3230,7 @@ class CreateGlobalTableCommand extends smithyClient.Command
|
|
|
3218
3230
|
})
|
|
3219
3231
|
.s("DynamoDB_20120810", "CreateGlobalTable", {})
|
|
3220
3232
|
.n("DynamoDBClient", "CreateGlobalTableCommand")
|
|
3221
|
-
.sc(CreateGlobalTable)
|
|
3233
|
+
.sc(CreateGlobalTable$)
|
|
3222
3234
|
.build() {
|
|
3223
3235
|
}
|
|
3224
3236
|
|
|
@@ -3233,7 +3245,7 @@ class CreateTableCommand extends smithyClient.Command
|
|
|
3233
3245
|
})
|
|
3234
3246
|
.s("DynamoDB_20120810", "CreateTable", {})
|
|
3235
3247
|
.n("DynamoDBClient", "CreateTableCommand")
|
|
3236
|
-
.sc(CreateTable)
|
|
3248
|
+
.sc(CreateTable$)
|
|
3237
3249
|
.build() {
|
|
3238
3250
|
}
|
|
3239
3251
|
|
|
@@ -3248,7 +3260,7 @@ class DeleteBackupCommand extends smithyClient.Command
|
|
|
3248
3260
|
})
|
|
3249
3261
|
.s("DynamoDB_20120810", "DeleteBackup", {})
|
|
3250
3262
|
.n("DynamoDBClient", "DeleteBackupCommand")
|
|
3251
|
-
.sc(DeleteBackup)
|
|
3263
|
+
.sc(DeleteBackup$)
|
|
3252
3264
|
.build() {
|
|
3253
3265
|
}
|
|
3254
3266
|
|
|
@@ -3263,7 +3275,7 @@ class DeleteItemCommand extends smithyClient.Command
|
|
|
3263
3275
|
})
|
|
3264
3276
|
.s("DynamoDB_20120810", "DeleteItem", {})
|
|
3265
3277
|
.n("DynamoDBClient", "DeleteItemCommand")
|
|
3266
|
-
.sc(DeleteItem)
|
|
3278
|
+
.sc(DeleteItem$)
|
|
3267
3279
|
.build() {
|
|
3268
3280
|
}
|
|
3269
3281
|
|
|
@@ -3278,7 +3290,7 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
3278
3290
|
})
|
|
3279
3291
|
.s("DynamoDB_20120810", "DeleteResourcePolicy", {})
|
|
3280
3292
|
.n("DynamoDBClient", "DeleteResourcePolicyCommand")
|
|
3281
|
-
.sc(DeleteResourcePolicy)
|
|
3293
|
+
.sc(DeleteResourcePolicy$)
|
|
3282
3294
|
.build() {
|
|
3283
3295
|
}
|
|
3284
3296
|
|
|
@@ -3293,7 +3305,7 @@ class DeleteTableCommand extends smithyClient.Command
|
|
|
3293
3305
|
})
|
|
3294
3306
|
.s("DynamoDB_20120810", "DeleteTable", {})
|
|
3295
3307
|
.n("DynamoDBClient", "DeleteTableCommand")
|
|
3296
|
-
.sc(DeleteTable)
|
|
3308
|
+
.sc(DeleteTable$)
|
|
3297
3309
|
.build() {
|
|
3298
3310
|
}
|
|
3299
3311
|
|
|
@@ -3308,7 +3320,7 @@ class DescribeBackupCommand extends smithyClient.Command
|
|
|
3308
3320
|
})
|
|
3309
3321
|
.s("DynamoDB_20120810", "DescribeBackup", {})
|
|
3310
3322
|
.n("DynamoDBClient", "DescribeBackupCommand")
|
|
3311
|
-
.sc(DescribeBackup)
|
|
3323
|
+
.sc(DescribeBackup$)
|
|
3312
3324
|
.build() {
|
|
3313
3325
|
}
|
|
3314
3326
|
|
|
@@ -3323,7 +3335,7 @@ class DescribeContinuousBackupsCommand extends smithyClient.Command
|
|
|
3323
3335
|
})
|
|
3324
3336
|
.s("DynamoDB_20120810", "DescribeContinuousBackups", {})
|
|
3325
3337
|
.n("DynamoDBClient", "DescribeContinuousBackupsCommand")
|
|
3326
|
-
.sc(DescribeContinuousBackups)
|
|
3338
|
+
.sc(DescribeContinuousBackups$)
|
|
3327
3339
|
.build() {
|
|
3328
3340
|
}
|
|
3329
3341
|
|
|
@@ -3338,7 +3350,7 @@ class DescribeContributorInsightsCommand extends smithyClient.Command
|
|
|
3338
3350
|
})
|
|
3339
3351
|
.s("DynamoDB_20120810", "DescribeContributorInsights", {})
|
|
3340
3352
|
.n("DynamoDBClient", "DescribeContributorInsightsCommand")
|
|
3341
|
-
.sc(DescribeContributorInsights)
|
|
3353
|
+
.sc(DescribeContributorInsights$)
|
|
3342
3354
|
.build() {
|
|
3343
3355
|
}
|
|
3344
3356
|
|
|
@@ -3353,7 +3365,7 @@ class DescribeExportCommand extends smithyClient.Command
|
|
|
3353
3365
|
})
|
|
3354
3366
|
.s("DynamoDB_20120810", "DescribeExport", {})
|
|
3355
3367
|
.n("DynamoDBClient", "DescribeExportCommand")
|
|
3356
|
-
.sc(DescribeExport)
|
|
3368
|
+
.sc(DescribeExport$)
|
|
3357
3369
|
.build() {
|
|
3358
3370
|
}
|
|
3359
3371
|
|
|
@@ -3368,7 +3380,7 @@ class DescribeGlobalTableCommand extends smithyClient.Command
|
|
|
3368
3380
|
})
|
|
3369
3381
|
.s("DynamoDB_20120810", "DescribeGlobalTable", {})
|
|
3370
3382
|
.n("DynamoDBClient", "DescribeGlobalTableCommand")
|
|
3371
|
-
.sc(DescribeGlobalTable)
|
|
3383
|
+
.sc(DescribeGlobalTable$)
|
|
3372
3384
|
.build() {
|
|
3373
3385
|
}
|
|
3374
3386
|
|
|
@@ -3383,7 +3395,7 @@ class DescribeGlobalTableSettingsCommand extends smithyClient.Command
|
|
|
3383
3395
|
})
|
|
3384
3396
|
.s("DynamoDB_20120810", "DescribeGlobalTableSettings", {})
|
|
3385
3397
|
.n("DynamoDBClient", "DescribeGlobalTableSettingsCommand")
|
|
3386
|
-
.sc(DescribeGlobalTableSettings)
|
|
3398
|
+
.sc(DescribeGlobalTableSettings$)
|
|
3387
3399
|
.build() {
|
|
3388
3400
|
}
|
|
3389
3401
|
|
|
@@ -3398,7 +3410,7 @@ class DescribeImportCommand extends smithyClient.Command
|
|
|
3398
3410
|
})
|
|
3399
3411
|
.s("DynamoDB_20120810", "DescribeImport", {})
|
|
3400
3412
|
.n("DynamoDBClient", "DescribeImportCommand")
|
|
3401
|
-
.sc(DescribeImport)
|
|
3413
|
+
.sc(DescribeImport$)
|
|
3402
3414
|
.build() {
|
|
3403
3415
|
}
|
|
3404
3416
|
|
|
@@ -3413,7 +3425,7 @@ class DescribeKinesisStreamingDestinationCommand extends smithyClient.Command
|
|
|
3413
3425
|
})
|
|
3414
3426
|
.s("DynamoDB_20120810", "DescribeKinesisStreamingDestination", {})
|
|
3415
3427
|
.n("DynamoDBClient", "DescribeKinesisStreamingDestinationCommand")
|
|
3416
|
-
.sc(DescribeKinesisStreamingDestination)
|
|
3428
|
+
.sc(DescribeKinesisStreamingDestination$)
|
|
3417
3429
|
.build() {
|
|
3418
3430
|
}
|
|
3419
3431
|
|
|
@@ -3425,7 +3437,7 @@ class DescribeLimitsCommand extends smithyClient.Command
|
|
|
3425
3437
|
})
|
|
3426
3438
|
.s("DynamoDB_20120810", "DescribeLimits", {})
|
|
3427
3439
|
.n("DynamoDBClient", "DescribeLimitsCommand")
|
|
3428
|
-
.sc(DescribeLimits)
|
|
3440
|
+
.sc(DescribeLimits$)
|
|
3429
3441
|
.build() {
|
|
3430
3442
|
}
|
|
3431
3443
|
|
|
@@ -3440,7 +3452,7 @@ class DescribeTableCommand extends smithyClient.Command
|
|
|
3440
3452
|
})
|
|
3441
3453
|
.s("DynamoDB_20120810", "DescribeTable", {})
|
|
3442
3454
|
.n("DynamoDBClient", "DescribeTableCommand")
|
|
3443
|
-
.sc(DescribeTable)
|
|
3455
|
+
.sc(DescribeTable$)
|
|
3444
3456
|
.build() {
|
|
3445
3457
|
}
|
|
3446
3458
|
|
|
@@ -3455,7 +3467,7 @@ class DescribeTableReplicaAutoScalingCommand extends smithyClient.Command
|
|
|
3455
3467
|
})
|
|
3456
3468
|
.s("DynamoDB_20120810", "DescribeTableReplicaAutoScaling", {})
|
|
3457
3469
|
.n("DynamoDBClient", "DescribeTableReplicaAutoScalingCommand")
|
|
3458
|
-
.sc(DescribeTableReplicaAutoScaling)
|
|
3470
|
+
.sc(DescribeTableReplicaAutoScaling$)
|
|
3459
3471
|
.build() {
|
|
3460
3472
|
}
|
|
3461
3473
|
|
|
@@ -3470,7 +3482,7 @@ class DescribeTimeToLiveCommand extends smithyClient.Command
|
|
|
3470
3482
|
})
|
|
3471
3483
|
.s("DynamoDB_20120810", "DescribeTimeToLive", {})
|
|
3472
3484
|
.n("DynamoDBClient", "DescribeTimeToLiveCommand")
|
|
3473
|
-
.sc(DescribeTimeToLive)
|
|
3485
|
+
.sc(DescribeTimeToLive$)
|
|
3474
3486
|
.build() {
|
|
3475
3487
|
}
|
|
3476
3488
|
|
|
@@ -3485,7 +3497,7 @@ class DisableKinesisStreamingDestinationCommand extends smithyClient.Command
|
|
|
3485
3497
|
})
|
|
3486
3498
|
.s("DynamoDB_20120810", "DisableKinesisStreamingDestination", {})
|
|
3487
3499
|
.n("DynamoDBClient", "DisableKinesisStreamingDestinationCommand")
|
|
3488
|
-
.sc(DisableKinesisStreamingDestination)
|
|
3500
|
+
.sc(DisableKinesisStreamingDestination$)
|
|
3489
3501
|
.build() {
|
|
3490
3502
|
}
|
|
3491
3503
|
|
|
@@ -3500,7 +3512,7 @@ class EnableKinesisStreamingDestinationCommand extends smithyClient.Command
|
|
|
3500
3512
|
})
|
|
3501
3513
|
.s("DynamoDB_20120810", "EnableKinesisStreamingDestination", {})
|
|
3502
3514
|
.n("DynamoDBClient", "EnableKinesisStreamingDestinationCommand")
|
|
3503
|
-
.sc(EnableKinesisStreamingDestination)
|
|
3515
|
+
.sc(EnableKinesisStreamingDestination$)
|
|
3504
3516
|
.build() {
|
|
3505
3517
|
}
|
|
3506
3518
|
|
|
@@ -3512,7 +3524,7 @@ class ExecuteStatementCommand extends smithyClient.Command
|
|
|
3512
3524
|
})
|
|
3513
3525
|
.s("DynamoDB_20120810", "ExecuteStatement", {})
|
|
3514
3526
|
.n("DynamoDBClient", "ExecuteStatementCommand")
|
|
3515
|
-
.sc(ExecuteStatement)
|
|
3527
|
+
.sc(ExecuteStatement$)
|
|
3516
3528
|
.build() {
|
|
3517
3529
|
}
|
|
3518
3530
|
|
|
@@ -3524,7 +3536,7 @@ class ExecuteTransactionCommand extends smithyClient.Command
|
|
|
3524
3536
|
})
|
|
3525
3537
|
.s("DynamoDB_20120810", "ExecuteTransaction", {})
|
|
3526
3538
|
.n("DynamoDBClient", "ExecuteTransactionCommand")
|
|
3527
|
-
.sc(ExecuteTransaction)
|
|
3539
|
+
.sc(ExecuteTransaction$)
|
|
3528
3540
|
.build() {
|
|
3529
3541
|
}
|
|
3530
3542
|
|
|
@@ -3539,7 +3551,7 @@ class ExportTableToPointInTimeCommand extends smithyClient.Command
|
|
|
3539
3551
|
})
|
|
3540
3552
|
.s("DynamoDB_20120810", "ExportTableToPointInTime", {})
|
|
3541
3553
|
.n("DynamoDBClient", "ExportTableToPointInTimeCommand")
|
|
3542
|
-
.sc(ExportTableToPointInTime)
|
|
3554
|
+
.sc(ExportTableToPointInTime$)
|
|
3543
3555
|
.build() {
|
|
3544
3556
|
}
|
|
3545
3557
|
|
|
@@ -3554,7 +3566,7 @@ class GetItemCommand extends smithyClient.Command
|
|
|
3554
3566
|
})
|
|
3555
3567
|
.s("DynamoDB_20120810", "GetItem", {})
|
|
3556
3568
|
.n("DynamoDBClient", "GetItemCommand")
|
|
3557
|
-
.sc(GetItem)
|
|
3569
|
+
.sc(GetItem$)
|
|
3558
3570
|
.build() {
|
|
3559
3571
|
}
|
|
3560
3572
|
|
|
@@ -3569,7 +3581,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
|
|
|
3569
3581
|
})
|
|
3570
3582
|
.s("DynamoDB_20120810", "GetResourcePolicy", {})
|
|
3571
3583
|
.n("DynamoDBClient", "GetResourcePolicyCommand")
|
|
3572
|
-
.sc(GetResourcePolicy)
|
|
3584
|
+
.sc(GetResourcePolicy$)
|
|
3573
3585
|
.build() {
|
|
3574
3586
|
}
|
|
3575
3587
|
|
|
@@ -3584,7 +3596,7 @@ class ImportTableCommand extends smithyClient.Command
|
|
|
3584
3596
|
})
|
|
3585
3597
|
.s("DynamoDB_20120810", "ImportTable", {})
|
|
3586
3598
|
.n("DynamoDBClient", "ImportTableCommand")
|
|
3587
|
-
.sc(ImportTable)
|
|
3599
|
+
.sc(ImportTable$)
|
|
3588
3600
|
.build() {
|
|
3589
3601
|
}
|
|
3590
3602
|
|
|
@@ -3599,7 +3611,7 @@ class ListBackupsCommand extends smithyClient.Command
|
|
|
3599
3611
|
})
|
|
3600
3612
|
.s("DynamoDB_20120810", "ListBackups", {})
|
|
3601
3613
|
.n("DynamoDBClient", "ListBackupsCommand")
|
|
3602
|
-
.sc(ListBackups)
|
|
3614
|
+
.sc(ListBackups$)
|
|
3603
3615
|
.build() {
|
|
3604
3616
|
}
|
|
3605
3617
|
|
|
@@ -3614,7 +3626,7 @@ class ListContributorInsightsCommand extends smithyClient.Command
|
|
|
3614
3626
|
})
|
|
3615
3627
|
.s("DynamoDB_20120810", "ListContributorInsights", {})
|
|
3616
3628
|
.n("DynamoDBClient", "ListContributorInsightsCommand")
|
|
3617
|
-
.sc(ListContributorInsights)
|
|
3629
|
+
.sc(ListContributorInsights$)
|
|
3618
3630
|
.build() {
|
|
3619
3631
|
}
|
|
3620
3632
|
|
|
@@ -3629,7 +3641,7 @@ class ListExportsCommand extends smithyClient.Command
|
|
|
3629
3641
|
})
|
|
3630
3642
|
.s("DynamoDB_20120810", "ListExports", {})
|
|
3631
3643
|
.n("DynamoDBClient", "ListExportsCommand")
|
|
3632
|
-
.sc(ListExports)
|
|
3644
|
+
.sc(ListExports$)
|
|
3633
3645
|
.build() {
|
|
3634
3646
|
}
|
|
3635
3647
|
|
|
@@ -3641,7 +3653,7 @@ class ListGlobalTablesCommand extends smithyClient.Command
|
|
|
3641
3653
|
})
|
|
3642
3654
|
.s("DynamoDB_20120810", "ListGlobalTables", {})
|
|
3643
3655
|
.n("DynamoDBClient", "ListGlobalTablesCommand")
|
|
3644
|
-
.sc(ListGlobalTables)
|
|
3656
|
+
.sc(ListGlobalTables$)
|
|
3645
3657
|
.build() {
|
|
3646
3658
|
}
|
|
3647
3659
|
|
|
@@ -3656,7 +3668,7 @@ class ListImportsCommand extends smithyClient.Command
|
|
|
3656
3668
|
})
|
|
3657
3669
|
.s("DynamoDB_20120810", "ListImports", {})
|
|
3658
3670
|
.n("DynamoDBClient", "ListImportsCommand")
|
|
3659
|
-
.sc(ListImports)
|
|
3671
|
+
.sc(ListImports$)
|
|
3660
3672
|
.build() {
|
|
3661
3673
|
}
|
|
3662
3674
|
|
|
@@ -3668,7 +3680,7 @@ class ListTablesCommand extends smithyClient.Command
|
|
|
3668
3680
|
})
|
|
3669
3681
|
.s("DynamoDB_20120810", "ListTables", {})
|
|
3670
3682
|
.n("DynamoDBClient", "ListTablesCommand")
|
|
3671
|
-
.sc(ListTables)
|
|
3683
|
+
.sc(ListTables$)
|
|
3672
3684
|
.build() {
|
|
3673
3685
|
}
|
|
3674
3686
|
|
|
@@ -3683,7 +3695,7 @@ class ListTagsOfResourceCommand extends smithyClient.Command
|
|
|
3683
3695
|
})
|
|
3684
3696
|
.s("DynamoDB_20120810", "ListTagsOfResource", {})
|
|
3685
3697
|
.n("DynamoDBClient", "ListTagsOfResourceCommand")
|
|
3686
|
-
.sc(ListTagsOfResource)
|
|
3698
|
+
.sc(ListTagsOfResource$)
|
|
3687
3699
|
.build() {
|
|
3688
3700
|
}
|
|
3689
3701
|
|
|
@@ -3698,7 +3710,7 @@ class PutItemCommand extends smithyClient.Command
|
|
|
3698
3710
|
})
|
|
3699
3711
|
.s("DynamoDB_20120810", "PutItem", {})
|
|
3700
3712
|
.n("DynamoDBClient", "PutItemCommand")
|
|
3701
|
-
.sc(PutItem)
|
|
3713
|
+
.sc(PutItem$)
|
|
3702
3714
|
.build() {
|
|
3703
3715
|
}
|
|
3704
3716
|
|
|
@@ -3713,7 +3725,7 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
3713
3725
|
})
|
|
3714
3726
|
.s("DynamoDB_20120810", "PutResourcePolicy", {})
|
|
3715
3727
|
.n("DynamoDBClient", "PutResourcePolicyCommand")
|
|
3716
|
-
.sc(PutResourcePolicy)
|
|
3728
|
+
.sc(PutResourcePolicy$)
|
|
3717
3729
|
.build() {
|
|
3718
3730
|
}
|
|
3719
3731
|
|
|
@@ -3728,7 +3740,7 @@ class QueryCommand extends smithyClient.Command
|
|
|
3728
3740
|
})
|
|
3729
3741
|
.s("DynamoDB_20120810", "Query", {})
|
|
3730
3742
|
.n("DynamoDBClient", "QueryCommand")
|
|
3731
|
-
.sc(Query)
|
|
3743
|
+
.sc(Query$)
|
|
3732
3744
|
.build() {
|
|
3733
3745
|
}
|
|
3734
3746
|
|
|
@@ -3743,7 +3755,7 @@ class RestoreTableFromBackupCommand extends smithyClient.Command
|
|
|
3743
3755
|
})
|
|
3744
3756
|
.s("DynamoDB_20120810", "RestoreTableFromBackup", {})
|
|
3745
3757
|
.n("DynamoDBClient", "RestoreTableFromBackupCommand")
|
|
3746
|
-
.sc(RestoreTableFromBackup)
|
|
3758
|
+
.sc(RestoreTableFromBackup$)
|
|
3747
3759
|
.build() {
|
|
3748
3760
|
}
|
|
3749
3761
|
|
|
@@ -3758,7 +3770,7 @@ class RestoreTableToPointInTimeCommand extends smithyClient.Command
|
|
|
3758
3770
|
})
|
|
3759
3771
|
.s("DynamoDB_20120810", "RestoreTableToPointInTime", {})
|
|
3760
3772
|
.n("DynamoDBClient", "RestoreTableToPointInTimeCommand")
|
|
3761
|
-
.sc(RestoreTableToPointInTime)
|
|
3773
|
+
.sc(RestoreTableToPointInTime$)
|
|
3762
3774
|
.build() {
|
|
3763
3775
|
}
|
|
3764
3776
|
|
|
@@ -3773,7 +3785,7 @@ class ScanCommand extends smithyClient.Command
|
|
|
3773
3785
|
})
|
|
3774
3786
|
.s("DynamoDB_20120810", "Scan", {})
|
|
3775
3787
|
.n("DynamoDBClient", "ScanCommand")
|
|
3776
|
-
.sc(Scan)
|
|
3788
|
+
.sc(Scan$)
|
|
3777
3789
|
.build() {
|
|
3778
3790
|
}
|
|
3779
3791
|
|
|
@@ -3788,7 +3800,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
3788
3800
|
})
|
|
3789
3801
|
.s("DynamoDB_20120810", "TagResource", {})
|
|
3790
3802
|
.n("DynamoDBClient", "TagResourceCommand")
|
|
3791
|
-
.sc(TagResource)
|
|
3803
|
+
.sc(TagResource$)
|
|
3792
3804
|
.build() {
|
|
3793
3805
|
}
|
|
3794
3806
|
|
|
@@ -3806,7 +3818,7 @@ class TransactGetItemsCommand extends smithyClient.Command
|
|
|
3806
3818
|
})
|
|
3807
3819
|
.s("DynamoDB_20120810", "TransactGetItems", {})
|
|
3808
3820
|
.n("DynamoDBClient", "TransactGetItemsCommand")
|
|
3809
|
-
.sc(TransactGetItems)
|
|
3821
|
+
.sc(TransactGetItems$)
|
|
3810
3822
|
.build() {
|
|
3811
3823
|
}
|
|
3812
3824
|
|
|
@@ -3824,7 +3836,7 @@ class TransactWriteItemsCommand extends smithyClient.Command
|
|
|
3824
3836
|
})
|
|
3825
3837
|
.s("DynamoDB_20120810", "TransactWriteItems", {})
|
|
3826
3838
|
.n("DynamoDBClient", "TransactWriteItemsCommand")
|
|
3827
|
-
.sc(TransactWriteItems)
|
|
3839
|
+
.sc(TransactWriteItems$)
|
|
3828
3840
|
.build() {
|
|
3829
3841
|
}
|
|
3830
3842
|
|
|
@@ -3839,7 +3851,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
3839
3851
|
})
|
|
3840
3852
|
.s("DynamoDB_20120810", "UntagResource", {})
|
|
3841
3853
|
.n("DynamoDBClient", "UntagResourceCommand")
|
|
3842
|
-
.sc(UntagResource)
|
|
3854
|
+
.sc(UntagResource$)
|
|
3843
3855
|
.build() {
|
|
3844
3856
|
}
|
|
3845
3857
|
|
|
@@ -3854,7 +3866,7 @@ class UpdateContinuousBackupsCommand extends smithyClient.Command
|
|
|
3854
3866
|
})
|
|
3855
3867
|
.s("DynamoDB_20120810", "UpdateContinuousBackups", {})
|
|
3856
3868
|
.n("DynamoDBClient", "UpdateContinuousBackupsCommand")
|
|
3857
|
-
.sc(UpdateContinuousBackups)
|
|
3869
|
+
.sc(UpdateContinuousBackups$)
|
|
3858
3870
|
.build() {
|
|
3859
3871
|
}
|
|
3860
3872
|
|
|
@@ -3869,7 +3881,7 @@ class UpdateContributorInsightsCommand extends smithyClient.Command
|
|
|
3869
3881
|
})
|
|
3870
3882
|
.s("DynamoDB_20120810", "UpdateContributorInsights", {})
|
|
3871
3883
|
.n("DynamoDBClient", "UpdateContributorInsightsCommand")
|
|
3872
|
-
.sc(UpdateContributorInsights)
|
|
3884
|
+
.sc(UpdateContributorInsights$)
|
|
3873
3885
|
.build() {
|
|
3874
3886
|
}
|
|
3875
3887
|
|
|
@@ -3884,7 +3896,7 @@ class UpdateGlobalTableCommand extends smithyClient.Command
|
|
|
3884
3896
|
})
|
|
3885
3897
|
.s("DynamoDB_20120810", "UpdateGlobalTable", {})
|
|
3886
3898
|
.n("DynamoDBClient", "UpdateGlobalTableCommand")
|
|
3887
|
-
.sc(UpdateGlobalTable)
|
|
3899
|
+
.sc(UpdateGlobalTable$)
|
|
3888
3900
|
.build() {
|
|
3889
3901
|
}
|
|
3890
3902
|
|
|
@@ -3899,7 +3911,7 @@ class UpdateGlobalTableSettingsCommand extends smithyClient.Command
|
|
|
3899
3911
|
})
|
|
3900
3912
|
.s("DynamoDB_20120810", "UpdateGlobalTableSettings", {})
|
|
3901
3913
|
.n("DynamoDBClient", "UpdateGlobalTableSettingsCommand")
|
|
3902
|
-
.sc(UpdateGlobalTableSettings)
|
|
3914
|
+
.sc(UpdateGlobalTableSettings$)
|
|
3903
3915
|
.build() {
|
|
3904
3916
|
}
|
|
3905
3917
|
|
|
@@ -3914,7 +3926,7 @@ class UpdateItemCommand extends smithyClient.Command
|
|
|
3914
3926
|
})
|
|
3915
3927
|
.s("DynamoDB_20120810", "UpdateItem", {})
|
|
3916
3928
|
.n("DynamoDBClient", "UpdateItemCommand")
|
|
3917
|
-
.sc(UpdateItem)
|
|
3929
|
+
.sc(UpdateItem$)
|
|
3918
3930
|
.build() {
|
|
3919
3931
|
}
|
|
3920
3932
|
|
|
@@ -3929,7 +3941,7 @@ class UpdateKinesisStreamingDestinationCommand extends smithyClient.Command
|
|
|
3929
3941
|
})
|
|
3930
3942
|
.s("DynamoDB_20120810", "UpdateKinesisStreamingDestination", {})
|
|
3931
3943
|
.n("DynamoDBClient", "UpdateKinesisStreamingDestinationCommand")
|
|
3932
|
-
.sc(UpdateKinesisStreamingDestination)
|
|
3944
|
+
.sc(UpdateKinesisStreamingDestination$)
|
|
3933
3945
|
.build() {
|
|
3934
3946
|
}
|
|
3935
3947
|
|
|
@@ -3944,7 +3956,7 @@ class UpdateTableCommand extends smithyClient.Command
|
|
|
3944
3956
|
})
|
|
3945
3957
|
.s("DynamoDB_20120810", "UpdateTable", {})
|
|
3946
3958
|
.n("DynamoDBClient", "UpdateTableCommand")
|
|
3947
|
-
.sc(UpdateTable)
|
|
3959
|
+
.sc(UpdateTable$)
|
|
3948
3960
|
.build() {
|
|
3949
3961
|
}
|
|
3950
3962
|
|
|
@@ -3959,7 +3971,7 @@ class UpdateTableReplicaAutoScalingCommand extends smithyClient.Command
|
|
|
3959
3971
|
})
|
|
3960
3972
|
.s("DynamoDB_20120810", "UpdateTableReplicaAutoScaling", {})
|
|
3961
3973
|
.n("DynamoDBClient", "UpdateTableReplicaAutoScalingCommand")
|
|
3962
|
-
.sc(UpdateTableReplicaAutoScaling)
|
|
3974
|
+
.sc(UpdateTableReplicaAutoScaling$)
|
|
3963
3975
|
.build() {
|
|
3964
3976
|
}
|
|
3965
3977
|
|
|
@@ -3974,7 +3986,7 @@ class UpdateTimeToLiveCommand extends smithyClient.Command
|
|
|
3974
3986
|
})
|
|
3975
3987
|
.s("DynamoDB_20120810", "UpdateTimeToLive", {})
|
|
3976
3988
|
.n("DynamoDBClient", "UpdateTimeToLiveCommand")
|
|
3977
|
-
.sc(UpdateTimeToLive)
|
|
3989
|
+
.sc(UpdateTimeToLive$)
|
|
3978
3990
|
.build() {
|
|
3979
3991
|
}
|
|
3980
3992
|
|
|
@@ -4360,142 +4372,459 @@ Object.defineProperty(exports, "__Client", {
|
|
|
4360
4372
|
get: function () { return smithyClient.Client; }
|
|
4361
4373
|
});
|
|
4362
4374
|
exports.ApproximateCreationDateTimePrecision = ApproximateCreationDateTimePrecision;
|
|
4375
|
+
exports.ArchivalSummary$ = ArchivalSummary$;
|
|
4363
4376
|
exports.AttributeAction = AttributeAction;
|
|
4364
|
-
exports.
|
|
4365
|
-
exports.
|
|
4377
|
+
exports.AttributeDefinition$ = AttributeDefinition$;
|
|
4378
|
+
exports.AttributeValue$ = AttributeValue$;
|
|
4379
|
+
exports.AttributeValueUpdate$ = AttributeValueUpdate$;
|
|
4380
|
+
exports.AutoScalingPolicyDescription$ = AutoScalingPolicyDescription$;
|
|
4381
|
+
exports.AutoScalingPolicyUpdate$ = AutoScalingPolicyUpdate$;
|
|
4382
|
+
exports.AutoScalingSettingsDescription$ = AutoScalingSettingsDescription$;
|
|
4383
|
+
exports.AutoScalingSettingsUpdate$ = AutoScalingSettingsUpdate$;
|
|
4384
|
+
exports.AutoScalingTargetTrackingScalingPolicyConfigurationDescription$ = AutoScalingTargetTrackingScalingPolicyConfigurationDescription$;
|
|
4385
|
+
exports.AutoScalingTargetTrackingScalingPolicyConfigurationUpdate$ = AutoScalingTargetTrackingScalingPolicyConfigurationUpdate$;
|
|
4386
|
+
exports.BackupDescription$ = BackupDescription$;
|
|
4387
|
+
exports.BackupDetails$ = BackupDetails$;
|
|
4388
|
+
exports.BackupInUseException = BackupInUseException;
|
|
4389
|
+
exports.BackupInUseException$ = BackupInUseException$;
|
|
4390
|
+
exports.BackupNotFoundException = BackupNotFoundException;
|
|
4391
|
+
exports.BackupNotFoundException$ = BackupNotFoundException$;
|
|
4366
4392
|
exports.BackupStatus = BackupStatus;
|
|
4393
|
+
exports.BackupSummary$ = BackupSummary$;
|
|
4367
4394
|
exports.BackupType = BackupType;
|
|
4368
4395
|
exports.BackupTypeFilter = BackupTypeFilter;
|
|
4396
|
+
exports.BatchExecuteStatement$ = BatchExecuteStatement$;
|
|
4369
4397
|
exports.BatchExecuteStatementCommand = BatchExecuteStatementCommand;
|
|
4398
|
+
exports.BatchExecuteStatementInput$ = BatchExecuteStatementInput$;
|
|
4399
|
+
exports.BatchExecuteStatementOutput$ = BatchExecuteStatementOutput$;
|
|
4400
|
+
exports.BatchGetItem$ = BatchGetItem$;
|
|
4370
4401
|
exports.BatchGetItemCommand = BatchGetItemCommand;
|
|
4402
|
+
exports.BatchGetItemInput$ = BatchGetItemInput$;
|
|
4403
|
+
exports.BatchGetItemOutput$ = BatchGetItemOutput$;
|
|
4404
|
+
exports.BatchStatementError$ = BatchStatementError$;
|
|
4371
4405
|
exports.BatchStatementErrorCodeEnum = BatchStatementErrorCodeEnum;
|
|
4406
|
+
exports.BatchStatementRequest$ = BatchStatementRequest$;
|
|
4407
|
+
exports.BatchStatementResponse$ = BatchStatementResponse$;
|
|
4408
|
+
exports.BatchWriteItem$ = BatchWriteItem$;
|
|
4372
4409
|
exports.BatchWriteItemCommand = BatchWriteItemCommand;
|
|
4410
|
+
exports.BatchWriteItemInput$ = BatchWriteItemInput$;
|
|
4411
|
+
exports.BatchWriteItemOutput$ = BatchWriteItemOutput$;
|
|
4373
4412
|
exports.BillingMode = BillingMode;
|
|
4413
|
+
exports.BillingModeSummary$ = BillingModeSummary$;
|
|
4414
|
+
exports.CancellationReason$ = CancellationReason$;
|
|
4415
|
+
exports.Capacity$ = Capacity$;
|
|
4374
4416
|
exports.ComparisonOperator = ComparisonOperator;
|
|
4375
|
-
exports.
|
|
4417
|
+
exports.Condition$ = Condition$;
|
|
4418
|
+
exports.ConditionCheck$ = ConditionCheck$;
|
|
4419
|
+
exports.ConditionalCheckFailedException = ConditionalCheckFailedException;
|
|
4420
|
+
exports.ConditionalCheckFailedException$ = ConditionalCheckFailedException$;
|
|
4376
4421
|
exports.ConditionalOperator = ConditionalOperator;
|
|
4422
|
+
exports.ConsumedCapacity$ = ConsumedCapacity$;
|
|
4423
|
+
exports.ContinuousBackupsDescription$ = ContinuousBackupsDescription$;
|
|
4377
4424
|
exports.ContinuousBackupsStatus = ContinuousBackupsStatus;
|
|
4378
|
-
exports.ContinuousBackupsUnavailableException = ContinuousBackupsUnavailableException
|
|
4425
|
+
exports.ContinuousBackupsUnavailableException = ContinuousBackupsUnavailableException;
|
|
4426
|
+
exports.ContinuousBackupsUnavailableException$ = ContinuousBackupsUnavailableException$;
|
|
4379
4427
|
exports.ContributorInsightsAction = ContributorInsightsAction;
|
|
4380
4428
|
exports.ContributorInsightsMode = ContributorInsightsMode;
|
|
4381
4429
|
exports.ContributorInsightsStatus = ContributorInsightsStatus;
|
|
4430
|
+
exports.ContributorInsightsSummary$ = ContributorInsightsSummary$;
|
|
4431
|
+
exports.CreateBackup$ = CreateBackup$;
|
|
4382
4432
|
exports.CreateBackupCommand = CreateBackupCommand;
|
|
4433
|
+
exports.CreateBackupInput$ = CreateBackupInput$;
|
|
4434
|
+
exports.CreateBackupOutput$ = CreateBackupOutput$;
|
|
4435
|
+
exports.CreateGlobalSecondaryIndexAction$ = CreateGlobalSecondaryIndexAction$;
|
|
4436
|
+
exports.CreateGlobalTable$ = CreateGlobalTable$;
|
|
4383
4437
|
exports.CreateGlobalTableCommand = CreateGlobalTableCommand;
|
|
4438
|
+
exports.CreateGlobalTableInput$ = CreateGlobalTableInput$;
|
|
4439
|
+
exports.CreateGlobalTableOutput$ = CreateGlobalTableOutput$;
|
|
4440
|
+
exports.CreateGlobalTableWitnessGroupMemberAction$ = CreateGlobalTableWitnessGroupMemberAction$;
|
|
4441
|
+
exports.CreateReplicaAction$ = CreateReplicaAction$;
|
|
4442
|
+
exports.CreateReplicationGroupMemberAction$ = CreateReplicationGroupMemberAction$;
|
|
4443
|
+
exports.CreateTable$ = CreateTable$;
|
|
4384
4444
|
exports.CreateTableCommand = CreateTableCommand;
|
|
4445
|
+
exports.CreateTableInput$ = CreateTableInput$;
|
|
4446
|
+
exports.CreateTableOutput$ = CreateTableOutput$;
|
|
4447
|
+
exports.CsvOptions$ = CsvOptions$;
|
|
4448
|
+
exports.Delete$ = Delete$;
|
|
4449
|
+
exports.DeleteBackup$ = DeleteBackup$;
|
|
4385
4450
|
exports.DeleteBackupCommand = DeleteBackupCommand;
|
|
4451
|
+
exports.DeleteBackupInput$ = DeleteBackupInput$;
|
|
4452
|
+
exports.DeleteBackupOutput$ = DeleteBackupOutput$;
|
|
4453
|
+
exports.DeleteGlobalSecondaryIndexAction$ = DeleteGlobalSecondaryIndexAction$;
|
|
4454
|
+
exports.DeleteGlobalTableWitnessGroupMemberAction$ = DeleteGlobalTableWitnessGroupMemberAction$;
|
|
4455
|
+
exports.DeleteItem$ = DeleteItem$;
|
|
4386
4456
|
exports.DeleteItemCommand = DeleteItemCommand;
|
|
4457
|
+
exports.DeleteItemInput$ = DeleteItemInput$;
|
|
4458
|
+
exports.DeleteItemOutput$ = DeleteItemOutput$;
|
|
4459
|
+
exports.DeleteReplicaAction$ = DeleteReplicaAction$;
|
|
4460
|
+
exports.DeleteReplicationGroupMemberAction$ = DeleteReplicationGroupMemberAction$;
|
|
4461
|
+
exports.DeleteRequest$ = DeleteRequest$;
|
|
4462
|
+
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
4387
4463
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
4464
|
+
exports.DeleteResourcePolicyInput$ = DeleteResourcePolicyInput$;
|
|
4465
|
+
exports.DeleteResourcePolicyOutput$ = DeleteResourcePolicyOutput$;
|
|
4466
|
+
exports.DeleteTable$ = DeleteTable$;
|
|
4388
4467
|
exports.DeleteTableCommand = DeleteTableCommand;
|
|
4468
|
+
exports.DeleteTableInput$ = DeleteTableInput$;
|
|
4469
|
+
exports.DeleteTableOutput$ = DeleteTableOutput$;
|
|
4470
|
+
exports.DescribeBackup$ = DescribeBackup$;
|
|
4389
4471
|
exports.DescribeBackupCommand = DescribeBackupCommand;
|
|
4472
|
+
exports.DescribeBackupInput$ = DescribeBackupInput$;
|
|
4473
|
+
exports.DescribeBackupOutput$ = DescribeBackupOutput$;
|
|
4474
|
+
exports.DescribeContinuousBackups$ = DescribeContinuousBackups$;
|
|
4390
4475
|
exports.DescribeContinuousBackupsCommand = DescribeContinuousBackupsCommand;
|
|
4476
|
+
exports.DescribeContinuousBackupsInput$ = DescribeContinuousBackupsInput$;
|
|
4477
|
+
exports.DescribeContinuousBackupsOutput$ = DescribeContinuousBackupsOutput$;
|
|
4478
|
+
exports.DescribeContributorInsights$ = DescribeContributorInsights$;
|
|
4391
4479
|
exports.DescribeContributorInsightsCommand = DescribeContributorInsightsCommand;
|
|
4480
|
+
exports.DescribeContributorInsightsInput$ = DescribeContributorInsightsInput$;
|
|
4481
|
+
exports.DescribeContributorInsightsOutput$ = DescribeContributorInsightsOutput$;
|
|
4482
|
+
exports.DescribeEndpoints$ = DescribeEndpoints$;
|
|
4392
4483
|
exports.DescribeEndpointsCommand = DescribeEndpointsCommand;
|
|
4484
|
+
exports.DescribeEndpointsRequest$ = DescribeEndpointsRequest$;
|
|
4485
|
+
exports.DescribeEndpointsResponse$ = DescribeEndpointsResponse$;
|
|
4486
|
+
exports.DescribeExport$ = DescribeExport$;
|
|
4393
4487
|
exports.DescribeExportCommand = DescribeExportCommand;
|
|
4488
|
+
exports.DescribeExportInput$ = DescribeExportInput$;
|
|
4489
|
+
exports.DescribeExportOutput$ = DescribeExportOutput$;
|
|
4490
|
+
exports.DescribeGlobalTable$ = DescribeGlobalTable$;
|
|
4394
4491
|
exports.DescribeGlobalTableCommand = DescribeGlobalTableCommand;
|
|
4492
|
+
exports.DescribeGlobalTableInput$ = DescribeGlobalTableInput$;
|
|
4493
|
+
exports.DescribeGlobalTableOutput$ = DescribeGlobalTableOutput$;
|
|
4494
|
+
exports.DescribeGlobalTableSettings$ = DescribeGlobalTableSettings$;
|
|
4395
4495
|
exports.DescribeGlobalTableSettingsCommand = DescribeGlobalTableSettingsCommand;
|
|
4496
|
+
exports.DescribeGlobalTableSettingsInput$ = DescribeGlobalTableSettingsInput$;
|
|
4497
|
+
exports.DescribeGlobalTableSettingsOutput$ = DescribeGlobalTableSettingsOutput$;
|
|
4498
|
+
exports.DescribeImport$ = DescribeImport$;
|
|
4396
4499
|
exports.DescribeImportCommand = DescribeImportCommand;
|
|
4500
|
+
exports.DescribeImportInput$ = DescribeImportInput$;
|
|
4501
|
+
exports.DescribeImportOutput$ = DescribeImportOutput$;
|
|
4502
|
+
exports.DescribeKinesisStreamingDestination$ = DescribeKinesisStreamingDestination$;
|
|
4397
4503
|
exports.DescribeKinesisStreamingDestinationCommand = DescribeKinesisStreamingDestinationCommand;
|
|
4504
|
+
exports.DescribeKinesisStreamingDestinationInput$ = DescribeKinesisStreamingDestinationInput$;
|
|
4505
|
+
exports.DescribeKinesisStreamingDestinationOutput$ = DescribeKinesisStreamingDestinationOutput$;
|
|
4506
|
+
exports.DescribeLimits$ = DescribeLimits$;
|
|
4398
4507
|
exports.DescribeLimitsCommand = DescribeLimitsCommand;
|
|
4508
|
+
exports.DescribeLimitsInput$ = DescribeLimitsInput$;
|
|
4509
|
+
exports.DescribeLimitsOutput$ = DescribeLimitsOutput$;
|
|
4510
|
+
exports.DescribeTable$ = DescribeTable$;
|
|
4399
4511
|
exports.DescribeTableCommand = DescribeTableCommand;
|
|
4512
|
+
exports.DescribeTableInput$ = DescribeTableInput$;
|
|
4513
|
+
exports.DescribeTableOutput$ = DescribeTableOutput$;
|
|
4514
|
+
exports.DescribeTableReplicaAutoScaling$ = DescribeTableReplicaAutoScaling$;
|
|
4400
4515
|
exports.DescribeTableReplicaAutoScalingCommand = DescribeTableReplicaAutoScalingCommand;
|
|
4516
|
+
exports.DescribeTableReplicaAutoScalingInput$ = DescribeTableReplicaAutoScalingInput$;
|
|
4517
|
+
exports.DescribeTableReplicaAutoScalingOutput$ = DescribeTableReplicaAutoScalingOutput$;
|
|
4518
|
+
exports.DescribeTimeToLive$ = DescribeTimeToLive$;
|
|
4401
4519
|
exports.DescribeTimeToLiveCommand = DescribeTimeToLiveCommand;
|
|
4520
|
+
exports.DescribeTimeToLiveInput$ = DescribeTimeToLiveInput$;
|
|
4521
|
+
exports.DescribeTimeToLiveOutput$ = DescribeTimeToLiveOutput$;
|
|
4402
4522
|
exports.DestinationStatus = DestinationStatus;
|
|
4523
|
+
exports.DisableKinesisStreamingDestination$ = DisableKinesisStreamingDestination$;
|
|
4403
4524
|
exports.DisableKinesisStreamingDestinationCommand = DisableKinesisStreamingDestinationCommand;
|
|
4404
|
-
exports.DuplicateItemException = DuplicateItemException
|
|
4525
|
+
exports.DuplicateItemException = DuplicateItemException;
|
|
4526
|
+
exports.DuplicateItemException$ = DuplicateItemException$;
|
|
4405
4527
|
exports.DynamoDB = DynamoDB;
|
|
4406
4528
|
exports.DynamoDBClient = DynamoDBClient;
|
|
4407
|
-
exports.DynamoDBServiceException = DynamoDBServiceException
|
|
4529
|
+
exports.DynamoDBServiceException = DynamoDBServiceException;
|
|
4530
|
+
exports.DynamoDBServiceException$ = DynamoDBServiceException$;
|
|
4531
|
+
exports.EnableKinesisStreamingConfiguration$ = EnableKinesisStreamingConfiguration$;
|
|
4532
|
+
exports.EnableKinesisStreamingDestination$ = EnableKinesisStreamingDestination$;
|
|
4408
4533
|
exports.EnableKinesisStreamingDestinationCommand = EnableKinesisStreamingDestinationCommand;
|
|
4534
|
+
exports.Endpoint$ = Endpoint$;
|
|
4535
|
+
exports.ExecuteStatement$ = ExecuteStatement$;
|
|
4409
4536
|
exports.ExecuteStatementCommand = ExecuteStatementCommand;
|
|
4537
|
+
exports.ExecuteStatementInput$ = ExecuteStatementInput$;
|
|
4538
|
+
exports.ExecuteStatementOutput$ = ExecuteStatementOutput$;
|
|
4539
|
+
exports.ExecuteTransaction$ = ExecuteTransaction$;
|
|
4410
4540
|
exports.ExecuteTransactionCommand = ExecuteTransactionCommand;
|
|
4411
|
-
exports.
|
|
4541
|
+
exports.ExecuteTransactionInput$ = ExecuteTransactionInput$;
|
|
4542
|
+
exports.ExecuteTransactionOutput$ = ExecuteTransactionOutput$;
|
|
4543
|
+
exports.ExpectedAttributeValue$ = ExpectedAttributeValue$;
|
|
4544
|
+
exports.ExportConflictException = ExportConflictException;
|
|
4545
|
+
exports.ExportConflictException$ = ExportConflictException$;
|
|
4546
|
+
exports.ExportDescription$ = ExportDescription$;
|
|
4412
4547
|
exports.ExportFormat = ExportFormat;
|
|
4413
|
-
exports.ExportNotFoundException = ExportNotFoundException
|
|
4548
|
+
exports.ExportNotFoundException = ExportNotFoundException;
|
|
4549
|
+
exports.ExportNotFoundException$ = ExportNotFoundException$;
|
|
4414
4550
|
exports.ExportStatus = ExportStatus;
|
|
4551
|
+
exports.ExportSummary$ = ExportSummary$;
|
|
4552
|
+
exports.ExportTableToPointInTime$ = ExportTableToPointInTime$;
|
|
4415
4553
|
exports.ExportTableToPointInTimeCommand = ExportTableToPointInTimeCommand;
|
|
4554
|
+
exports.ExportTableToPointInTimeInput$ = ExportTableToPointInTimeInput$;
|
|
4555
|
+
exports.ExportTableToPointInTimeOutput$ = ExportTableToPointInTimeOutput$;
|
|
4416
4556
|
exports.ExportType = ExportType;
|
|
4417
4557
|
exports.ExportViewType = ExportViewType;
|
|
4558
|
+
exports.FailureException$ = FailureException$;
|
|
4559
|
+
exports.Get$ = Get$;
|
|
4560
|
+
exports.GetItem$ = GetItem$;
|
|
4418
4561
|
exports.GetItemCommand = GetItemCommand;
|
|
4562
|
+
exports.GetItemInput$ = GetItemInput$;
|
|
4563
|
+
exports.GetItemOutput$ = GetItemOutput$;
|
|
4564
|
+
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
4419
4565
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
4420
|
-
exports.
|
|
4421
|
-
exports.
|
|
4566
|
+
exports.GetResourcePolicyInput$ = GetResourcePolicyInput$;
|
|
4567
|
+
exports.GetResourcePolicyOutput$ = GetResourcePolicyOutput$;
|
|
4568
|
+
exports.GlobalSecondaryIndex$ = GlobalSecondaryIndex$;
|
|
4569
|
+
exports.GlobalSecondaryIndexAutoScalingUpdate$ = GlobalSecondaryIndexAutoScalingUpdate$;
|
|
4570
|
+
exports.GlobalSecondaryIndexDescription$ = GlobalSecondaryIndexDescription$;
|
|
4571
|
+
exports.GlobalSecondaryIndexInfo$ = GlobalSecondaryIndexInfo$;
|
|
4572
|
+
exports.GlobalSecondaryIndexUpdate$ = GlobalSecondaryIndexUpdate$;
|
|
4573
|
+
exports.GlobalSecondaryIndexWarmThroughputDescription$ = GlobalSecondaryIndexWarmThroughputDescription$;
|
|
4574
|
+
exports.GlobalTable$ = GlobalTable$;
|
|
4575
|
+
exports.GlobalTableAlreadyExistsException = GlobalTableAlreadyExistsException;
|
|
4576
|
+
exports.GlobalTableAlreadyExistsException$ = GlobalTableAlreadyExistsException$;
|
|
4577
|
+
exports.GlobalTableDescription$ = GlobalTableDescription$;
|
|
4578
|
+
exports.GlobalTableGlobalSecondaryIndexSettingsUpdate$ = GlobalTableGlobalSecondaryIndexSettingsUpdate$;
|
|
4579
|
+
exports.GlobalTableNotFoundException = GlobalTableNotFoundException;
|
|
4580
|
+
exports.GlobalTableNotFoundException$ = GlobalTableNotFoundException$;
|
|
4422
4581
|
exports.GlobalTableStatus = GlobalTableStatus;
|
|
4423
|
-
exports.
|
|
4424
|
-
exports.
|
|
4425
|
-
exports.
|
|
4582
|
+
exports.GlobalTableWitnessDescription$ = GlobalTableWitnessDescription$;
|
|
4583
|
+
exports.GlobalTableWitnessGroupUpdate$ = GlobalTableWitnessGroupUpdate$;
|
|
4584
|
+
exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException;
|
|
4585
|
+
exports.IdempotentParameterMismatchException$ = IdempotentParameterMismatchException$;
|
|
4586
|
+
exports.ImportConflictException = ImportConflictException;
|
|
4587
|
+
exports.ImportConflictException$ = ImportConflictException$;
|
|
4588
|
+
exports.ImportNotFoundException = ImportNotFoundException;
|
|
4589
|
+
exports.ImportNotFoundException$ = ImportNotFoundException$;
|
|
4426
4590
|
exports.ImportStatus = ImportStatus;
|
|
4591
|
+
exports.ImportSummary$ = ImportSummary$;
|
|
4592
|
+
exports.ImportTable$ = ImportTable$;
|
|
4427
4593
|
exports.ImportTableCommand = ImportTableCommand;
|
|
4428
|
-
exports.
|
|
4594
|
+
exports.ImportTableDescription$ = ImportTableDescription$;
|
|
4595
|
+
exports.ImportTableInput$ = ImportTableInput$;
|
|
4596
|
+
exports.ImportTableOutput$ = ImportTableOutput$;
|
|
4597
|
+
exports.IncrementalExportSpecification$ = IncrementalExportSpecification$;
|
|
4598
|
+
exports.IndexNotFoundException = IndexNotFoundException;
|
|
4599
|
+
exports.IndexNotFoundException$ = IndexNotFoundException$;
|
|
4429
4600
|
exports.IndexStatus = IndexStatus;
|
|
4430
4601
|
exports.InputCompressionType = InputCompressionType;
|
|
4431
4602
|
exports.InputFormat = InputFormat;
|
|
4432
|
-
exports.
|
|
4433
|
-
exports.
|
|
4434
|
-
exports.
|
|
4435
|
-
exports.
|
|
4436
|
-
exports.
|
|
4603
|
+
exports.InputFormatOptions$ = InputFormatOptions$;
|
|
4604
|
+
exports.InternalServerError = InternalServerError;
|
|
4605
|
+
exports.InternalServerError$ = InternalServerError$;
|
|
4606
|
+
exports.InvalidEndpointException = InvalidEndpointException;
|
|
4607
|
+
exports.InvalidEndpointException$ = InvalidEndpointException$;
|
|
4608
|
+
exports.InvalidExportTimeException = InvalidExportTimeException;
|
|
4609
|
+
exports.InvalidExportTimeException$ = InvalidExportTimeException$;
|
|
4610
|
+
exports.InvalidRestoreTimeException = InvalidRestoreTimeException;
|
|
4611
|
+
exports.InvalidRestoreTimeException$ = InvalidRestoreTimeException$;
|
|
4612
|
+
exports.ItemCollectionMetrics$ = ItemCollectionMetrics$;
|
|
4613
|
+
exports.ItemCollectionSizeLimitExceededException = ItemCollectionSizeLimitExceededException;
|
|
4614
|
+
exports.ItemCollectionSizeLimitExceededException$ = ItemCollectionSizeLimitExceededException$;
|
|
4615
|
+
exports.ItemResponse$ = ItemResponse$;
|
|
4616
|
+
exports.KeySchemaElement$ = KeySchemaElement$;
|
|
4437
4617
|
exports.KeyType = KeyType;
|
|
4438
|
-
exports.
|
|
4618
|
+
exports.KeysAndAttributes$ = KeysAndAttributes$;
|
|
4619
|
+
exports.KinesisDataStreamDestination$ = KinesisDataStreamDestination$;
|
|
4620
|
+
exports.KinesisStreamingDestinationInput$ = KinesisStreamingDestinationInput$;
|
|
4621
|
+
exports.KinesisStreamingDestinationOutput$ = KinesisStreamingDestinationOutput$;
|
|
4622
|
+
exports.LimitExceededException = LimitExceededException;
|
|
4623
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
4624
|
+
exports.ListBackups$ = ListBackups$;
|
|
4439
4625
|
exports.ListBackupsCommand = ListBackupsCommand;
|
|
4626
|
+
exports.ListBackupsInput$ = ListBackupsInput$;
|
|
4627
|
+
exports.ListBackupsOutput$ = ListBackupsOutput$;
|
|
4628
|
+
exports.ListContributorInsights$ = ListContributorInsights$;
|
|
4440
4629
|
exports.ListContributorInsightsCommand = ListContributorInsightsCommand;
|
|
4630
|
+
exports.ListContributorInsightsInput$ = ListContributorInsightsInput$;
|
|
4631
|
+
exports.ListContributorInsightsOutput$ = ListContributorInsightsOutput$;
|
|
4632
|
+
exports.ListExports$ = ListExports$;
|
|
4441
4633
|
exports.ListExportsCommand = ListExportsCommand;
|
|
4634
|
+
exports.ListExportsInput$ = ListExportsInput$;
|
|
4635
|
+
exports.ListExportsOutput$ = ListExportsOutput$;
|
|
4636
|
+
exports.ListGlobalTables$ = ListGlobalTables$;
|
|
4442
4637
|
exports.ListGlobalTablesCommand = ListGlobalTablesCommand;
|
|
4638
|
+
exports.ListGlobalTablesInput$ = ListGlobalTablesInput$;
|
|
4639
|
+
exports.ListGlobalTablesOutput$ = ListGlobalTablesOutput$;
|
|
4640
|
+
exports.ListImports$ = ListImports$;
|
|
4443
4641
|
exports.ListImportsCommand = ListImportsCommand;
|
|
4642
|
+
exports.ListImportsInput$ = ListImportsInput$;
|
|
4643
|
+
exports.ListImportsOutput$ = ListImportsOutput$;
|
|
4644
|
+
exports.ListTables$ = ListTables$;
|
|
4444
4645
|
exports.ListTablesCommand = ListTablesCommand;
|
|
4646
|
+
exports.ListTablesInput$ = ListTablesInput$;
|
|
4647
|
+
exports.ListTablesOutput$ = ListTablesOutput$;
|
|
4648
|
+
exports.ListTagsOfResource$ = ListTagsOfResource$;
|
|
4445
4649
|
exports.ListTagsOfResourceCommand = ListTagsOfResourceCommand;
|
|
4650
|
+
exports.ListTagsOfResourceInput$ = ListTagsOfResourceInput$;
|
|
4651
|
+
exports.ListTagsOfResourceOutput$ = ListTagsOfResourceOutput$;
|
|
4652
|
+
exports.LocalSecondaryIndex$ = LocalSecondaryIndex$;
|
|
4653
|
+
exports.LocalSecondaryIndexDescription$ = LocalSecondaryIndexDescription$;
|
|
4654
|
+
exports.LocalSecondaryIndexInfo$ = LocalSecondaryIndexInfo$;
|
|
4446
4655
|
exports.MultiRegionConsistency = MultiRegionConsistency;
|
|
4656
|
+
exports.OnDemandThroughput$ = OnDemandThroughput$;
|
|
4657
|
+
exports.OnDemandThroughputOverride$ = OnDemandThroughputOverride$;
|
|
4658
|
+
exports.ParameterizedStatement$ = ParameterizedStatement$;
|
|
4659
|
+
exports.PointInTimeRecoveryDescription$ = PointInTimeRecoveryDescription$;
|
|
4660
|
+
exports.PointInTimeRecoverySpecification$ = PointInTimeRecoverySpecification$;
|
|
4447
4661
|
exports.PointInTimeRecoveryStatus = PointInTimeRecoveryStatus;
|
|
4448
|
-
exports.PointInTimeRecoveryUnavailableException = PointInTimeRecoveryUnavailableException
|
|
4449
|
-
exports.
|
|
4662
|
+
exports.PointInTimeRecoveryUnavailableException = PointInTimeRecoveryUnavailableException;
|
|
4663
|
+
exports.PointInTimeRecoveryUnavailableException$ = PointInTimeRecoveryUnavailableException$;
|
|
4664
|
+
exports.PolicyNotFoundException = PolicyNotFoundException;
|
|
4665
|
+
exports.PolicyNotFoundException$ = PolicyNotFoundException$;
|
|
4666
|
+
exports.Projection$ = Projection$;
|
|
4450
4667
|
exports.ProjectionType = ProjectionType;
|
|
4451
|
-
exports.
|
|
4668
|
+
exports.ProvisionedThroughput$ = ProvisionedThroughput$;
|
|
4669
|
+
exports.ProvisionedThroughputDescription$ = ProvisionedThroughputDescription$;
|
|
4670
|
+
exports.ProvisionedThroughputExceededException = ProvisionedThroughputExceededException;
|
|
4671
|
+
exports.ProvisionedThroughputExceededException$ = ProvisionedThroughputExceededException$;
|
|
4672
|
+
exports.ProvisionedThroughputOverride$ = ProvisionedThroughputOverride$;
|
|
4673
|
+
exports.Put$ = Put$;
|
|
4674
|
+
exports.PutItem$ = PutItem$;
|
|
4452
4675
|
exports.PutItemCommand = PutItemCommand;
|
|
4676
|
+
exports.PutItemInput$ = PutItemInput$;
|
|
4677
|
+
exports.PutItemOutput$ = PutItemOutput$;
|
|
4678
|
+
exports.PutRequest$ = PutRequest$;
|
|
4679
|
+
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
4453
4680
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
4681
|
+
exports.PutResourcePolicyInput$ = PutResourcePolicyInput$;
|
|
4682
|
+
exports.PutResourcePolicyOutput$ = PutResourcePolicyOutput$;
|
|
4683
|
+
exports.Query$ = Query$;
|
|
4454
4684
|
exports.QueryCommand = QueryCommand;
|
|
4455
|
-
exports.
|
|
4456
|
-
exports.
|
|
4685
|
+
exports.QueryInput$ = QueryInput$;
|
|
4686
|
+
exports.QueryOutput$ = QueryOutput$;
|
|
4687
|
+
exports.Replica$ = Replica$;
|
|
4688
|
+
exports.ReplicaAlreadyExistsException = ReplicaAlreadyExistsException;
|
|
4689
|
+
exports.ReplicaAlreadyExistsException$ = ReplicaAlreadyExistsException$;
|
|
4690
|
+
exports.ReplicaAutoScalingDescription$ = ReplicaAutoScalingDescription$;
|
|
4691
|
+
exports.ReplicaAutoScalingUpdate$ = ReplicaAutoScalingUpdate$;
|
|
4692
|
+
exports.ReplicaDescription$ = ReplicaDescription$;
|
|
4693
|
+
exports.ReplicaGlobalSecondaryIndex$ = ReplicaGlobalSecondaryIndex$;
|
|
4694
|
+
exports.ReplicaGlobalSecondaryIndexAutoScalingDescription$ = ReplicaGlobalSecondaryIndexAutoScalingDescription$;
|
|
4695
|
+
exports.ReplicaGlobalSecondaryIndexAutoScalingUpdate$ = ReplicaGlobalSecondaryIndexAutoScalingUpdate$;
|
|
4696
|
+
exports.ReplicaGlobalSecondaryIndexDescription$ = ReplicaGlobalSecondaryIndexDescription$;
|
|
4697
|
+
exports.ReplicaGlobalSecondaryIndexSettingsDescription$ = ReplicaGlobalSecondaryIndexSettingsDescription$;
|
|
4698
|
+
exports.ReplicaGlobalSecondaryIndexSettingsUpdate$ = ReplicaGlobalSecondaryIndexSettingsUpdate$;
|
|
4699
|
+
exports.ReplicaNotFoundException = ReplicaNotFoundException;
|
|
4700
|
+
exports.ReplicaNotFoundException$ = ReplicaNotFoundException$;
|
|
4701
|
+
exports.ReplicaSettingsDescription$ = ReplicaSettingsDescription$;
|
|
4702
|
+
exports.ReplicaSettingsUpdate$ = ReplicaSettingsUpdate$;
|
|
4457
4703
|
exports.ReplicaStatus = ReplicaStatus;
|
|
4458
|
-
exports.
|
|
4459
|
-
exports.
|
|
4460
|
-
exports.
|
|
4461
|
-
exports.
|
|
4704
|
+
exports.ReplicaUpdate$ = ReplicaUpdate$;
|
|
4705
|
+
exports.ReplicatedWriteConflictException = ReplicatedWriteConflictException;
|
|
4706
|
+
exports.ReplicatedWriteConflictException$ = ReplicatedWriteConflictException$;
|
|
4707
|
+
exports.ReplicationGroupUpdate$ = ReplicationGroupUpdate$;
|
|
4708
|
+
exports.RequestLimitExceeded = RequestLimitExceeded;
|
|
4709
|
+
exports.RequestLimitExceeded$ = RequestLimitExceeded$;
|
|
4710
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
4711
|
+
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
4712
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
4713
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
4714
|
+
exports.RestoreSummary$ = RestoreSummary$;
|
|
4715
|
+
exports.RestoreTableFromBackup$ = RestoreTableFromBackup$;
|
|
4462
4716
|
exports.RestoreTableFromBackupCommand = RestoreTableFromBackupCommand;
|
|
4717
|
+
exports.RestoreTableFromBackupInput$ = RestoreTableFromBackupInput$;
|
|
4718
|
+
exports.RestoreTableFromBackupOutput$ = RestoreTableFromBackupOutput$;
|
|
4719
|
+
exports.RestoreTableToPointInTime$ = RestoreTableToPointInTime$;
|
|
4463
4720
|
exports.RestoreTableToPointInTimeCommand = RestoreTableToPointInTimeCommand;
|
|
4721
|
+
exports.RestoreTableToPointInTimeInput$ = RestoreTableToPointInTimeInput$;
|
|
4722
|
+
exports.RestoreTableToPointInTimeOutput$ = RestoreTableToPointInTimeOutput$;
|
|
4464
4723
|
exports.ReturnConsumedCapacity = ReturnConsumedCapacity;
|
|
4465
4724
|
exports.ReturnItemCollectionMetrics = ReturnItemCollectionMetrics;
|
|
4466
4725
|
exports.ReturnValue = ReturnValue;
|
|
4467
4726
|
exports.ReturnValuesOnConditionCheckFailure = ReturnValuesOnConditionCheckFailure;
|
|
4727
|
+
exports.S3BucketSource$ = S3BucketSource$;
|
|
4468
4728
|
exports.S3SseAlgorithm = S3SseAlgorithm;
|
|
4729
|
+
exports.SSEDescription$ = SSEDescription$;
|
|
4730
|
+
exports.SSESpecification$ = SSESpecification$;
|
|
4469
4731
|
exports.SSEStatus = SSEStatus;
|
|
4470
4732
|
exports.SSEType = SSEType;
|
|
4471
4733
|
exports.ScalarAttributeType = ScalarAttributeType;
|
|
4734
|
+
exports.Scan$ = Scan$;
|
|
4472
4735
|
exports.ScanCommand = ScanCommand;
|
|
4736
|
+
exports.ScanInput$ = ScanInput$;
|
|
4737
|
+
exports.ScanOutput$ = ScanOutput$;
|
|
4473
4738
|
exports.Select = Select;
|
|
4739
|
+
exports.SourceTableDetails$ = SourceTableDetails$;
|
|
4740
|
+
exports.SourceTableFeatureDetails$ = SourceTableFeatureDetails$;
|
|
4741
|
+
exports.StreamSpecification$ = StreamSpecification$;
|
|
4474
4742
|
exports.StreamViewType = StreamViewType;
|
|
4475
|
-
exports.TableAlreadyExistsException = TableAlreadyExistsException
|
|
4743
|
+
exports.TableAlreadyExistsException = TableAlreadyExistsException;
|
|
4744
|
+
exports.TableAlreadyExistsException$ = TableAlreadyExistsException$;
|
|
4745
|
+
exports.TableAutoScalingDescription$ = TableAutoScalingDescription$;
|
|
4476
4746
|
exports.TableClass = TableClass;
|
|
4477
|
-
exports.
|
|
4478
|
-
exports.
|
|
4747
|
+
exports.TableClassSummary$ = TableClassSummary$;
|
|
4748
|
+
exports.TableCreationParameters$ = TableCreationParameters$;
|
|
4749
|
+
exports.TableDescription$ = TableDescription$;
|
|
4750
|
+
exports.TableInUseException = TableInUseException;
|
|
4751
|
+
exports.TableInUseException$ = TableInUseException$;
|
|
4752
|
+
exports.TableNotFoundException = TableNotFoundException;
|
|
4753
|
+
exports.TableNotFoundException$ = TableNotFoundException$;
|
|
4479
4754
|
exports.TableStatus = TableStatus;
|
|
4755
|
+
exports.TableWarmThroughputDescription$ = TableWarmThroughputDescription$;
|
|
4756
|
+
exports.Tag$ = Tag$;
|
|
4757
|
+
exports.TagResource$ = TagResource$;
|
|
4480
4758
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4481
|
-
exports.
|
|
4759
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
4760
|
+
exports.ThrottlingException = ThrottlingException;
|
|
4761
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
4762
|
+
exports.ThrottlingReason$ = ThrottlingReason$;
|
|
4763
|
+
exports.TimeToLiveDescription$ = TimeToLiveDescription$;
|
|
4764
|
+
exports.TimeToLiveSpecification$ = TimeToLiveSpecification$;
|
|
4482
4765
|
exports.TimeToLiveStatus = TimeToLiveStatus;
|
|
4766
|
+
exports.TransactGetItem$ = TransactGetItem$;
|
|
4767
|
+
exports.TransactGetItems$ = TransactGetItems$;
|
|
4483
4768
|
exports.TransactGetItemsCommand = TransactGetItemsCommand;
|
|
4769
|
+
exports.TransactGetItemsInput$ = TransactGetItemsInput$;
|
|
4770
|
+
exports.TransactGetItemsOutput$ = TransactGetItemsOutput$;
|
|
4771
|
+
exports.TransactWriteItem$ = TransactWriteItem$;
|
|
4772
|
+
exports.TransactWriteItems$ = TransactWriteItems$;
|
|
4484
4773
|
exports.TransactWriteItemsCommand = TransactWriteItemsCommand;
|
|
4485
|
-
exports.
|
|
4486
|
-
exports.
|
|
4487
|
-
exports.
|
|
4774
|
+
exports.TransactWriteItemsInput$ = TransactWriteItemsInput$;
|
|
4775
|
+
exports.TransactWriteItemsOutput$ = TransactWriteItemsOutput$;
|
|
4776
|
+
exports.TransactionCanceledException = TransactionCanceledException;
|
|
4777
|
+
exports.TransactionCanceledException$ = TransactionCanceledException$;
|
|
4778
|
+
exports.TransactionConflictException = TransactionConflictException;
|
|
4779
|
+
exports.TransactionConflictException$ = TransactionConflictException$;
|
|
4780
|
+
exports.TransactionInProgressException = TransactionInProgressException;
|
|
4781
|
+
exports.TransactionInProgressException$ = TransactionInProgressException$;
|
|
4782
|
+
exports.UntagResource$ = UntagResource$;
|
|
4488
4783
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4784
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
4785
|
+
exports.Update$ = Update$;
|
|
4786
|
+
exports.UpdateContinuousBackups$ = UpdateContinuousBackups$;
|
|
4489
4787
|
exports.UpdateContinuousBackupsCommand = UpdateContinuousBackupsCommand;
|
|
4788
|
+
exports.UpdateContinuousBackupsInput$ = UpdateContinuousBackupsInput$;
|
|
4789
|
+
exports.UpdateContinuousBackupsOutput$ = UpdateContinuousBackupsOutput$;
|
|
4790
|
+
exports.UpdateContributorInsights$ = UpdateContributorInsights$;
|
|
4490
4791
|
exports.UpdateContributorInsightsCommand = UpdateContributorInsightsCommand;
|
|
4792
|
+
exports.UpdateContributorInsightsInput$ = UpdateContributorInsightsInput$;
|
|
4793
|
+
exports.UpdateContributorInsightsOutput$ = UpdateContributorInsightsOutput$;
|
|
4794
|
+
exports.UpdateGlobalSecondaryIndexAction$ = UpdateGlobalSecondaryIndexAction$;
|
|
4795
|
+
exports.UpdateGlobalTable$ = UpdateGlobalTable$;
|
|
4491
4796
|
exports.UpdateGlobalTableCommand = UpdateGlobalTableCommand;
|
|
4797
|
+
exports.UpdateGlobalTableInput$ = UpdateGlobalTableInput$;
|
|
4798
|
+
exports.UpdateGlobalTableOutput$ = UpdateGlobalTableOutput$;
|
|
4799
|
+
exports.UpdateGlobalTableSettings$ = UpdateGlobalTableSettings$;
|
|
4492
4800
|
exports.UpdateGlobalTableSettingsCommand = UpdateGlobalTableSettingsCommand;
|
|
4801
|
+
exports.UpdateGlobalTableSettingsInput$ = UpdateGlobalTableSettingsInput$;
|
|
4802
|
+
exports.UpdateGlobalTableSettingsOutput$ = UpdateGlobalTableSettingsOutput$;
|
|
4803
|
+
exports.UpdateItem$ = UpdateItem$;
|
|
4493
4804
|
exports.UpdateItemCommand = UpdateItemCommand;
|
|
4805
|
+
exports.UpdateItemInput$ = UpdateItemInput$;
|
|
4806
|
+
exports.UpdateItemOutput$ = UpdateItemOutput$;
|
|
4807
|
+
exports.UpdateKinesisStreamingConfiguration$ = UpdateKinesisStreamingConfiguration$;
|
|
4808
|
+
exports.UpdateKinesisStreamingDestination$ = UpdateKinesisStreamingDestination$;
|
|
4494
4809
|
exports.UpdateKinesisStreamingDestinationCommand = UpdateKinesisStreamingDestinationCommand;
|
|
4810
|
+
exports.UpdateKinesisStreamingDestinationInput$ = UpdateKinesisStreamingDestinationInput$;
|
|
4811
|
+
exports.UpdateKinesisStreamingDestinationOutput$ = UpdateKinesisStreamingDestinationOutput$;
|
|
4812
|
+
exports.UpdateReplicationGroupMemberAction$ = UpdateReplicationGroupMemberAction$;
|
|
4813
|
+
exports.UpdateTable$ = UpdateTable$;
|
|
4495
4814
|
exports.UpdateTableCommand = UpdateTableCommand;
|
|
4815
|
+
exports.UpdateTableInput$ = UpdateTableInput$;
|
|
4816
|
+
exports.UpdateTableOutput$ = UpdateTableOutput$;
|
|
4817
|
+
exports.UpdateTableReplicaAutoScaling$ = UpdateTableReplicaAutoScaling$;
|
|
4496
4818
|
exports.UpdateTableReplicaAutoScalingCommand = UpdateTableReplicaAutoScalingCommand;
|
|
4819
|
+
exports.UpdateTableReplicaAutoScalingInput$ = UpdateTableReplicaAutoScalingInput$;
|
|
4820
|
+
exports.UpdateTableReplicaAutoScalingOutput$ = UpdateTableReplicaAutoScalingOutput$;
|
|
4821
|
+
exports.UpdateTimeToLive$ = UpdateTimeToLive$;
|
|
4497
4822
|
exports.UpdateTimeToLiveCommand = UpdateTimeToLiveCommand;
|
|
4823
|
+
exports.UpdateTimeToLiveInput$ = UpdateTimeToLiveInput$;
|
|
4824
|
+
exports.UpdateTimeToLiveOutput$ = UpdateTimeToLiveOutput$;
|
|
4825
|
+
exports.WarmThroughput$ = WarmThroughput$;
|
|
4498
4826
|
exports.WitnessStatus = WitnessStatus;
|
|
4827
|
+
exports.WriteRequest$ = WriteRequest$;
|
|
4499
4828
|
exports.paginateListContributorInsights = paginateListContributorInsights;
|
|
4500
4829
|
exports.paginateListExports = paginateListExports;
|
|
4501
4830
|
exports.paginateListImports = paginateListImports;
|