aws-sdk-rust
aws-sdk-rust copied to clipboard
AWS SDK for the Rust Programming Language
### Describe the bug We have observed high memory usage when uploading large files to S3. The problem is compounded when performing multiple concurrent uploads and also when increasing the...
### Describe the bug Today, when testing I've been seeing this error: ``` DispatchFailure(DispatchFailure { source: ConnectorError { kind: Other(None), source: TimedOutError(5s), connection: Unknown } }) ``` This is despite...
### Describe the bug mio is not wasm-compatible, which is a dep of tokio. In the latest version of aws-config (0.56) I believe there was a change, specifically around tls,...
### Describe the bug DynamoDB tables cannot be queried if table has number at the beginning of the name or a hyphen/period anywhere in the name.  Using the following syntax: ```rust let behavior: BehaviorVersion = BehaviorVersion {}; ``` While the documentation says that `latest`...
### Describe the bug Hey! I've derived an example from this repository: [HERE](https://github.com/awslabs/aws-lambda-rust-runtime/tree/main/examples/extension-logs-kinesis-firehose) But instead of pushing to firehose, pushing to KDS instead. [See minimal example](https://github.com/dgarcia-collegeboard/aws-rust-lambda-extension-kinesis-example/blob/main/src/main.rs) I've added some extra...
### Describe the bug We are occasionally seeing S3 get_object() calls return incomplete data. ```rust async fn fetch_object(&self, s3_file_reference: &S3FileReference) -> Result { let response = self.s3_client .get_object() .bucket(s3_file_reference.s3_bucket_name.clone()) .key(s3_file_reference.s3_key.clone())...