Skip to content

Commit 05fc44b

Browse files
author
awstools
committed
docs(client-dynamodb): Documentation updates for DynamoDB API
1 parent 4122770 commit 05fc44b

File tree

4 files changed

+152
-102
lines changed

4 files changed

+152
-102
lines changed

clients/client-dynamodb/src/DynamoDB.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ export class DynamoDB extends DynamoDBClient {
314314
* <p>By default, <code>BatchGetItem</code> performs eventually consistent reads on every
315315
* table in the request. If you want strongly consistent reads instead, you can set
316316
* <code>ConsistentRead</code> to <code>true</code> for any or all tables.</p>
317-
* <p>In order to minimize response latency, <code>BatchGetItem</code> retrieves items in
317+
* <p>In order to minimize response latency, <code>BatchGetItem</code> may retrieve items in
318318
* parallel.</p>
319319
* <p>When designing your application, keep in mind that DynamoDB does not return items in
320320
* any particular order. To help parse the response by item, include the primary key values
@@ -1940,7 +1940,7 @@ export class DynamoDB extends DynamoDBClient {
19401940

19411941
/**
19421942
* @public
1943-
* <p>Creates a new table from an existing backup. Any number of users can execute up to 4
1943+
* <p>Creates a new table from an existing backup. Any number of users can execute up to 50
19441944
* concurrent restores (any type of restore) in a given account. </p>
19451945
* <p>You can call <code>RestoreTableFromBackup</code> at a maximum rate of 10 times per
19461946
* second.</p>

clients/client-dynamodb/src/commands/BatchGetItemCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export interface BatchGetItemCommandOutput extends BatchGetItemOutput, __Metadat
7070
* <p>By default, <code>BatchGetItem</code> performs eventually consistent reads on every
7171
* table in the request. If you want strongly consistent reads instead, you can set
7272
* <code>ConsistentRead</code> to <code>true</code> for any or all tables.</p>
73-
* <p>In order to minimize response latency, <code>BatchGetItem</code> retrieves items in
73+
* <p>In order to minimize response latency, <code>BatchGetItem</code> may retrieve items in
7474
* parallel.</p>
7575
* <p>When designing your application, keep in mind that DynamoDB does not return items in
7676
* any particular order. To help parse the response by item, include the primary key values

clients/client-dynamodb/src/commands/RestoreTableFromBackupCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export interface RestoreTableFromBackupCommandOutput extends RestoreTableFromBac
3232

3333
/**
3434
* @public
35-
* <p>Creates a new table from an existing backup. Any number of users can execute up to 4
35+
* <p>Creates a new table from an existing backup. Any number of users can execute up to 50
3636
* concurrent restores (any type of restore) in a given account. </p>
3737
* <p>You can call <code>RestoreTableFromBackup</code> at a maximum rate of 10 times per
3838
* second.</p>

0 commit comments

Comments
 (0)