StringValue is a convenience value wrapper for a string, usable as StringValue{"hello"}
| 29 | // StringValue is a convenience value wrapper for a string, usable as |
| 30 | // StringValue{"hello"} |
| 31 | type StringValue struct { |
| 32 | S string |
| 33 | } |
| 34 | |
| 35 | func (sv StringValue) ToAV() dynamodb.AttributeValue { |
| 36 | return dynamodb.AttributeValue{S: aws.String(sv.S)} |
nothing calls this directly
no outgoing calls
no test coverage detected