summaryrefslogtreecommitdiffstats
path: root/examples/boto3/delete_notification.py
blob: ca5958e52ec110f83ce22d1aa88e62e310cda512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/python

import boto3
import sys

if len(sys.argv) == 3:
    # bucket name as first argument
    bucketname = sys.argv[1]
    # notification name as second argument
    notification_name = sys.argv[2]
elif len(sys.argv) == 2:
    # bucket name as first argument
    bucketname = sys.argv[1]
    notification_name = ""
else:
    print('Usage: ' + sys.argv[0] + ' <bucket> [notification]')
    sys.exit(1)

# endpoint and keys from vstart
endpoint = 'http://127.0.0.1:8000'
access_key='0555b35654ad1656d804'
secret_key='h7GhxuBLTrlhVUyxSPUKUV8r/2EI4ngqJxD7iBdBYLhwluN30JaT3Q=='

client = boto3.client('s3',
        endpoint_url=endpoint,
        aws_access_key_id=access_key,
        aws_secret_access_key=secret_key)

# deleting a specific notification congifuration from a bucket (when NotificationId is provided) or 
# deleting all notification configurations on a bucket (without deleting the bucket itself) are extension to AWS S3 API

if notification_name == "":
    print(client.delete_bucket_notification_configuration(Bucket=bucketname))
else:
    print(client.delete_bucket_notification_configuration(Bucket=bucketname,
                                                          Notification=notification_name))