Tagged Questions

4
votes
1answer
63 views

AWS S3 object lifecycle through Boto

How does one manage an S3 object's lifecycle through boto? I can't find anything related to that subject in the API documentation.
3
votes
3answers
1k views

Why are no Amazon S3 authentication handlers ready?

I have my $AWS_ACCESS_KEY_ID and $AWS_SECRET_ACCESS_KEY environment variables set properly, and I run this code: import boto conn = boto.connect_s3() and get this error: ...
3
votes
2answers
508 views

Is is possible to read a file from S3 in Google App Engine using boto?

I want to manipulate a pickled python object stored in S3 in Google App Engine's sandbox. I use the suggestion in boto's documentation: from boto.s3.connection import S3Connection from boto.s3.key ...
2
votes
0answers
66 views

django-storages using boto - cannot upload mp3, but can upload an image. Also, suffering HTTP 307 pain

Am using the boto (2.2.1) backend for django-storages (1.1.4) to upload files to an S3 bucket. It works fine for images, but when I try to upload movie files (small mov, small avi) or an mp3, i get a ...
2
votes
1answer
103 views

How to use AWS S3 policies to enforce ownership of resources for federated users?

I'm writing an app where I have a set of users, and each user will have a number of files associated with them in a 'directory' within an S3 bucket. Users will be authenticating using Amazon's STS, ...
2
votes
1answer
247 views

Boto EC2: Create an instance with tags

Is there a way with the boto python API to specify tags when creating an instance? I'm trying to avoid having to create an instance, fetch it and then add tags. It would be much easier to have the ...
2
votes
1answer
67 views

Amazon Web Service Usage Cost through Command Line

