aws-sdk-go-v2
aws-sdk-go-v2 copied to clipboard
AWS SDK for the Go programming language.
**Is your feature request related to a problem? Please describe.** The presign client for S3 currently supports presigning `GetObject` and `PutObject` URLs: https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/service/s3#PresignClient It would be nice if an additional...
### Describe the issue The link AWS SDK for Go V2 API Reference in https://aws.github.io/aws-sdk-go-v2/docs/making-requests/ redirects back to the same page. It should go to https://aws.github.io/aws-sdk-go-v2/docs/making-requests/ i think. ### Links...
When writing lambda functions that query dynamodb I often simply send this data back to the lamdba caller as a JSON result. I would find it useful to have marshalling...
### Describe the feature This is to report that there is no paginator for the S3 `ListObjectVersions` operation. This is part of V1 of the SDK under [ListObjectVersionsPagesWithContext](https://docs.aws.amazon.com/sdk-for-go/api/service/s3/#S3.ListObjectVersionsPagesWithContext) and it...
### Describe the feature I want to send email via the ses v2 api which has greater limits. ### Use Case I want to send big files without getting errors...
### Documentation - [X] I've gone though the [API reference](https://docs.aws.amazon.com/sdk-for-go/v2/api/) - [X] I've checked [AWS Forums](https://forums.aws.amazon.com) and [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-go) for answers - [X] I've searched for [previous similar issues](https://github.com/aws/aws-sdk-go-v2/issues) and didn't...
### Describe the bug When generating a RDS database token to connect to the database over IAM, e.g on the CLI: `aws rds generate-db-auth-token --hostname -user --port 3306 --region `,...
**Describe the issue with documentation** The documentation does not describe how to use contexts with the API. When an API call is interrupted because the caller cancels the context the...
### Describe the feature While encoding values using attributevalue.Marshal(), the big.Int type is treated as a simple struct but should be marshalled using Marshal ```go x := new(big.Int).SetInt64(int64(23)) fmt.Println(reflect.ValueOf(x).Elem().Kind()) //...
### Describe the feature The java feature is documented [here](https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/metrics.html). The functionality is described in [this](https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/metrics.html#what-information-is-collected) section. The request is to support the same for the go sdk so that...