()
| 82 | } |
| 83 | |
| 84 | func (b *expressionBuilder) conditionExpression() *string { |
| 85 | if len(b.conditions) == 0 { |
| 86 | return nil |
| 87 | } |
| 88 | |
| 89 | return aws.String(strings.Join(b.conditions, " AND ")) |
| 90 | } |
| 91 | |
| 92 | func (b *expressionBuilder) expressionAttributeNames() map[string]string { |
| 93 | if len(b.keys) == 0 { |
no test coverage detected