()
| 63 | } |
| 64 | |
| 65 | func (bv BytesValue) ToAV() dynamodb.AttributeValue { |
| 66 | return dynamodb.AttributeValue{B: bv.B} |
| 67 | } |
| 68 | |
| 69 | // ReturnValue holds a value returned by DynamoDB. There are convenience methods used to coerce the held value into common types, |
| 70 | // but you can also retrieve the raw dynamodb.AttributeValue by calling ToAV if you would like to do custom decoding. |