aws-sdk-go-v2
aws-sdk-go-v2 copied to clipboard
AWS SDK for the Go programming language.
### 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 I validated a CMK implementation using ` _, err = downloader.Download(context.TODO(), fil, input)` and the following config: ``` input := &s3.GetObjectInput{ Bucket: aws.String(bucket), Key: aws.String(key), SSECustomerAlgorithm:...
### Describe the bug The `attributevalue.UnmarshalMapWithOptions` ignores custom tag when a `json:"-"` is specified in the struct. ### Expected Behavior A custom tag should have higher precedence than the json...
### 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...
https://aws.github.io/aws-sdk-go-v2/docs/sdk-utilities/ec2-imds/#retrieving-an-instances-region The function returns a value of type `*GetRegionOutput`. https://aws.github.io/aws-sdk-go-v2/docs/sdk-utilities/ec2-imds/ includes the following example snippet: ```go region, err := client.GetRegion(context.TODO(), &imds.GetRegionInput{}) if err != nil { log.Printf("Unable to retrieve the...
For changes to files under the `/model/` folder, and manual edits to autogenerated code (e.g. `/service/s3/api.go`) please create an Issue instead of a PR for those type of changes. If...
Confirm by changing [ ] to [x] below: - [X] I've gone though the [API reference](https://github.com/aws/aws-sdk-go-v2/issues) - [X] I've checked [AWS Forums](https://forums.aws.amazon.com) and [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-go) for answers **Describe the question** I've...
### Describe the feature Retryer is a great library. One thing which prevents us from using it right now is the lack of reporting/logging something custom/specific to the business log...
A little bit more nuanced, but I think this highlights that it is worth creating a developer guide documentation page to help clarify the behaviors when using the S3 client...
What this does: - Adds a modified `manager.downloader` type that uses an ordered ring of buffers (similar to `manager.uploader`) to parallelize downloads. - It can write to a plain `io.Writer`,...