I am working on Amazon Web Service (EC2, S3) to set up an instances given the following detail on the account. (I don't have administrative rights to the Amazon account through the web browser) ...
2
votes
2answers
406 views

Amazon SQS region from EC2 Instance

If I create SQS queue from an EC2 instance without specifying the region in the API call, in which region will the queue be created. When I run boto.sqs.regions() I get 4 regions from an NON ec2 ...
2
votes
1answer
446 views

Django as S3 proxy

I extended a ModelAdmin with a custom field "Download file", which is a link to a URL in my Django project, like: http://www.myproject.com/downloads/1 There, I want to serve a file which is stored ...
1
vote
1answer
54 views

Amazon EC2 Boto: Filter out registered AMI

Let say I have 20 registered AMI. Is there a way to filter out only registered AMI using boto API command line? E.g. get_all_volumes() get_all_images() get_all_instances() get_all_snapshots(), etc ...
1
vote
1answer
101 views

Boto script freezing when trying to deploy and configure EC2 instances

I'm using boto in Python to automate some of my EC2 workflow. The issue is very strange - the script appears to freeze on an assignment of a simple variable, but it is continuing in the background. ...
1
vote
1answer
46 views

Add “default” headers to all boto requests?

Is it possible to set default headers for boto requests? Basically I want to include a couple of headers in every API call I make to S3.
1
vote
1answer
64 views

Do AWS Canonical UserIDs exist for AWS Federated Users (temporary security credentials)?

Does a canonical user id exist for a federated user created using STS? When using boto I need a canonical user id to grant permissions to a bucket. Here's a quick tour through my code: I've ...
1
vote
2answers
62 views

Amazon Web Service: Different between Images and Instances

What is the different between starting an AWS Image and Instances? Example: I do notice when I am running AWS image using boto, I can only stop the Image while running AWS instance using boto, I can ...
1
vote
2answers
100 views

Amazon Web Service/Boto: Upload and execute remote python/bash script via SSH on localhost

I am able to fire up AWS Ubuntu EC2 instance with boto. Have anyone tried to upload the script to the remote Ubuntu EC2 (More than 1) and execute the script via SSH locally? The main objective is to ...
1
vote
1answer
318 views

How do i get the public dns of an instance in AWS using BOTO python

I get the elb details of a specific region say europe then i am able to get the instances that are related the the ELB. the problem is i am not able to get the public dns of those instances. what i do ...
1
vote
2answers
431 views

Disabling unidentified host confirmation when connecting to Amazon EC2 instances using SSH

I am writing a script using boto and Python to automatically launch an Amazon EC2 instance and interact with it using SSH. Everything works fine except that every time I establish the connection, SSH ...
1
vote
1answer
596 views

Disable boto logging without modifying the boto files

I am using the Boto library to talk to AWS. I want to disable logging. (Or redirect to /dev/null or other file). I cant find an obvious way to do this. I tried this, but that doesn't seem to help. ...
0
votes
1answer
18 views

Getting Credentials File in the boto.cfg for Python

I'm using AWS for the first time and have just installed boto for python. I'm stuck at the step where it advices to: "You can place this file either at /etc/boto.cfg for system-wide use or in the ...
0
votes
1answer
77 views

boto instance.__dict__['tags']['Name'] output issue

UPDATE: I did what was suggested below, however, I was still getting an KeyError:'Name' in the output, even though the output was correct. This was the output: us-west-1 EC2Connection: ...
0
votes
1answer
27 views

AWS S3 changes in a bucket / prefix using boto

What is the most efficient way (i.e. lower cost :) to check for any changes to a bucket according to a prefix? In other words, is there a way to check if there were new/updated/deleted files in a ...
0
votes
0answers
25 views

Error in Retriving instance under ELB in Amazon using Boto Python

def get_ap_loadbalancer_servers(): ap_dict = {} ap_ec2 = ec2_regions[6] ap_elb = elb_regions[3] print ap_elb conn_ap_ec2 = ap_ec2.connect(aws_access_key_id= AWS_ACCESS, ...
0
votes
1answer
49 views

Modify db parameter group in AWS RDS using boto

Trying to modify a database parameter group on AWS RDS with boto, I hit upon the error below: from boto import rds conn = rds.connect_to_region('eu-west-1', aws_access_key_id=AWS_ACCESS_KEY_ID, ...
0
votes
1answer
52 views

Python-Boto: Check the Array Position Availability

I have try to get a specific list of AMI and store it in the array list. usubuntuamilist = {} for i, image in enumerate(conn.get_all_images()): if ...
0
votes
1answer
102 views

Run Boto with EC2 in Python with importing errors

With the Access Key & Secret Key located at my home directory, when I run the following in the command line: from boto.ec2.connection import EC2Connection conn = EC2Connection() The console ...
0
votes
1answer
163 views

How to handle request timeout(408) error in boto?

We are using domain.select() method, that boto provides, to query SimpleDB. For smaller queries(queries involving couple of hours of data), this method works fine. But when I start using multiple ...
0
votes
0answers
54 views

Inserting items in sub-buckets on S3 using boto

Say I have the following bucket set up on S3 MyBucket/MySubBucket And, I am planning on serving static media for a website out of MySubBucket (like images users have uploaded, etc.). The way the S3 ...
0
votes
1answer
50 views

Is it possible to retrieve messages from SQS while they're invisible?

Is it possible to retrieve messages from an SQS queue during their visibility timeout if you don't have the message id? I.e. something along the lines of "get invisible messages" or "get messages ...
0
votes
1answer
376 views

Django, Boto, S3: Why am I not getting a response suddenly?

This has been driving me crazy and I can't figure out where the issue is. AWS is having issues right now, but this problem was happening before all that and continues to exhibit same behavior. ...
0
votes
1answer
467 views

boto: EC2 instance get_attribute results in AttributeError: 'EC2Connection' object has no attribute 'describe_attribute'

What steps will reproduce the problem? 1.attempt to get a running EBS-backed instance's kernel attribute with instance.get_attribute('kernel') >>> import boto.ec2 >>> regions = ...
0
votes
1answer
132 views

Selecting keys based on metadata, possible with Amazon S3?

I'm sending files to my S3 bucket that are basically gzipped database dumps. They keys are a human readable date ("2010-05-04.dump"), and along with that, I'm setting a metadata field to the UNIX time ...
0
votes
6answers
802 views

Downloading a Large Number of Files from S3

What's the Fastest way to get a large number of files (relatively small 10-50kB) from Amazon S3 from Python? (In the order of 200,000 - million files). At the moment I am using boto to generate ...