1
0
Fork 0
mirror of https://github.com/Luzifer/share.git synced 2024-10-18 21:34:23 +00:00
share/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/scanItems
Knut Ahlers 8f80d158ca
Move CLI util
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2017-12-02 19:12:46 +01:00
..
README.md Move CLI util 2017-12-02 19:12:46 +01:00
scanItems.go Move CLI util 2017-12-02 19:12:46 +01:00

Example

scanItems is an example how to use Amazon DynamoDB's Scan API operation with the SDK's dynamodbattributes.UnmarshalListOfMaps to unmarshal the Scan response's Items []map[string]*dynamodb.AttributeValue field. This unmarshaler can be used with all []map[string]*dynamodb.AttributeValue type fields.

Go Type

The Item time will be used by the example to unmarshal the DynamoDB table's items to.

type Item struct {
	Key  int
	Desc string
	Data map[string]interface{}
}

Use Go tags to define what the name is of the attribute in your DynamoDB table. See AWS SDK for Go API Reference: Marshal for more information.

In DynamoDB the structure of the item to be returned will be:

{
  "Data": {
    "Value 1": "abc",
    "Value 2": 1234567890
  },
  "Desc": "First ddb item",
  "Key": 1
}

Usage

go run -tags example scanItems.go -table "<table_name>" -region "<optional_region>"

Output

0: Key: 123, Desc: An item in the DynamoDB table
	Num Data Values: 0
1: Key: 2, Desc: Second ddb item
	Num Data Values: 2
	- "A Field": 123
	- "Another Field": abc
2: Key: 1, Desc: First ddb item
	Num Data Values: 2
	- "Value 1": abc
	- "Value 2": 1234567890