boto3 icon indicating copy to clipboard operation
boto3 copied to clipboard

AWS SDK for Python

Results 327 boto3 issues
Sort by recently updated
recently updated
newest added

It's the end of the day, maybe i'm not seeing this clearly... But I am unable to store simple float values without adding some arcane magic to the mix. Using...

feature-request
dynamodb
p2
needs-major-version

The main goal of this PR is to implement a human readable `__repr__` representation of the boto3 DynamoDB conditions. The primary use case being for debugging and logging. Currently printing/logging...

### Describe the bug In my project which uses Boto3, I observed that a `copy()` call on an `S3.Object` failed with this stacktrace: Traceback (most recent call last): File "/usr/local/bin/toil-cwl-runner",...

documentation
feature-request
s3
resources
p3

Please fill out the sections below to help us address your issue. **What issue did you see ?** After looking into https://boto3.amazonaws.com/v1/documentation/api/latest/reference/core/session.html#boto3.session.Session.client, i couldn't find how `region_name` defaults depending upon...

documentation
feature-request

1st time contributing to this project, let me know if I need to change anything.

needs-review

In a world of environment variables used as configuration to switch between environments, it would be really useful if boto3 would support an variable to switch between endpoints. In our...

feature-request
p2

### Describe the bug Calling `describe_connection_aliases` on the `workspaces` client with valid non-null parameter values fails. ### Expected Behavior No error. ### Current Behavior The following error occurs: ``` Traceback...

bug
response-requested
workspaces

Boto3 resources (e.g. instances, s3 objects, etc.) are not pickleable and have no `to_json()` method or similar. Therefore, there's currently no way to cache resources retrieved via boto3. This is...

feature-request
closing-soon
resources
needs-review
p2

### Describe the bug The documented attribute [`Glacier.MultipartUpload.part_size_in_bytes`](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/glacier.html#Glacier.MultipartUpload.part_size_in_bytes) is unusable ``` >>> glacier = boto3.resource('glacier') >>> vault = glacier.Vault(account_id='...', name='...') >>> multipart_upload = vault.initiate_multipart_upload(partSize=str(1024*1024)) >>> multipart_upload.id 'GRLqOxGLGxrQemumGafYu34JL8oqqUyTjEPVstpbJqWp6DVMpW-cBfhIOsAXEUv2QbItyFTNcjaCZryaqTe6ss4grVaf' ``` ### Expected...

bug
closing-soon
s3
glacier
resources
service-api
p3

### Describe the feature Currently printing/logging a `FilterExpression` will show something like: ``` ``` which is not very helpful. Implementing `__str__` on the boto3 `Attr` and `ConditionBase` classes will instead...

feature-request
dynamodb
resources
needs-review
p3