()
| 53 | } |
| 54 | |
| 55 | func (iv IntValue) ToAV() dynamodb.AttributeValue { |
| 56 | return dynamodb.AttributeValue{N: aws.String(strconv.FormatInt(iv.I, 10))} |
| 57 | } |
| 58 | |
| 59 | // BytesValue is a convenience wrapper for a byte slice, usable as |
| 60 | // BytesValue{[]byte{1,2,3}} |