forked from aws-samples/aws-dynamodb-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
updateItem.go
73 lines (58 loc) · 1.6 KB
/
updateItem.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package main
import (
"fmt"
"log"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute"
)
// ItemInfo holds info to update
type Address struct {
Road string `json:":r"`
}
// Item identifies the item in the table
type Item struct {
Pk string `json:"pk"`
Sk string `json:"sk"`
}
func main() {
// Create Session
sess, err := session.NewSession(&aws.Config{
Region: aws.String("eu-west-1")},
)
// Create DynamoDB client
svc := dynamodb.New(sess)
// Attribute to update
address := Address{
Road: "8123 Updated Rd",
}
// Keys for item
item := Item{
Pk: "[email protected]",
Sk: "metadata",
}
// Marshal
expr, err := dynamodbattribute.MarshalMap(address)
if err != nil {
log.Fatalf("Got error marshalling item: %s", err)
}
key, err := dynamodbattribute.MarshalMap(item)
if err != nil {
log.Fatalf("Got error marshalling item: %s", err)
}
// Update item params
input := &dynamodb.UpdateItemInput{
TableName: aws.String("RetailDatabase"),
Key: key,
UpdateExpression: aws.String("set address.road = :r"),
ExpressionAttributeValues: expr,
ReturnValues: aws.String("UPDATED_NEW"),
}
// Update item
_, err = svc.UpdateItem(input)
if err != nil {
log.Fatalf("Got error calling UpdateItem: %s", err)
}
fmt.Println("Successfully updated item")
}