summaryrefslogtreecommitdiffstats
path: root/examples/rgw/boto3/post_bucket_logging.py
blob: 130fc53b50a12ec12fec1da8bdd5fad7d5571a6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import boto3
import sys


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

# endpoint and keys from vstart
endpoint = 'http://127.0.0.1:8000/'+bucketname
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)

# flushing the logs for bucket logging
print(client.post_bucket_logging(Bucket=bucketname))