aws-sdk-rust
aws-sdk-rust copied to clipboard
AWS SDK for the Rust Programming Language
### Describe the bug Hi there! We would want to set the `content_length` (as `size_hint`) with a streaming `hyper:Body` to upload an object to S3 with it's checksum. ### Expected...
### Describe the feature aws-sdk-rust can be configured to connect to AWS FIPS endpoints. However, the client side is still not FIPS compliant. AWS now has a FIPS compliant crypto...
### Describe the issue https://docs.rs/aws-sdk-appconfigdata/latest/aws_sdk_appconfigdata/client/index.html Suggests the following: ```rust let config = aws_config::load_from_env().await; let client = aws_sdk_appconfigdata::Client::new(&config); ``` Not sure if this was intentional, but load_from_env is deprecated by default...
> This is the tracking issue for support for Http & Hyper 1.0 ### Describe the feature There may already be a tracking issue on this (I couldn't find it),...
### Describe the feature At the moment `ByteStream` can be made from file or from a `Vec`, however for the case of a web server, that meant I have to...
### Describe the issue The changelog from February 13th claims that `cloudwatch/PutMetricData` now supports compression, however checking the changeset for that release it does not seem like the SDK uses...
### Describe the issue Previously there was some documentation at https://github.com/awslabs/aws-sdk-rust/blob/060d3c5a22a0b559cc459cbdbbe80b28685630c5/sdk/aws-sig-auth/src/lib.rs that defined how to generate some RDS token credentials. Now that the code-base has been refactored I'm not sure...
### Describe the feature I'd like to be able to use aws-lc-rs in place of ring, throughout my dependency tree. I'd love to be able to do so with aws-sdk-rust...
### Describe the bug `AWS_ENDPOINT_URL` in the environment gets ignored by the SDK. ### Expected Behavior The correct endpoint URL will be loaded from the environment variables and used for...
### Describe the bug When doing a multipart upload to S3, I should be able to use ByteStream's `Length::UpTo`, but that fails on the last chunk. ### Expected Behavior It...