Created
January 13, 2020 10:47
-
-
Save billydh/9466ad9d44b5046eb72e9c5f311d609c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| aws dynamodb update-item --endpoint-url http://localhost:8042 --table-name demo-customer-info \ | |
| --key '{"customerId": {"S": "1111"}}' \ | |
| --update-expression 'SET #email = :newEmail' \ | |
| --expression-attribute-names '{"#email": "email"}' \ | |
| --expression-attribute-values '{":newEmail": {"S": "[email protected]"}}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment