aws-sdk-rust
aws-sdk-rust copied to clipboard
AWS SDK for the Rust Programming Language
### Describe the feature aws-sdk-rust's codegen produces FluentBuilders which provide future-like builders which must be `send()` off in order to be awaited. Arguably the `send` itself is boilerplate since the...
### Describe the feature In python with Boto3, I can do the following: ```python from boto3.s3.transfer import TransferConfig config = TransferConfig( multipart_threshold=4 * 1024 * 1024 * 1024, # 4GB...
### Describe the feature add a STS AssumeRoleWithWebIdentity example ### Use Case Returns a set of temporary security credentials for users who have been authenticated in a mobile or web...
### Describe the feature Generate a single source of documentaiton for all crates in the workspace. It is easier to search through documentation when it is all indexed by the...
### Describe the feature An easy way to convert from `*Input`s to `*FluentBuilder`s or a way to use an `*Input` as a request as-is. (I suspect the former is easier...
### Describe the feature A type representing an Amazon Resource Name (ARN), with the ability to construct an ARN from constituent parts and encode it as a string, as well...
When we yanked release-2023-12-12, the canary still tried to run against that version and failed with: ``` 2023-12-14T00:13:00.444756Z INFO Emitting metrics... Error: Failed to cargo build: Status: 101 Stdout: Stderr:...
### Describe the bug I had a 19 hour process running uploading to S3 using the SDK with static non-expiring credentials, and over the course of that time, it logged...
### Describe the bug Hi all! I was attempting to use `aws_config::default_provider::use_dual_stack::use_dual_stack_provider()` to lookup whether dual stack was enabled by the default provider chain but found that it was `pub(crate)`....
### Describe the feature I would like to expose the [`CustomizableSend`](https://docs.rs/aws-sdk-dynamodb/latest/src/aws_sdk_dynamodb/client/customize.rs.html#8-13) trait that is used in the bounds of the [`CustomizableOperation::send` call](https://docs.rs/aws-sdk-dynamodb/latest/src/aws_sdk_dynamodb/client/customize.rs.html#106-110) as public. ### Use Case The reason that...