@aws-sdk/client-dynamodb 3.775.0 → 3.782.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist-types/commands/BatchExecuteStatementCommand.d.ts +1 -0
  2. package/dist-types/commands/BatchGetItemCommand.d.ts +27 -27
  3. package/dist-types/commands/BatchWriteItemCommand.d.ts +32 -29
  4. package/dist-types/commands/CreateBackupCommand.d.ts +1 -0
  5. package/dist-types/commands/CreateGlobalTableCommand.d.ts +1 -0
  6. package/dist-types/commands/CreateTableCommand.d.ts +1 -70
  7. package/dist-types/commands/DeleteBackupCommand.d.ts +1 -0
  8. package/dist-types/commands/DeleteItemCommand.d.ts +12 -12
  9. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +1 -0
  10. package/dist-types/commands/DeleteTableCommand.d.ts +13 -13
  11. package/dist-types/commands/DescribeBackupCommand.d.ts +1 -0
  12. package/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +1 -0
  13. package/dist-types/commands/DescribeContributorInsightsCommand.d.ts +1 -0
  14. package/dist-types/commands/DescribeEndpointsCommand.d.ts +1 -0
  15. package/dist-types/commands/DescribeExportCommand.d.ts +1 -0
  16. package/dist-types/commands/DescribeGlobalTableCommand.d.ts +1 -0
  17. package/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +1 -0
  18. package/dist-types/commands/DescribeImportCommand.d.ts +1 -0
  19. package/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +1 -0
  20. package/dist-types/commands/DescribeLimitsCommand.d.ts +8 -8
  21. package/dist-types/commands/DescribeTableCommand.d.ts +1 -47
  22. package/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +1 -0
  23. package/dist-types/commands/DescribeTimeToLiveCommand.d.ts +1 -0
  24. package/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +1 -0
  25. package/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +1 -0
  26. package/dist-types/commands/ExecuteStatementCommand.d.ts +1 -0
  27. package/dist-types/commands/ExecuteTransactionCommand.d.ts +1 -0
  28. package/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +1 -0
  29. package/dist-types/commands/GetItemCommand.d.ts +16 -16
  30. package/dist-types/commands/GetResourcePolicyCommand.d.ts +1 -0
  31. package/dist-types/commands/ImportTableCommand.d.ts +1 -0
  32. package/dist-types/commands/ListBackupsCommand.d.ts +1 -0
  33. package/dist-types/commands/ListContributorInsightsCommand.d.ts +1 -0
  34. package/dist-types/commands/ListExportsCommand.d.ts +1 -0
  35. package/dist-types/commands/ListGlobalTablesCommand.d.ts +1 -0
  36. package/dist-types/commands/ListImportsCommand.d.ts +1 -0
  37. package/dist-types/commands/ListTablesCommand.d.ts +5 -5
  38. package/dist-types/commands/ListTagsOfResourceCommand.d.ts +1 -0
  39. package/dist-types/commands/PutItemCommand.d.ts +15 -15
  40. package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -0
  41. package/dist-types/commands/QueryCommand.d.ts +15 -15
  42. package/dist-types/commands/RestoreTableFromBackupCommand.d.ts +1 -0
  43. package/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +1 -0
  44. package/dist-types/commands/ScanCommand.d.ts +24 -24
  45. package/dist-types/commands/TagResourceCommand.d.ts +1 -0
  46. package/dist-types/commands/TransactGetItemsCommand.d.ts +1 -0
  47. package/dist-types/commands/TransactWriteItemsCommand.d.ts +1 -0
  48. package/dist-types/commands/UntagResourceCommand.d.ts +1 -0
  49. package/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +1 -0
  50. package/dist-types/commands/UpdateContributorInsightsCommand.d.ts +1 -0
  51. package/dist-types/commands/UpdateGlobalTableCommand.d.ts +1 -0
  52. package/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +1 -0
  53. package/dist-types/commands/UpdateItemCommand.d.ts +28 -28
  54. package/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +1 -0
  55. package/dist-types/commands/UpdateTableCommand.d.ts +1 -52
  56. package/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +1 -0
  57. package/dist-types/commands/UpdateTimeToLiveCommand.d.ts +1 -0
  58. package/package.json +5 -5
