Amazon S3 multiple object delete using aws or boto

Question:

I would like to try amazone feature delete multiple object but using
boto or aws.

How can I lanuch a POST request using boto or aws ??
Below is the stuff I wanna try :

Cheers

Answer:

Boto provides support for MultiDelete. Here’s an example of how you would use it:

The result will provide information about which delete operations were successful and which, if any, failed. If you want the Quiet mode which tells you only about failures, pass in quiet=True to the delete_keys call.

Leave a Reply