aws-sdk-ruby
aws-sdk-ruby copied to clipboard
The official AWS SDK for Ruby.
### Describe the bug In the Lambda `ruby3.4` runtime using the latest version of the `aws-sdk-states` gem, the `states:GetExecutionHistory` encounters a JSON parsing error if the execution history contains unicode...
### Describe the bug Hey there - thanks for making a great library! I'm trying to use the SDK to generate a presigned S3 PUT URL that enforces object integrity...
x-post from https://github.com/aws/aws-sdk-ruby/pull/3001/files All CloudFormation waiters should have the following acceptor to handle throttling errors: ``` { "matcher": "error", "expected": "Throttling", "state": "retry" } ```
### Describe the bug Sorry if this is the wrong place to report this since this is an issue with the API and not the Ruby client, but I noticed...
### Describe the feature After using `get_object`'s chunked read, I assumed `put_object` similarly supported chunked writing: ```rb client.put_object(bucket: blob.bucket, key: blob.key) do |buffer| while chunk = blob.read(16 * 256) buffer
### Describe the feature Similar to the existing Aws::EC2Metadata client class, it would be helpful to have a metadata client class that retrieves and presents data from the ECS Task...