forked from dugancathal/dynago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest_update_item.go
86 lines (72 loc) · 2.23 KB
/
request_update_item.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
74
75
76
77
78
79
80
81
82
83
84
85
86
package dynago
type updateItemRequest struct {
Key Document
TableName string
ConditionExpression string `json:",omitempty"`
UpdateExpression string `json:",omitempty"`
expressionAttributes
ReturnConsumedCapacity string `json:",omitempty"` // TODO
ReturnItemCollectionMetrics string `json:",omitempty"` // TODO
ReturnValues ReturnValues `json:",omitempty"`
}
type updateItemResponse struct {
Attributes Document
// TODO ConsumedCapacity
// TODO ItemCollectionMetrics
}
func newUpdateItem(client *Client, table string, key Document) *UpdateItem {
return &UpdateItem{
client: client,
req: updateItemRequest{
Key: key,
TableName: table,
},
}
}
type UpdateItem struct {
client *Client
req updateItemRequest
}
// Set a condition expression for conditional update.
func (u UpdateItem) ConditionExpression(expression string, params ...Params) *UpdateItem {
u.req.paramsHelper(params)
u.req.ConditionExpression = expression
return &u
}
// Set an update expression to update specific fields and values.
func (u UpdateItem) UpdateExpression(expression string, params ...Params) *UpdateItem {
u.req.paramsHelper(params)
u.req.UpdateExpression = expression
return &u
}
// Quick-set a single parameter
func (u UpdateItem) Param(key string, value interface{}) *UpdateItem {
u.req.paramHelper(key, value)
return &u
}
// Set multiple parameters at once.
func (u UpdateItem) Params(params ...Params) *UpdateItem {
u.req.paramsHelper(params)
return &u
}
// If set, then we will get return values of either updated or old fields (see ReturnValues const)
func (u UpdateItem) ReturnValues(returnValues ReturnValues) *UpdateItem {
u.req.ReturnValues = returnValues
return &u
}
// Execute this UpdateItem and return the result.
func (u *UpdateItem) Execute() (res *UpdateItemResult, err error) {
return u.client.executor.UpdateItem(u)
}
func (e *awsExecutor) UpdateItem(u *UpdateItem) (res *UpdateItemResult, err error) {
if u.req.ReturnValues != ReturnNone && u.req.ReturnValues != "" {
res = &UpdateItemResult{}
err = e.makeRequestUnmarshal("UpdateItem", &u.req, res)
} else {
_, err = e.makeRequest("UpdateItem", &u.req)
}
return
}
type UpdateItemResult struct {
Attributes Document
}