The initial wait when backing off on request rate, in milliseconds.
The maximum wait when backing off on request rate, in milliseconds.
The maximum number of items that can be got in a single request.
The maximum number of items that can be put in a single request.
Batch get all items in the request. Can handle more than 100 keys at once by making multiple requests. Reattempts UnprocessedKeys.
The stored objects.
Batch write all items in the request. Can handle more than 25 objects at once by making multiple requests. Reattempts UnprocessedItems.
Configure module settings for: backoffInitial, backoffMax, backoffFactor. See the module member for individual documentation.
an object with optional values for the settings
Generated using TypeDoc
The wait growth factor when repeatedly backing off. When backing off from an operation the first wait
backoff = backoffInitial
and for each consecutive waitbackoff = Math.min(backoff * backoffFactor, backoffMax)
.