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

**Describe the bug** We noticed that a lot of time was spent in the `_parse_shape` method making when querying large amounts of records for dynamo db. **Steps to reproduce** With...

enhancement
feature-request
needs-discussion
dynamodb
p3

**Describe the bug** Simple usecase that contains the following steps: create a secret, create a role, assign the role as the principal that can view the secret. When the steps...

feature-request

**Problem** The [Cloudwatch.Metric:put_data](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/cloudwatch.html#CloudWatch.Metric.put_data) documentation specifies the following request syntax: ```python import boto3 cloudwatch = boto3.resource('cloudwatch') metric = cloudwatch.Metric('namespace', 'name') response = metric.put_data() ``` ie. no arguments/parameters for the `put_data` method....

bug
documentation
needs-review

**Describe the bug** A clear and concise description of what the bug is. Timestream accepts `TIMESTAMP` as `MeasureValueType` according to the docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.write_records When writing a record with this value...

bug
investigating
service-api

I was looking at how to use the `Metric` resource in the `cloudwatch` namespace, and I was surprised to see that its `put_data` method doesn't accept any arguments, according to...

documentation
cloudwatch

I understand that `sqs-java-extended-client-lib` supports this but just wondering if you have any plan for supporting similar on boto. Thank you!

feature-request
sqs

Threaded transfers using the S3 [download_fileobj](https://github.com/boto/boto3/blob/develop/boto3/s3/inject.py#L516) will leave the file position in a nondeterministic state. The example from the function's docstring is: ```python import boto3 s3 = boto3.client('s3') with open('filename',...

enhancement
documentation
feature-request
s3
p2

Unless I'm reading the docs and source wrong -- dynamo itself allows [the BatchWriteItem call](http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_BatchWriteItem.html#API_BatchWriteItem_RequestSyntax) to take a `ReturnConsumedCapacity` keyword -- but `BatchWriter.put_item` doesn't allow that (or any other) keyword....

feature-request
dynamodb

**Describe the bug** Starting RDS Backup Replication Doesn't Work ``` An error occurred (InvalidParameterValue) when calling the StartDBInstanceAutomatedBackupsReplication operation: Feature is not available in region us-west-1. ``` Replication is supported...

bug
investigating
rds
service-api

Right now, it's hard to set `metadata_service_num_attempts` and `metadata_service_timeout` in application code. Whereas some settings are trivial to set on a per-client basis (e.g. `region=...`), some require a layer of...

feature-request
p3