aws-sdk-rust
aws-sdk-rust copied to clipboard
AWS SDK for the Rust Programming Language
### Describe the bug cargo audit shows: ```Crate: time Version: 0.1.44 Title: Potential segfault in the time crate Date: 2020-11-18 ID: RUSTSEC-2020-0071 URL: https://rustsec.org/advisories/RUSTSEC-2020-0071 Solution: Upgrade to >=0.2.23 ``` when...
### Describe the feature Support for UDP transport of X-Ray traces is needed to support the X-Ray daemon. ### Use Case AWS Lambda provides a service-managed X-Ray daemon for batching...
### Describe the feature Other official AWS SDK libraries support specifying `AWS_METADATA_SERVICE_NUM_ATTEMPTS` and `AWS_METADATA_SERVICE_TIMEOUT` environment variables to automatically retry IMDS requests. This feature is currently missing in the `aws-sdk-rust` making...
### Describe the feature I would be great if an user could provide an IAM policy document and/or a list of policy ARNs to the `AssumeRoleProvider` builder, this allow users...
### Describe the bug [ScanRange is the zero-start range](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ScanRange.html#AmazonS3-Type-ScanRange-Start), but Rust SDK doesn't accept zero as `Start` value. https://github.com/awslabs/aws-sdk-rust/blob/b06cd25e2ade91951d4ce52ced908c49ac280401/sdk/s3/src/xml_ser.rs#L1114-L1121 ### Expected Behavior When the range is [0, 54], the `ScanRange`...
### Describe the feature From a couple chats, something like: > Is there a supported way send different credentials per requests with the S3Client? Right now, i'm creating a new...
### Describe the bug Each instance of `aws_sdk_*::Client` seems to cache potentially hundreds of open sockets that stay around for up to 20 seconds after use. This becomes a major...
The default credentials chain has caching, and `AssumeRoleCredentialsProvider` has caching when set explicitly on `SdkConfig`. The rest of the credentials providers don't cache when set up explicitly though. Ideally, credentials...
### Describe the bug I'm working on kubernetes components that interact with AWS services through ec2 instances that have assumed IAM roles. I am unable to get aws-sdk-rust calls to...
### Describe the bug The generated code currently assumes that an unchanged next token returned from AWS is a bug and returns an error ([generator code here](https://github.com/awslabs/smithy-rs/blob/main/codegen-client/src/main/kotlin/software/amazon/smithy/rust/codegen/client/smithy/generators/PaginatorGenerator.kt)). However, at least...