Skip to content

Instantly share code, notes, and snippets.

@justcallmelarry
justcallmelarry / main.go
Last active January 3, 2023 14:03 — forked from andream16/main.go
Build ExpressionAttributeValues and UpdateExpression from map[string]interface{} - AWS Go SDK, DynamoDB
package main
import (
"fmt"
"strings"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/fatih/structs"
)