-
Notifications
You must be signed in to change notification settings - Fork 864
/
Copy pathDynamoDBLoadItems.go
78 lines (61 loc) · 1.63 KB
/
DynamoDBLoadItems.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package main
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"strconv"
)
// Create struct to hold info about new item
type Item struct {
Year int
Title string
Plot string
Rating float64
}
// Get table items from JSON file
func getItems() []Item {
raw, err := ioutil.ReadFile("./movie_data.json")
if err != nil {
log.Fatalf("Got error reading file: %s", err)
}
var items []Item
json.Unmarshal(raw, &items)
return items
}
// snippet-end:[dynamodb.go.load_items.func]
func main() {
// and region from the shared configuration file ~/.aws/config.
sess := session.Must(session.NewSessionWithOptions(session.Options{
SharedConfigState: session.SharedConfigEnable,
}))
// Create DynamoDB client
svc := dynamodb.New(sess)
// Get table items from .movie_data.json
items := getItems()
// Add each item to Movies table:
tableName := "Movies"
for _, item := range items {
av, err := dynamodbattribute.MarshalMap(item)
if err != nil {
log.Fatalf("Got error marshalling map: %s", err)
}
// Create item in table Movies
input := &dynamodb.PutItemInput{
Item: av,
TableName: aws.String(tableName),
}
_, err = svc.PutItem(input)
if err != nil {
log.Fatalf("Got error calling PutItem: %s", err)
}
year := strconv.Itoa(item.Year)
fmt.Println("Successfully added '" + item.Title + "' (" + year + ") to table " + tableName)
// snippet-end:[dynamodb.go.load_items.call]
}
}
// snippet-end:[dynamodb.go.load_items]