forked from aws-samples/aws-dynamodb-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetItem.go
69 lines (56 loc) · 1.53 KB
/
getItem.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
package main
import (
"fmt"
"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"
)
func main() {
// Item to Get
type Item struct {
Pk string `dynamodbav:"pk"`
SK string `dynamodbav:"sk"`
Name string `dynamodbav:"name"`
Username string `dynamodbav:"username"`
}
// Create Session
sess := session.Must(session.NewSessionWithOptions(session.Options{
SharedConfigState: session.SharedConfigEnable,
}))
// Create DynamoDB Client
svc := dynamodb.New(sess, aws.NewConfig())
// Get Item
result, err := svc.GetItem(&dynamodb.GetItemInput{
TableName: aws.String("RetailDatabase"),
Key: map[string]*dynamodb.AttributeValue{
"pk": {
S: aws.String("[email protected]"),
},
"sk": {
S: aws.String("metadata"),
},
},
})
// Catch Error
if err != nil {
fmt.Println("GetItem API call failed:")
fmt.Println((err.Error()))
}
item := Item{}
// Unmarhsall
err = dynamodbattribute.UnmarshalMap(result.Item, &item)
if err != nil {
panic(fmt.Sprintf("Failed to unmarshal Record, %v", err))
}
// If Item Returns Empty
if item.Pk == "" {
fmt.Println("Could not find Item")
return
}
// Print Result
fmt.Println("Found item:")
fmt.Println("Name: ", item.Name)
fmt.Println("Alias: ", item.Username)
fmt.Println("Email: ", item.Pk)
}