Skip to content

Instantly share code, notes, and snippets.

@ragazzid
Created October 9, 2019 11:34
Show Gist options
  • Save ragazzid/d96bacd5eed4d8b2ccfd896130b65c78 to your computer and use it in GitHub Desktop.
Save ragazzid/d96bacd5eed4d8b2ccfd896130b65c78 to your computer and use it in GitHub Desktop.

Revisions

  1. ragazzid created this gist Oct 9, 2019.
    10 changes: 10 additions & 0 deletions s3_upload_grant_acl_aws.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    import boto3

    s3 = boto3.client('s3')

    s3.upload_file(
    'file', 'object', 'key',
    ExtraArgs={
    'GrantFullControl': 'id=canonicalId',
    }
    )