(c Client)
| 21 | } |
| 22 | |
| 23 | func (sm setMember) keyAV(c Client) map[string]dynamodb.AttributeValue { |
| 24 | av := make(map[string]dynamodb.AttributeValue) |
| 25 | av[c.pk] = StringValue{sm.pk}.ToAV() |
| 26 | av[c.sk] = StringValue{sm.sk}.ToAV() |
| 27 | |
| 28 | return av |
| 29 | } |
| 30 | |
| 31 | // SADD adds the given string members to the set at the given key. |
| 32 | // |