boto3
boto3 copied to clipboard
AWS SDK for Python
**Describe the bug** If the `AWS_REGION` is set to `us-west-2` and an make a support client call, you will get an error: EndpointConnectionError: Could not connect to the endpoint URL:...
Most of what `aws-cli` can do is present in `boto3` for Python, but `aws configure` is not a feature of `boto3`. Using `subprocess` is an alternative in Python if one...
The Table class has Actions that simplify the interface and response structure. In particular `get_item`, `put_item` and `update_item` use the following parameter: ``` Key={ 'string': 'string'|123|Binary(b'bytes')|True|None|set(['string'])|set([123])|set([Binary(b'bytes')])|[]|{} }, ``` rather than,...
When using a filter with prefix lists I can filter with prefix-list-id but not with prefix-list-name. If I do a describe with filter on prefix-list-id, then copy and paste the...
The boto3 "Table" Resource API does not provide easy access to paged results when using Scan or Query actions. That's unlike other high level boto3 Resource APIs like S3 which...
**Describe the bug** Presigned url does not create a url for the region_name specified **Steps to reproduce** Its worth noting the code I am working on has its only mechanism...
I spent hours figuring out how to send a list of commands to SSM send_command for document AWS-RunShellScript. Really this is a basic documentation problem - once a few examples...
At the moment, the 'sagemaker-featurestore-runtime' client doesn't have any waiters. This makes it pretty inconvenient to wait for newly created feature groups to be ready for ingestion.
**Describe the bug** According to the 1.15.7 doc the resource-function cloudwatch.alarms.filter() should be able to return composite alarms, but only metric alarms are returned. Filtering on composite alarms results in...
**Describe the bug** Hello, When accessing the `list_findings` endpoint on `inspector2`, no findings are ever returned when specifying an `updatedAt` in `filterCriteria`. **Steps to reproduce** The following code has been...