Created
October 9, 2019 11:34
-
-
Save ragazzid/d96bacd5eed4d8b2ccfd896130b65c78 to your computer and use it in GitHub Desktop.
adicionar acl bucket upload aws
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto3 | |
s3 = boto3.client('s3') | |
s3.upload_file( | |
'file', 'object', 'key', | |
ExtraArgs={ | |
'GrantFullControl': 'id=canonicalId', | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment