(c Client)
| 202 | } |
| 203 | |
| 204 | func (ln listNode) deleteAction(c Client) dynamodb.TransactWriteItem { |
| 205 | return dynamodb.TransactWriteItem{ |
| 206 | Delete: &dynamodb.Delete{ |
| 207 | Key: ln.keyAV(c), |
| 208 | TableName: aws.String(c.table), |
| 209 | }, |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | func lParseNode(avm map[string]dynamodb.AttributeValue, c Client) (ln listNode) { |
| 214 | ln.key = aws.StringValue(avm[c.pk].S) |
no test coverage detected