#Go言語 #DynamoDB #AWS
https://notesfordevs.com/posts/go-dynamodb-crud-en/
## Query
```go
resp, err := c.client.Query(context.TODO(), &dynamodb.QueryInput{
TableName: aws.String("users"),
KeyConditionExpression: aws.String("id = :id"),
ExpressionAttributeValues: map[string]types.AttributeValue{
":id": "test",
},
})
```
## MOC
- [[AWS SDK for Go V2でDynamoDBのデータを並び替えて取得(sort, order)]]