aws-sdk-go-v2

(β˜… 3,632)

AWS SDK for the Go programming language.

Showing a partial file list β€” download the zip above to see everything.

  • .gitignore
  • .golangci.toml
  • .travis.yml
  • buildspec.yml
  • changelog-template.json
  • CHANGELOG.md
  • ci-find-smithy-go.sh
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • DESIGN.md
  • doc.go
  • go.mod
  • go.sum
  • LICENSE.txt
  • MAINTAINERS.md
  • Makefile
  • NOTICE.txt
  • README.md
  • SMITHY_GO_CODEGEN_VERSION

# Installation Guide

1. Get the code
git clone https://github.com/aws/aws-sdk-go-v2

Downloads the entire project code from GitHub to your computer.

cd aws-sdk-go-v2

Moves into the project folder you just downloaded.

2. Gradle (Java/Kotlin)

Medium Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • JDK (Java) Required to build and run Java/Kotlin projects.
  • Gradle If the repo includes gradlew (Gradle Wrapper), you don't need to install Gradle separately.
cd codegen

This project's files live in a subfolder, so move into it first.

./gradlew build

Builds the project using Gradle.

βœ… A BUILD SUCCESSFUL message means it worked. The output is created under build/.

3. Go

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Go The Go compiler and toolchain.
$ go run .

Runs the Go program directly without a separate build step.

βœ… If the build finishes without errors, it worked. If you used go run ., check the terminal output.

Pulled directly from this repo's README.

4. Make

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make

Compiles the code based on the generated build configuration to produce an executable.

βœ… If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation