forked from aws/aws-sdk-go-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.go
66 lines (49 loc) · 1.84 KB
/
doc.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
/*
Package sdk is the official AWS SDK v2 for the Go programming language.
aws-sdk-go-v2 is the Developer Preview for the v2 of the AWS SDK for the Go
programming language. Look for additional documentation and examples to be
added.
Getting started
The best way to get started working with the SDK is to use `go get` to add the
SDK to your Go Workspace manually.
go get github.com/aws/aws-sdk-go-v2
You could also use [Dep] to add the SDK to your application's dependencies.
Using [Dep] will simplify your update story and help your application keep
pinned to specific version of the SDK
dep ensure --add github.com/aws/aws-sdk-go-v2
Hello AWS
This example shows how you can use the v2 SDK to make an API request using the
SDK's Amazon DynamoDB client.
package main
import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/aws/endpoints"
"github.com/aws/aws-sdk-go-v2/aws/external"
"github.com/aws/aws-sdk-go-v2/service/dynamodb"
)
func main() {
// Using the SDK's default configuration, loading additional config
// and credentials values from the environment variables, shared
// credentials, and shared configuration files
cfg, err := external.LoadDefaultAWSConfig()
if err != nil {
panic("unable to load SDK config, " + err.Error())
}
// Set the AWS Region that the service clients should use
cfg.Region = endpoints.UsWest2RegionID
// Using the Config value, create the DynamoDB client
svc := dynamodb.New(cfg)
// Build the request with its input parameters
req := svc.DescribeTableRequest(&dynamodb.DescribeTableInput{
TableName: aws.String("myTable"),
})
// Send the request, and get the response or error back
resp, err := req.Send(context.Background())
if err != nil {
panic("failed to describe table, "+err.Error())
}
fmt.Println("Response", resp)
}
*/
package sdk