aws-sdk-rust
aws-sdk-rust copied to clipboard
AWS SDK for the Rust Programming Language
### Describe the feature The feature should achieve the same functionality of Python's copy command from S3 to Redshift. Example in Python as below: # Create a new table named...
Currently, `SdkBody` is re-exported in services that have streaming, such as S3. However, services such as DynamoDB do not re-export it. `SdkBody` is needed when writing any unit test that...
### Describe the feature These operations are unmodeled and need to be called manually. Currently, this means people have to resolve credentials and use `aws-sigv4` directly with hyper, with is...
Make SO_NODELAY configurable (or default to true) as it massively reduces Lambda invocation latency
### Describe the feature The h2 library that backs this SDK seems to put HEADERS and DATA frames into separate TCP packets when payloads are large. That's fine, but in...
### Describe the feature Given a `Client`, object, I want to be able to create a new client that is identical but with small changes, e.g. with an additional interceptor...
### Describe the feature Currently, the low-level signing implementation in aws-sigv4 requires an expiration duration in the signing settings (as pre-signed URLs require this parameter). It makes sense that pre-signed...
### Describe the feature I've looked at the documentation at https://docs.rs/aws-sdk-s3/0.28.0/aws_sdk_s3/operation/list_objects_v2/builders/struct.ListObjectsV2FluentBuilder.html and the examples provided in this repo, and I cannot see how I'd add a `--query` parameter to this...
### Describe the bug An error occurred while executing get_bucket_lifecycle_configuration. ### Expected Behavior The following rusoto_s3 code works fine. ``` rust let result = client .get_bucket_lifecycle_configuration(GetBucketLifecycleConfigurationRequest { bucket: "bucket_name".to_string(), expected_bucket_owner:...
### Describe the bug The SQS example code does not work; it fails with an error code: > Error: Unhandled(Unhandled { source: DispatchFailure(DispatchFailure { source: ConnectorError { kind: Other(None), source:...
### Describe the issue The documentation for specifying an AWS region and selecting credentials from shared credential files desperately needs updating in the Rust Developer Guide. Only one method of...