@@ -210,6 +210,7 @@ declare const BatchExecuteStatementCommand_base: {
210
210
  * @throws {@link DynamoDBServiceException}
211
211
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
212
212
  *
213
+ *
213
214
  * @public
214
215
  */
215
216
  export declare class BatchExecuteStatementCommand extends BatchExecuteStatementCommand_base {
@@ -271,71 +271,71 @@ declare const BatchGetItemCommand_base: {
271
271
  * @throws {@link DynamoDBServiceException}
272
272
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
273
273
  *
274
- * @public
274
+ *
275
275
  * @example To retrieve multiple items from a table
276
276
  * ```javascript
277
277
  * // This example reads multiple items from the Music table using a batch of three GetItem requests. Only the AlbumTitle attribute is returned.
278
278
  * const input = {
279
- * "RequestItems": {
280
- * "Music": {
281
- * "Keys": [
279
+ * RequestItems: {
280
+ * Music: {
281
+ * Keys: [
282
282
  * {
283
- * "Artist": {
284
- * "S": "No One You Know"
283
+ * Artist: {
284
+ * S: "No One You Know"
285
285
  * },
286
- * "SongTitle": {
287
- * "S": "Call Me Today"
286
+ * SongTitle: {
287
+ * S: "Call Me Today"
288
288
  * }
289
289
  * },
290
290
  * {
291
- * "Artist": {
292
- * "S": "Acme Band"
291
+ * Artist: {
292
+ * S: "Acme Band"
293
293
  * },
294
- * "SongTitle": {
295
- * "S": "Happy Day"
294
+ * SongTitle: {
295
+ * S: "Happy Day"
296
296
  * }
297
297
  * },
298
298
  * {
299
- * "Artist": {
300
- * "S": "No One You Know"
299
+ * Artist: {
300
+ * S: "No One You Know"
301
301
  * },
302
- * "SongTitle": {
303
- * "S": "Scared of My Shadow"
302
+ * SongTitle: {
303
+ * S: "Scared of My Shadow"
304
304
  * }
305
305
  * }
306
306
  * ],
307
- * "ProjectionExpression": "AlbumTitle"
307
+ * ProjectionExpression: "AlbumTitle"
308
308
  * }
309
309
  * }
310
310
  * };
311
311
  * const command = new BatchGetItemCommand(input);
312
312
  * const response = await client.send(command);
313
- * /* response ==
313
+ * /* response is
314
314
  * {
315
- * "Responses": {
316
- * "Music": [
315
+ * Responses: {
316
+ * Music: [
317
317
  * {
318
- * "AlbumTitle": {
319
- * "S": "Somewhat Famous"
318
+ * AlbumTitle: {
319
+ * S: "Somewhat Famous"
320
320
  * }
321
321
  * },
322
322
  * {
323
- * "AlbumTitle": {
324
- * "S": "Blue Sky Blues"
323
+ * AlbumTitle: {
324
+ * S: "Blue Sky Blues"
325
325
  * }
326
326
  * },
327
327
  * {
328
- * "AlbumTitle": {
329
- * "S": "Louder Than Ever"
328
+ * AlbumTitle: {
329
+ * S: "Louder Than Ever"
330
330
  * }
331
331
  * }
332
332
  * ]
333
333
  * }
334
334
  * }
335
335
  * *\/
336
- * // example id: to-retrieve-multiple-items-from-a-table-1476118438992
337
336
  * ```
338
337
  *
338
+ * @public
339
339
  */
340
340
  export declare class BatchGetItemCommand extends BatchGetItemCommand_base {
341
341
  /** @internal type navigation helper, not in runtime. */
@@ -322,54 +322,54 @@ declare const BatchWriteItemCommand_base: {
322
322
  * @throws {@link DynamoDBServiceException}
323
323
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
324
324
  *
325
- * @public
325
+ *
326
326
  * @example To add multiple items to a table
327
327
  * ```javascript
328
328
  * // This example adds three new items to the Music table using a batch of three PutItem requests.
329
329
  * const input = {
330
- * "RequestItems": {
331
- * "Music": [
330
+ * RequestItems: {
331
+ * Music: [
332
332
  * {
333
- * "PutRequest": {
334
- * "Item": {
335
- * "AlbumTitle": {
336
- * "S": "Somewhat Famous"
333
+ * PutRequest: {
334
+ * Item: {
335
+ * AlbumTitle: {
336
+ * S: "Somewhat Famous"
337
337
  * },
338
- * "Artist": {
339
- * "S": "No One You Know"
338
+ * Artist: {
339
+ * S: "No One You Know"
340
340
  * },
341
- * "SongTitle": {
342
- * "S": "Call Me Today"
341
+ * SongTitle: {
342
+ * S: "Call Me Today"
343
343
  * }
344
344
  * }
345
345
  * }
346
346
  * },
347
347
  * {
348
- * "PutRequest": {
349
- * "Item": {
350
- * "AlbumTitle": {
351
- * "S": "Songs About Life"
348
+ * PutRequest: {
349
+ * Item: {
350
+ * AlbumTitle: {
351
+ * S: "Songs About Life"
352
352
  * },
353
- * "Artist": {
354
- * "S": "Acme Band"
353
+ * Artist: {
354
+ * S: "Acme Band"
355
355
  * },
356
- * "SongTitle": {
357
- * "S": "Happy Day"
356
+ * SongTitle: {
357
+ * S: "Happy Day"
358
358
  * }
359
359
  * }
360
360
  * }
361
361
  * },
362
362
  * {
363
- * "PutRequest": {
364
- * "Item": {
365
- * "AlbumTitle": {
366
- * "S": "Blue Sky Blues"
363
+ * PutRequest: {
364
+ * Item: {
365
+ * AlbumTitle: {
366
+ * S: "Blue Sky Blues"
367
367
  * },
368
- * "Artist": {
369
- * "S": "No One You Know"
368
+ * Artist: {
369
+ * S: "No One You Know"
370
370
  * },
371
- * "SongTitle": {
372
- * "S": "Scared of My Shadow"
371
+ * SongTitle: {
372
+ * S: "Scared of My Shadow"
373
373
  * }
374
374
  * }
375
375
  * }
@@ -378,10 +378,13 @@ declare const BatchWriteItemCommand_base: {
378
378
  * }
379
379
  * };
380
380
  * const command = new BatchWriteItemCommand(input);
381
- * await client.send(command);
382
- * // example id: to-add-multiple-items-to-a-table-1476118519747
381
+ * const response = await client.send(command);
382
+ * /* response is
383
+ * { /* empty *\/ }
384
+ * *\/
383
385
  * ```
384
386
  *
387
+ * @public
385
388
  */
386
389
  export declare class BatchWriteItemCommand extends BatchWriteItemCommand_base {
387
390
  /** @internal type navigation helper, not in runtime. */
@@ -128,6 +128,7 @@ declare const CreateBackupCommand_base: {
128
128
  * @throws {@link DynamoDBServiceException}
129
129
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
130
130
  *
131
+ *
131
132
  * @public
132
133
  */
133
134
  export declare class CreateBackupCommand extends CreateBackupCommand_base {
@@ -187,6 +187,7 @@ declare const CreateGlobalTableCommand_base: {
187
187
  * @throws {@link DynamoDBServiceException}
188
188
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
189
189
  *
190
+ *
190
191
  * @public
191
192
  */
192
193
  export declare class CreateGlobalTableCommand extends CreateGlobalTableCommand_base {
@@ -360,77 +360,8 @@ declare const CreateTableCommand_base: {
360
360
  * @throws {@link DynamoDBServiceException}
361
361
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
362
362
  *
363
- * @public
364
- * @example To create a table
365
- * ```javascript
366
- * // This example creates a table named Music.
367
- * const input = {
368
- * "AttributeDefinitions": [
369
- * {
370
- * "AttributeName": "Artist",
371
- * "AttributeType": "S"
372
- * },
373
- * {
374
- * "AttributeName": "SongTitle",
375
- * "AttributeType": "S"
376
- * }
377
- * ],
378
- * "KeySchema": [
379
- * {
380
- * "AttributeName": "Artist",
381
- * "KeyType": "HASH"
382
- * },
383
- * {
384
- * "AttributeName": "SongTitle",
385
- * "KeyType": "RANGE"
386
- * }
387
- * ],
388
- * "ProvisionedThroughput": {
389
- * "ReadCapacityUnits": 5,
390
- * "WriteCapacityUnits": 5
391
- * },
392
- * "TableName": "Music"
393
- * };
394
- * const command = new CreateTableCommand(input);
395
- * const response = await client.send(command);
396
- * /* response ==
397
- * {
398
- * "TableDescription": {
399
- * "AttributeDefinitions": [
400
- * {
401
- * "AttributeName": "Artist",
402
- * "AttributeType": "S"
403
- * },
404
- * {
405
- * "AttributeName": "SongTitle",
406
- * "AttributeType": "S"
407
- * }
408
- * ],
409
- * "CreationDateTime": "1421866952.062",
410
- * "ItemCount": 0,
411
- * "KeySchema": [
412
- * {
413
- * "AttributeName": "Artist",
414
- * "KeyType": "HASH"
415
- * },
416
- * {
417
- * "AttributeName": "SongTitle",
418
- * "KeyType": "RANGE"
419
- * }
420
- * ],
421
- * "ProvisionedThroughput": {
422
- * "ReadCapacityUnits": 5,
423
- * "WriteCapacityUnits": 5
424
- * },
425
- * "TableName": "Music",
426
- * "TableSizeBytes": 0,
427
- * "TableStatus": "CREATING"
428
- * }
429
- * }
430
- * *\/
431
- * // example id: to-create-a-table-1476116291743
432
- * ```
433
363
  *
364
+ * @public
434
365
  */
435
366
  export declare class CreateTableCommand extends CreateTableCommand_base {
436
367
  /** @internal type navigation helper, not in runtime. */
@@ -175,6 +175,7 @@ declare const DeleteBackupCommand_base: {
175
175
  * @throws {@link DynamoDBServiceException}
176
176
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
177
177
  *
178
+ *
178
179
  * @public
179
180
  */
180
181
  export declare class DeleteBackupCommand extends DeleteBackupCommand_base {
@@ -242,34 +242,34 @@ declare const DeleteItemCommand_base: {
242
242
  * @throws {@link DynamoDBServiceException}
243
243
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
244
244
  *
245
- * @public
245
+ *
246
246
  * @example To delete an item
247
247
  * ```javascript
248
248
  * // This example deletes an item from the Music table.
249
249
  * const input = {
250
- * "Key": {
251
- * "Artist": {
252
- * "S": "No One You Know"
250
+ * Key: {
251
+ * Artist: {
252
+ * S: "No One You Know"
253
253
  * },
254
- * "SongTitle": {
255
- * "S": "Scared of My Shadow"
254
+ * SongTitle: {
255
+ * S: "Scared of My Shadow"
256
256
  * }
257
257
  * },
258
- * "TableName": "Music"
258
+ * TableName: "Music"
259
259
  * };
260
260
  * const command = new DeleteItemCommand(input);
261
261
  * const response = await client.send(command);
262
- * /* response ==
262
+ * /* response is
263
263
  * {
264
- * "ConsumedCapacity": {
265
- * "CapacityUnits": 1,
266
- * "TableName": "Music"
264
+ * ConsumedCapacity: {
265
+ * CapacityUnits: 1,
266
+ * TableName: "Music"
267
267
  * }
268
268
  * }
269
269
  * *\/
270
- * // example id: to-delete-an-item-1475884573758
271
270
  * ```
272
271
  *
272
+ * @public
273
273
  */
274
274
  export declare class DeleteItemCommand extends DeleteItemCommand_base {
275
275
  /** @internal type navigation helper, not in runtime. */
@@ -120,6 +120,7 @@ declare const DeleteResourcePolicyCommand_base: {
120
120
  * @throws {@link DynamoDBServiceException}
121
121
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
122
122
  *
123
+ *
123
124
  * @public
124
125
  */
125
126
  export declare class DeleteResourcePolicyCommand extends DeleteResourcePolicyCommand_base {
@@ -285,33 +285,33 @@ declare const DeleteTableCommand_base: {
285
285
  * @throws {@link DynamoDBServiceException}
286
286
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
287
287
  *
288
- * @public
288
+ *
289
289
  * @example To delete a table
290
290
  * ```javascript
291
291
  * // This example deletes the Music table.
292
292
  * const input = {
293
- * "TableName": "Music"
293
+ * TableName: "Music"
294
294
  * };
295
295
  * const command = new DeleteTableCommand(input);
296
296
  * const response = await client.send(command);
297
- * /* response ==
297
+ * /* response is
298
298
  * {
299
- * "TableDescription": {
300
- * "ItemCount": 0,
301
- * "ProvisionedThroughput": {
302
- * "NumberOfDecreasesToday": 1,
303
- * "ReadCapacityUnits": 5,
304
- * "WriteCapacityUnits": 5
299
+ * TableDescription: {
300
+ * ItemCount: 0,
301
+ * ProvisionedThroughput: {
302
+ * NumberOfDecreasesToday: 1,
303
+ * ReadCapacityUnits: 5,
304
+ * WriteCapacityUnits: 5
305
305
  * },
306
- * "TableName": "Music",
307
- * "TableSizeBytes": 0,
308
- * "TableStatus": "DELETING"
306
+ * TableName: "Music",
307
+ * TableSizeBytes: 0,
308
+ * TableStatus: "DELETING"
309
309
  * }
310
310
  * }
311
311
  * *\/
312
- * // example id: to-delete-a-table-1475884368755
313
312
  * ```
314
313
  *
314
+ * @public
315
315
  */
316
316
  export declare class DeleteTableCommand extends DeleteTableCommand_base {
317
317
  /** @internal type navigation helper, not in runtime. */
@@ -155,6 +155,7 @@ declare const DescribeBackupCommand_base: {
155
155
  * @throws {@link DynamoDBServiceException}
156
156
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
157
157
  *
158
+ *
158
159
  * @public
159
160
  */
160
161
  export declare class DescribeBackupCommand extends DescribeBackupCommand_base {
@@ -82,6 +82,7 @@ declare const DescribeContinuousBackupsCommand_base: {
82
82
  * @throws {@link DynamoDBServiceException}
83
83
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
84
84
  *
85
+ *
85
86
  * @public
86
87
  */
87
88
  export declare class DescribeContinuousBackupsCommand extends DescribeContinuousBackupsCommand_base {
@@ -73,6 +73,7 @@ declare const DescribeContributorInsightsCommand_base: {
73
73
  * @throws {@link DynamoDBServiceException}
74
74
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
75
75
  *
76
+ *
76
77
  * @public
77
78
  */
78
79
  export declare class DescribeContributorInsightsCommand extends DescribeContributorInsightsCommand_base {
@@ -58,6 +58,7 @@ declare const DescribeEndpointsCommand_base: {
58
58
  * @throws {@link DynamoDBServiceException}
59
59
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
60
60
  *
61
+ *
61
62
  * @public
62
63
  */
63
64
  export declare class DescribeEndpointsCommand extends DescribeEndpointsCommand_base {
@@ -102,6 +102,7 @@ declare const DescribeExportCommand_base: {
102
102
  * @throws {@link DynamoDBServiceException}
103
103
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
104
104
  *
105
+ *
105
106
  * @public
106
107
  */
107
108
  export declare class DescribeExportCommand extends DescribeExportCommand_base {
@@ -112,6 +112,7 @@ declare const DescribeGlobalTableCommand_base: {
112
112
  * @throws {@link DynamoDBServiceException}
113
113
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
114
114
  *
115
+ *
115
116
  * @public
116
117
  */
117
118
  export declare class DescribeGlobalTableCommand extends DescribeGlobalTableCommand_base {
@@ -158,6 +158,7 @@ declare const DescribeGlobalTableSettingsCommand_base: {
158
158
  * @throws {@link DynamoDBServiceException}
159
159
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
160
160
  *
161
+ *
161
162
  * @public
162
163
  */
163
164
  export declare class DescribeGlobalTableSettingsCommand extends DescribeGlobalTableSettingsCommand_base {
@@ -147,6 +147,7 @@ declare const DescribeImportCommand_base: {
147
147
  * @throws {@link DynamoDBServiceException}
148
148
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
149
149
  *
150
+ *
150
151
  * @public
151
152
  */
152
153
  export declare class DescribeImportCommand extends DescribeImportCommand_base {
@@ -71,6 +71,7 @@ declare const DescribeKinesisStreamingDestinationCommand_base: {
71
71
  * @throws {@link DynamoDBServiceException}
72
72
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
73
73
  *
74
+ *
74
75
  * @public
75
76
  */
76
77
  export declare class DescribeKinesisStreamingDestinationCommand extends DescribeKinesisStreamingDestinationCommand_base {
@@ -129,24 +129,24 @@ declare const DescribeLimitsCommand_base: {
129
129
  * @throws {@link DynamoDBServiceException}
130
130
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
131
131
  *
132
- * @public
132
+ *
133
133
  * @example To determine capacity limits per table and account, in the current AWS region
134
134
  * ```javascript
135
135
  * // The following example returns the maximum read and write capacity units per table, and for the AWS account, in the current AWS region.
136
- * const input = {};
136
+ * const input = { /* empty *\/ };
137
137
  * const command = new DescribeLimitsCommand(input);
138
138
  * const response = await client.send(command);
139
- * /* response ==
139
+ * /* response is
140
140
  * {
141
- * "AccountMaxReadCapacityUnits": 20000,
142
- * "AccountMaxWriteCapacityUnits": 20000,
143
- * "TableMaxReadCapacityUnits": 10000,
144
- * "TableMaxWriteCapacityUnits": 10000
141
+ * AccountMaxReadCapacityUnits: 20000,
142
+ * AccountMaxWriteCapacityUnits: 20000,
143
+ * TableMaxReadCapacityUnits: 10000,
144
+ * TableMaxWriteCapacityUnits: 10000
145
145
  * }
146
146
  * *\/
147
- * // example id: to-determine-capacity-limits-per-table-and-account-in-the-current-aws-region-1475884162064
148
147
  * ```
149
148
  *
149
+ * @public
150
150
  */
151
151
  export declare class DescribeLimitsCommand extends DescribeLimitsCommand_base {
152
152
  /** @internal type navigation helper, not in runtime. */
@@ -245,54 +245,8 @@ declare const DescribeTableCommand_base: {
245
245
  * @throws {@link DynamoDBServiceException}
246
246
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
247
247
  *
248
- * @public
249
- * @example To describe a table
250
- * ```javascript
251
- * // This example describes the Music table.
252
- * const input = {
253
- * "TableName": "Music"
254
- * };
255
- * const command = new DescribeTableCommand(input);
256
- * const response = await client.send(command);
257
- * /* response ==
258
- * {
259
- * "Table": {
260
- * "AttributeDefinitions": [
261
- * {
262
- * "AttributeName": "Artist",
263
- * "AttributeType": "S"
264
- * },
265
- * {
266
- * "AttributeName": "SongTitle",
267
- * "AttributeType": "S"
268
- * }
269
- * ],
270
- * "CreationDateTime": "1421866952.062",
271
- * "ItemCount": 0,
272
- * "KeySchema": [
273
- * {
274
- * "AttributeName": "Artist",
275
- * "KeyType": "HASH"
276
- * },
277
- * {
278
- * "AttributeName": "SongTitle",
279
- * "KeyType": "RANGE"
280
- * }
281
- * ],
282
- * "ProvisionedThroughput": {
283
- * "NumberOfDecreasesToday": 1,
284
- * "ReadCapacityUnits": 5,
285
- * "WriteCapacityUnits": 5
286
- * },
287
- * "TableName": "Music",
288
- * "TableSizeBytes": 0,
289
- * "TableStatus": "ACTIVE"
290
- * }
291
- * }
292
- * *\/
293
- * // example id: to-describe-a-table-1475884440502
294
- * ```
295
248
  *
249
+ * @public
296
250
  */
297
251
  export declare class DescribeTableCommand extends DescribeTableCommand_base {
298
252
  /** @internal type navigation helper, not in runtime. */
@@ -148,6 +148,7 @@ declare const DescribeTableReplicaAutoScalingCommand_base: {
148
148
  * @throws {@link DynamoDBServiceException}
149
149
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
150
150
  *
151
+ *
151
152
  * @public
152
153
  */
153
154
  export declare class DescribeTableReplicaAutoScalingCommand extends DescribeTableReplicaAutoScalingCommand_base {
@@ -66,6 +66,7 @@ declare const DescribeTimeToLiveCommand_base: {
66
66
  * @throws {@link DynamoDBServiceException}
67
67
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
68
68
  *
69
+ *
69
70
  * @public
70
71
  */
71
72
  export declare class DescribeTimeToLiveCommand extends DescribeTimeToLiveCommand_base {
@@ -104,6 +104,7 @@ declare const DisableKinesisStreamingDestinationCommand_base: {
104
104
  * @throws {@link DynamoDBServiceException}
105
105
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
106
106
  *
107
+ *
107
108
  * @public
108
109
  */
109
110
  export declare class DisableKinesisStreamingDestinationCommand extends DisableKinesisStreamingDestinationCommand_base {
@@ -106,6 +106,7 @@ declare const EnableKinesisStreamingDestinationCommand_base: {
106
106
  * @throws {@link DynamoDBServiceException}
107
107
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
108
108
  *
109
+ *
109
110
  * @public
110
111
  */
111
112
  export declare class EnableKinesisStreamingDestinationCommand extends EnableKinesisStreamingDestinationCommand_base {
@@ -224,6 +224,7 @@ declare const ExecuteStatementCommand_base: {
224
224
  * @throws {@link DynamoDBServiceException}
225
225
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
226
226
  *
227
+ *
227
228
  * @public
228
229
  */
229
230
  export declare class ExecuteStatementCommand extends ExecuteStatementCommand_base {
@@ -515,6 +515,7 @@ declare const ExecuteTransactionCommand_base: {
515
515
  * @throws {@link DynamoDBServiceException}
516
516
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
517
517
  *
518
+ *
518
519
  * @public
519
520
  */
520
521
  export declare class ExecuteTransactionCommand extends ExecuteTransactionCommand_base {
@@ -129,6 +129,7 @@ declare const ExportTableToPointInTimeCommand_base: {
129
129
  * @throws {@link DynamoDBServiceException}
130
130
  * <p>Base exception class for all service exceptions from DynamoDB service.</p>
131
131
  *
132
+ *
132
133
  * @public
133
134
  */
134
135
  export declare class ExportTableToPointInTimeCommand extends ExportTableToPointInTimeCommand_base {