You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The paginators are already FP-friendly as follows:
import{DynamoDBClient,paginateListTables}from"@aws-sdk/client-dynamodb";constclient=newDynamoDBClient({});consttableNames=[];forawait(constpageofpaginateListTables({ client },{})){// page contains a single paginated output.tableNames.push(...page.TableNames);}
The waiters (implementation in-progress) are also going to be similar.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Creating this discussion from GitHub Issue #1557
Thanks to @thuringia for the suggestion.
In JS SDK v3, the command objects are passed to
.send()
operations as follows:And FP-friendly version would help to curry SDK-functions for example:
The paginators are already FP-friendly as follows:
The waiters (implementation in-progress) are also going to be similar.
Beta Was this translation helpful? Give feedback.
All reactions