Top "Boto3" questions

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

Boto3 updating multiple values

in the boto3 documentation updating an item is described by this example: table.update_item( Key={ 'username': 'janedoe', 'last_name': …

python amazon-dynamodb aws-lambda boto3
How to query cloudwatch logs using boto3 in python

I have a lambda function that writes metrics to Cloudwatch. While, it writes metrics, It generates some logs in a …

python boto3 amazon-cloudwatch
Airflow S3KeySensor - How to make it continue running

With the help of this Stackoverflow post I just made a program (the one shown in the post) where when …

boto3 airflow airflow-scheduler
boto3 aws api - Listing available instance types

Instance types: (t2.micro, t2.small, c4.large...) those listed here: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.…

python amazon-web-services boto3 instancetype
put_records() only accepts keyword arguments in Kinesis boto3 Python API

from __future__ import print_function # Python 2/3 compatibility import boto3 import json import decimal #kinesis = boto3.resource('kinesis', region_name='eu-west-1…

python amazon-web-services boto3 amazon-kinesis
InvalidCiphertextException when calling kms.decrypt with S3 metadata

I can add a client-side encrypted file via the Java SDK, and I can fetch the file too. I'm now …

python amazon-web-services amazon-s3 boto3 aws-kms
PyCharm intellisense for boto3

having problems seeing full intellisense (code completion) options in PyCharm. working with python 3.4 on Windows. the suggests are partially working: …

python pycharm boto aws-cli boto3
How to send an SMS with custom sender ID with Amazon SNS and Python and boto3

The documentation suggests to use message attributes for that but I can't seem to figure out what attribute name to …

python amazon-web-services sms amazon-sns boto3
Boto3: Get EC2 images owned by me

I would like to get all ami images owned by me. I tried something like below: ec2 = boto3.resource('ec2…

amazon-web-services amazon-ec2 boto3 amazon-ami
Getting "Creation of service was not idempotent" with boto3 ECS. Why?

I am making a call to ecs.create_service like this: createServiceResponse = ecs.create_service( clientToken='abc123', cluster=options.…

python amazon-ec2 boto3 amazon-ecs