Skip to content

Instantly share code, notes, and snippets.

@ragazzid
Created October 9, 2019 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ragazzid/d96bacd5eed4d8b2ccfd896130b65c78 to your computer and use it in GitHub Desktop.
Save ragazzid/d96bacd5eed4d8b2ccfd896130b65c78 to your computer and use it in GitHub Desktop.
adicionar acl bucket upload aws
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