Top "Boto3" questions

Boto 3 - The Amazon Web Services (AWS) SDK for Python

Python 3 Boto 3, AWS S3: Get object URL

I need to retrieve an public object URL directly after uploading a file, this to be able to store it …

python amazon-web-services amazon-s3 python-3.6 boto3
Update attribute "timestamp" reserved word

I need to update the timestamp attribute in my dynamodb table using boto3 but the attribute name "timestamp" is a …

amazon-dynamodb boto3
Catching boto3 ClientError subclass

With code like the snippet below, we can catch AWS exceptions: from aws_utils import make_session session = make_session() …

python amazon-web-services boto3
saving an image to bytes and uploading to boto3 returning content-MD5 mismatch

I'm trying to pull an image from s3, quantize it/manipulate it, and then store it back into s3 without …

python-3.x amazon-s3 python-imaging-library pillow boto3
How to obtain current instance ID from boto3?

Is there an equivalent of curl http://169.254.169.254/latest/meta-data/instance-id with boto3 to obtain the current running instance instance-id in …

boto3
Can't access S3 bucket from within Fargate container (Bad Request and unable to locate credentials)

I created a private s3 bucket and a fargate cluster with a simple task that attempts to read from that …

python-3.x amazon-s3 boto3 amazon-iam aws-fargate
Is boto3 client thread-safe

Is boto3 low level client for S3 thread-safe? Documentation is not explicit about it. https://boto3.amazonaws.com/v1/documentation/…

python amazon-s3 aws-sdk boto3
How to update metadata of an existing object in AWS S3 using python boto3?

boto3 documentation does not clearly specify how to update the user metadata of an already existing S3 Object.

python amazon-web-services amazon-s3 boto3
How to view Boto3 HTTPS request string

I have been able to view the attributes of the PreparedRequest that botocore sends, but I'm wondering how I can …

python boto3 botocore
boto3 equivalent to boto.utils.get_instance_metadata()?

In regular boto 2.38 I used to access instance metadata (e.g. get current stack-name), through boto's boto.utils.get_instance_…

amazon-web-services boto3