You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`aws-sdk-go-v2` is the **Developer Preview** (aka **beta**) for the v2 AWS SDK for the Go programming language. This Developer Preview is provided to receive feedback from the language community on SDK changes prior to the final release. As such users should expect the SDK to release minor version releases that break backwards compatability. The release notes for the breaking change will include information about the breaking change, and how you can migrate to the latest version.
@@ -10,16 +10,16 @@ Check out the [Issues] and [Projects] for design and updates being made to the S
10
10
We'll be expanding out the [Issues] and [Projects] sections with additional changes to the SDK based on your feedback, and SDK's core's improvements. Check the the SDK's [CHANGELOG] for information about the latest updates to the SDK.
11
11
12
12
Jump To:
13
-
*[Project Status](_#Project-Status_)
14
-
*[Getting Started](_#Getting-Started_)
15
-
*[Getting Help](_#Getting-Help_)
16
-
*[Contributing](_#Feedback-and-contributing_)
17
-
*[More Resources](_#Resources_)
13
+
*[Project Status](#project-status)
14
+
*[Getting Started](#getting-started)
15
+
*[Getting Help](#getting-help)
16
+
*[Contributing](#feedback-and-contributing)
17
+
*[More Resources](#resources)
18
18
19
19
## Project Status
20
-
The service API clientshave been significantly rewritten as part of the `v0.25.0` release. Clients are now independently versioned Go modules that are bundled with their respective API types and endpoints. Client API serialization and deserialization are now fully code-generated from the service model, providing performance improvements over previous releases.
20
+
The service API clients, and core features of the SDK have been significantly rewritten as part of the `v0.25.0` release. API clients are now independently versioned Go modules that are bundled with their respective API types and endpoints. Client API serialization and deserialization are now fully code-generated from the service model, providing performance improvements over previous releases.
21
21
22
-
A number of clients may be immediately available or usable without workarounds. Additional support for these clients will be added over the next series of releases as support is extended to support their feature set.
22
+
A number of API clients may be immediately available or usable without workarounds. Additional support for these clients will be added over the next series of releases as support is extended to support their feature set.
23
23
24
24
We are actively seeking community feedback for API clients, and other upcoming design changes to the SDK. Please review our [design] page on issues
25
25
that are currently pending community feedback.
@@ -29,7 +29,7 @@ Users should expect significant changes that could affect the following (non-exh
29
29
* Credential Providers
30
30
* Paginators
31
31
* Waiters
32
-
* Minimum Supported Go Release following the [Language Release Policy](https://golang.org/doc/devel/release.html#policy)
32
+
* Minimum Supported Go version following the [AWS SDKs and Tools Maintenance Policy](https://docs.aws.amazon.com/credref/latest/refdocs/maint-policy.html)
33
33
34
34
## Getting started
35
35
To get started working with the SDK setup your project for Go modules, and retrieve the SDK dependencies with `go get`.
@@ -44,7 +44,7 @@ $ go mod init helloaws
44
44
###### Add SDK Dependencies
45
45
```sh
46
46
$ go get github.com/aws/aws-sdk-go-v2/aws
47
-
$ go get github.com/aws/aws-sdk-go-v2/aws/config
47
+
$ go get github.com/aws/aws-sdk-go-v2/config
48
48
$ go get github.com/aws/aws-sdk-go-v2/service/dynamodb
49
49
```
50
50
@@ -121,7 +121,7 @@ also include reproduction case when appropriate.
121
121
122
122
The GitHub issues are intended for bug reports and feature requests. For help
123
123
and questions with using AWS SDK for Go please make use of the resources listed
124
-
in the [Getting Help](https://github.com/aws/aws-sdk-go-v2#getting-help) section.
124
+
in the [Getting Help](#getting-help) section.
125
125
Keeping the list of open issues lean will help us respond in a timely manner.
0 commit comments