aws-sdk-go-v2
aws-sdk-go-v2 copied to clipboard
AWS SDK for the Go programming language.
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...
### Describe the bug This example from the config: ```go cfg, err := config.LoadDefaultConfig(context.TODO(), config.WithCredentialsProvider(aws.AnonymousCredentials{}), ) if err != nil { log.Fatalf("failed to load config, %v", err) } client :=...
Signed-off-by: Abirdcfly 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...
### Describe the issue The link at the end of the page https://aws.github.io/aws-sdk-go-v2/docs/code-examples/s3/generatepresignedurl to [complete example in GitHub](https://github.com/awsdocs/aws-doc-sdk-examples/blob/main/gov2/s3/GeneratePresignedURL/GeneratePresignedURLv2.go) is incorrect. ### Links https://aws.github.io/aws-sdk-go-v2/docs/code-examples/s3/generatepresignedurl/ ### AWS Go SDK V2 Module Versions...
Adds a `String` method to `UnixTime`, so that when structs with this field get logged it prints a human readable time. v2 port of https://github.com/aws/aws-sdk-go/pull/4504
### Describe the bug The library throws an error in API GetBucketLifecycleConfiguration when the S3 storage returns a empty tag. ### Expected Behavior The library should not throw error when...
Please fill out the sections below to help us address your issue. Version of AWS SDK for Go? LATEST Version of Go (go version)? 1.9.2 Support for Cognito just the...
### Describe the feature Several KMS operations support an [optional `Recipient` parameter](https://docs.aws.amazon.com/kms/latest/developerguide/services-nitro-enclaves.html) intended for use by applications running in [AWS Nitro Enclaves](https://aws.amazon.com/ec2/nitro/nitro-enclaves/). Iff this flag is passed, a successful response...
### Describe the feature It'd be great to have support for pre-signing an STS AssumeRole request via the SDK. This was previously possible in SDKv1 by using the standard [`Presign`](https://docs.aws.amazon.com/sdk-for-go/api/aws/request/#Request.Presign)...
### Describe the bug I'm trying to debug a problem where my application is crashing on leaked GoRoutines. While trying to root cause the problem I've found some issues that...