AWSgo provides helper libraries for the AWS Go SDK:
- Dev Guide: https://aws.amazon.com/sdk-for-go/
- GitHub: https://github.com/aws/aws-sdk-go
$ go get github.com/grokify/awsgo/...
AWS Basic Auth can be used using goauth
with the following configuration:
{
"credentials": {
"AWS": {
"service": "aws",
"type": "basic",
"basic": {
"username": "my_username",
"password": "my_password"
}
}
}
}