-
Notifications
You must be signed in to change notification settings - Fork 859
/
Copy pathDynamoDBScanItems.go
89 lines (68 loc) · 2.2 KB
/
DynamoDBScanItems.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
79
80
81
82
83
84
85
86
87
88
89
package main
// snippet-start:[dynamodb.go.scan_items.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"
"github.com/aws/aws-sdk-go/service/dynamodb/expression"
"fmt"
"log"
)
// Create struct to hold info about new item
type Item struct {
Year int
Title string
Plot string
Rating float64
}
// Get the movies with a minimum rating of 8.0 in 2011
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-start:[dynamodb.go.scan_items.vars]
tableName := "Movies"
minRating := 4.0
year := 2013
// Get all movies in that year; we'll pull out those with a higher rating later
filt := expression.Name("Year").Equal(expression.Value(year))
// Get back the title, year, and rating
proj := expression.NamesList(expression.Name("Title"), expression.Name("Year"), expression.Name("Rating"))
expr, err := expression.NewBuilder().WithFilter(filt).WithProjection(proj).Build()
if err != nil {
log.Fatalf("Got error building expression: %s", err)
}
// Build the query input parameters
params := &dynamodb.ScanInput{
ExpressionAttributeNames: expr.Names(),
ExpressionAttributeValues: expr.Values(),
FilterExpression: expr.Filter(),
ProjectionExpression: expr.Projection(),
TableName: aws.String(tableName),
}
// Make the DynamoDB Query API call
result, err := svc.Scan(params)
if err != nil {
log.Fatalf("Query API call failed: %s", err)
}
// snippet-start:[dynamodb.go.scan_items.process]
numItems := 0
for _, i := range result.Items {
item := Item{}
err = dynamodbattribute.UnmarshalMap(i, &item)
if err != nil {
log.Fatalf("Got error unmarshalling: %s", err)
}
if item.Rating > minRating {
numItems++
fmt.Println("Title: ", item.Title)
fmt.Println("Rating:", item.Rating)
fmt.Println()
}
}
fmt.Println("Found", numItems, "movie(s) with a rating above", minRating, "in", year)
}