DynamoDBResourceClient provides a simplified interface for performing operations on your DynamoDB tables.
Usage
Inputs
Theinvoke method accepts the following arguments:
The DynamoDB command to execute. Supported commands include
"GetItem",
"PutItem", "UpdateItem", "DeleteItem", "Query", "Scan", etc.The parameters for the command, matching the AWS SDK input shape (e.g.,
TableName, Key, Item).A unique identifier for this operation.
Optional timeout in milliseconds.
Outputs
On success (ok: true), the result object contains:
Discriminator for the response type.
The command that was executed.
The result data from DynamoDB (e.g., the
Item from a GetItem call).