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

An IAM instance profile can have a collection of roles attached to it. I think in the giant JSON that needs to be reflected as a `hasMany` and not a...

feature-request
iam
resources
needs-review
p3

Is there a way with boto3 to unmarshall a json response from querying dyanmodb? I want to avoid having to import another module like https://pypi.org/project/dynamodb-json/

feature-request
dynamodb
p2

This is a signal boost for the request found in issue #548 in pull request form. In short, if we can guess the proper ContentType, do so. Includes doc fix,...

enhancement
pr/needs-review

```python import boto3, threading for i in range(50): threading.Thread(target=lambda: boto3.client('sts')).start() ``` And you get, tested on my Windows 10 machine (boto3 version 1.5.31, botocore version 1.8.45) and also on an...

enhancement
feature-request
p2
sts

I'm aware of `s3.upload_fileobj()`, but this has the inverse of the interface I want. `upload_fileobj` takes a file-like object with a `read` method, and calls that. I'd like an interface...

feature-request
s3

There is a bug in the implementation of the cloud formation StackResourceSummary class which prevents the creation of StackResources by calling the Resource() sub-resource: > stack = cloudformation.Stack('MyStack') > resource_summary...

bug
resources
cloudformation

Now that [pep 561](https://www.python.org/dev/peps/pep-0561/) has passed its possible to have a typehint package added for boto3.

feature-request

The Glacier.Client.list_vaults() method [Examples section](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/glacier.html#Glacier.Client.list_vaults) lists the code statement: `response = client.list_vaults( accountId='-', limit='', marker='', )` Passing an empty string with limit= raises an exception. The Glacier REST API for...

documentation
glacier
service-api

I'm aware that you can get at object tagging via the client, but it'd be nice to be able to get it through the resource API as well.

feature-request
s3

**Describe the bug** [Pagination](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/paginators.html) for dynamodb fails when the partition key is of type number. This happens because the returned LastEvaluatedKey is of type `Decimal` and it cannot be json...

bug
dynamodb
pagination
p2