update aws-sdk DynamoDB.DocumentClient UpdateParam

Added `UpdateExpression` attribute. `AttributeUpdates` is deprecated.
This commit is contained in:
Hady Tolba
2016-10-22 12:51:31 -04:00
parent 3cc599268d
commit 6309f95963

View File

@@ -527,7 +527,8 @@ declare module "aws-sdk" {
interface UpdateParam extends _DDBDC_Writer {
Key: _DDBDC_Keys;
AttributeUpdates: {
UpdateExpression?: string;
AttributeUpdates?: {
[someKey: string]: {
Action: "PUT" | "ADD" | "DELETE";
Value: any