-
Notifications
You must be signed in to change notification settings - Fork 864
/
Copy pathDynamoDBReadItem.go
70 lines (57 loc) · 1.57 KB
/
DynamoDBReadItem.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
package main
// snippet-start:[dynamodb.go.read_item.imports]
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"
"fmt"
"log"
)
// Create struct to hold info about new item
type Item struct {
Year int
Title string
Plot string
Rating float64
}
// snippet-end:[dynamodb.go.read_item.struct]
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)
// snippet-end:[dynamodb.go.read_item.session]
// snippet-start:[dynamodb.go.read_item.call]
tableName := "Movies"
movieName := "The Big New Movie"
movieYear := "2016"
result, err := svc.GetItem(&dynamodb.GetItemInput{
TableName: aws.String(tableName),
Key: map[string]*dynamodb.AttributeValue{
"Year": {
N: aws.String(movieYear),
},
"Title": {
S: aws.String(movieName),
},
},
})
if err != nil {
log.Fatalf("Got error calling GetItem: %s", err)
}
item := Item{}
err = dynamodbattribute.UnmarshalMap(result.Item, &item)
if err != nil {
panic(fmt.Sprintf("Failed to unmarshal Record, %v", err))
}
fmt.Println("Found item:")
fmt.Println("Year: ", item.Year)
fmt.Println("Title: ", item.Title)
fmt.Println("Plot: ", item.Plot)
fmt.Println("Rating:", item.Rating)
// snippet-end:[dynamodb.go.read_item.unmarshall]
}
// snippet-end:[dynamodb.go.read_item]