Skip to content
This repository was archived by the owner on Dec 1, 2022. It is now read-only.

Commit e29676f

Browse files
committed
Update README.md
1 parent ef7d8a3 commit e29676f

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

README.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,19 +84,14 @@ defined changes to a config file this provides a callback function called
8484
cloudWatch: { apiVersion: '2010-08-01', region: 'us-east-1' }
8585
},
8686
getTableUpdate: (description, consumedCapacityDescription) => {
87-
// The 'description' parameter is JSON in the following format
88-
<http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_DescribeTable.html#API_DescribeTable_ResponseSyntax>
89-
90-
// The 'consumedCapacityDescription' follows the same format but details
91-
// the consumed capacity found via the cloudwatch api
92-
93-
// The return type is either null for no update or JSON in the
94-
// following format
95-
<http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html#API_UpdateTable_ResponseSyntax>
87+
// Logic goes here....
9688
}
9789
};
9890
```
9991

92+
[DescribeTable.ResponseSyntax](http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_DescribeTable.html#API_DescribeTable_ResponseSyntax)
93+
[UpdateTable.ResponseSyntax](http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html#API_UpdateTable_ResponseSyntax)
94+
10095
The function is given the information such as the table name, current table
10196
provisioned throughput and the consumed throughput for the past minute.
10297
Table updates will only be sent to AWS if the values are different for the

0 commit comments

Comments
 (0)