boto3
boto3 copied to clipboard
AWS SDK for Python
### Describe the bug The `boto3` S3 client does not process S3 service errors like every other service client. It throws a different error than other service clients do when...
### Describe the feature Currently, the [AddPermission](https://docs.aws.amazon.com/sns/latest/api/API_AddPermission.html) feature on SNS topics only allows AWS Account IDs to be added to the policy. However, there have been use cases where I...
This PR updates the listed credential provider precedence documented in the [boto3 docs](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html). The sub-section ordering is also updated for readability.
### Describe the issue The following example in the documentation does not work as it specifies the file path as Content: ```python response = client.put_lexicon( Content='file://example.pls', Name='W3C', ) ``` Instead,...
### Describe the feature The [TypeDeserializer](https://github.com/boto/boto3/blob/662387a7164955a0528bbdde4c9230fa2b9b96ab/boto3/dynamodb/types.py#L83C7-L83C21) can't currently decode all items returned from `arn:aws:states:::aws-sdk:dynamodb:scan` by AWS step functions (and presumably other database operations). This is caused by non-standard encoding where...
### Describe the bug I have a python script that creates and updates glue jobs. If it detects additional arguments ( job parameters) it appends these to the default arguments...
### Describe the bug While creating client for s3, I am giving full endpoint url like `https://` and use_ssl as False. according to the [Documentation](https://boto3.amazonaws.com/v1/documentation/api/1.17.99/reference/core/session.html#boto3.session.Session.client), when endpoint_url specifies http scheme,...