(attributeName string, av dynamodb.AttributeValue)
| 154 | } |
| 155 | |
| 156 | func (b *expressionBuilder) updateSetAV(attributeName string, av dynamodb.AttributeValue) { |
| 157 | b.SET(fmt.Sprintf("#%v = :%v", attributeName, attributeName), attributeName, av) |
| 158 | } |
| 159 | |
| 160 | func (b *expressionBuilder) addConditionNotExists(attributeName string) { |
| 161 | b.condition(fmt.Sprintf("attribute_not_exists(#%v)", attributeName), attributeName) |