#DynamoDB #AWS #Go言語
https://notesfordevs.com/posts/go-dynamodb-crud-en/
## Query
```go
resp, err := c.client.DeleteItem(context.TODO(), &dynamodb.DeleteItemInput{
TableName: aws.String("users"),
Key: map[string]types.AttributeValue{
"Id": "test",
},
})
```