Documentation is very sparse? #1721
-
Hello! I come from Python an I'm used to the boto3 docs Should they be cross referencing boto3 or aws cli docs for how things work? Also I noticed that the getting started page has a bug perhaps?
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
The v2 SDK is intended to work with Go modules. This means you'll need to initialize a module for your application, and add the dependencies your application will use. The following is an example how you can do that with the example in the getting started page. go mod init <namespace for your app>
go get github.com/aws/aws-sdk-go-v2
go get github.com/aws/aws-sdk-go-v2/config
go get github.com/aws/aws-sdk-go-v2/service/s3 |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
The v2 SDK is intended to work with Go modules. This means you'll need to initialize a module for your application, and add the dependencies your application will use.
The following is an example how you can do that with the example in the getting started page.