IntValue is a convenience value wrapper for an int64, usable as IntValue{42}
| 49 | // IntValue is a convenience value wrapper for an int64, usable as |
| 50 | // IntValue{42} |
| 51 | type IntValue struct { |
| 52 | I int64 |
| 53 | } |
| 54 | |
| 55 | func (iv IntValue) ToAV() dynamodb.AttributeValue { |
| 56 | return dynamodb.AttributeValue{N: aws.String(strconv.FormatInt(iv.I, 10))} |
nothing calls this directly
no outgoing calls
no test coverage detected