https://github.com/grokify/awsgo
Various helpers to simplify using AWS.
https://github.com/grokify/awsgo
Last synced: about 1 year ago
JSON representation
Various helpers to simplify using AWS.
- Host: GitHub
- URL: https://github.com/grokify/awsgo
- Owner: grokify
- License: mit
- Created: 2023-03-31T08:43:15.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-07T12:16:37.000Z (about 2 years ago)
- Last Synced: 2024-04-07T13:28:31.066Z (about 2 years ago)
- Language: Go
- Homepage:
- Size: 257 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS Go (Helpers)
[![Build Status][build-status-svg]][build-status-url]
[![Lint Status][lint-status-svg]][lint-status-url]
[![Go Report Card][goreport-svg]][goreport-url]
[![Docs][docs-godoc-svg]][docs-godoc-url]
[![License][license-svg]][license-url]
AWSgo provices helper libraries for the AWS Go SDK:
* Dev Guide: https://aws.amazon.com/sdk-for-go/
* GitHub: https://github.com/aws/aws-sdk-go
## Installation
```
$ go get github.com/grokify/awsgo/...
```
## Configuration
AWS Basic Auth can be used using [`goauth`](https://github.com/grokify/goauth) with the following configuration:
```
{
"credentials": {
"AWS": {
"service": "aws",
"type": "basic",
"basic": {
"username": "my_username",
"password": "my_password"
}
}
}
}
``````
[build-status-svg]: https://github.com/grokify/awsgo/actions/workflows/test.yaml/badge.svg?branch=main
[build-status-url]: https://github.com/grokify/awsgo/actions/workflows/test.yaml
[lint-status-svg]: https://github.com/grokify/awsgo/actions/workflows/lint.yaml/badge.svg?branch=main
[lint-status-url]: https://github.com/grokify/awsgo/actions/workflows/lint.yaml
[goreport-svg]: https://goreportcard.com/badge/github.com/grokify/awsgo
[goreport-url]: https://goreportcard.com/report/github.com/grokify/awsgo
[docs-godoc-svg]: https://pkg.go.dev/badge/github.com/grokify/awsgo
[docs-godoc-url]: https://pkg.go.dev/github.com/grokify/awsgo
[loc-svg]: https://tokei.rs/b1/github/grokify/awsgo
[repo-url]: https://github.com/grokify/awsgo
[license-svg]: https://img.shields.io/badge/license-MIT-blue.svg
[license-url]: https://github.com/grokify/awsgo/blob/master/LICENSE