Skip to content

Commit

Permalink
fix canned acl
Browse files Browse the repository at this point in the history
  • Loading branch information
amit-chandak-unskript committed Mar 24, 2023
1 parent df60128 commit 41c4ba4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ def aws_change_acl_permissions_of_buckets_printer(output):
pprint.pprint(output)


def aws_change_acl_permissions_of_buckets(handle, bucket_name: str, acl: CannedACLPermissions=CannedACLPermissions.private, region: str = None) -> Dict:
def aws_change_acl_permissions_of_buckets(handle, bucket_name: str, acl: CannedACLPermissions=CannedACLPermissions.Private, region: str = None) -> Dict:
""" aws_put_bucket_acl get Dict of buckets ACL change info.
:type handle: Session
:param handle: Object returned by the task.validate(...) method
:type bucket_name: string
:param bucket_name: S3 bucket name where to set ACL on.
Expand Down

0 comments on commit 41c4ba4

Please sign in to comment.