ReturnValue holds a value returned by DynamoDB. There are convenience methods used to coerce the held value into common types, but you can also retrieve the raw dynamodb.AttributeValue by calling ToAV if you would like to do custom decoding.
| 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. |
| 71 | type ReturnValue struct { |
| 72 | av dynamodb.AttributeValue |
| 73 | } |
| 74 | |
| 75 | // ToAV returns the underlying dynamodb.AttributeValue, allow custom deserialization. |
| 76 | func (rv ReturnValue) ToAV() dynamodb.AttributeValue { |
nothing calls this directly
no outgoing calls
no test coverage detected