AWS S3 Access Grants plugin provides the functionality to enable S3 customers to configure S3 Access Grants as a permission layer on top of the S3 Clients.
Project description
Amazon S3 Access Grants plugin for boto3
Amazon S3 Access Grants Plugin provides the functionality to enable S3 customers to configure S3 ACCESS GRANTS as a permission layer on top of the S3 Clients.
S3 Access Grants is a feature from S3 that allows its customers to configure fine-grained access permissions for the data in their buckets.
Installing the plugin
Run this command to install the plugin.
pip install aws-s3-access-grants-boto3-plugin==<Latest_Version>
Using the plugin
- Create your S3 Client.
- Create a S3AccessGrantsPlugin object and pass the S3 Client and fallback option during initialization.
- Register the plugin.
import botocore.session
from aws_s3_access_grants_boto3_plugin.s3_access_grants_plugin import S3AccessGrantsPlugin
session = botocore.session.get_session()
s3_client = session.create_client('s3')
plugin = S3AccessGrantsPlugin(s3_client, fallback_enabled=True, customer_session=session)
plugin.register()
fallback_enabled takes in a boolean value. This option decides if we will fall back to the credentials set on the S3 Client by the user.
- If fallback_enabled is set to True then we will fall back every time we are not able to get the credentials from Access Grants, no matter the reason.
- If fallback_enabled option is set to False we will fall back only in case the operation/API is not supported by Access Grants.
Note that fallback_enabled can be passed while creating the plugin (as showed in example above). If fallback_enabled is not set, we will default to False.
customer_session is an optional parameter of type botocore.session.Session. This session will be used to create the internal sts, s3, and s3control clients. If no session is passed the default botocore session will be used to create these clients.
Notes
- The plugin supports delete_objects API and copy_object API which S3 Access Grants does not implicitly support. For these APIs we get the common prefix of all the object keys and find their common ancestor. If you have a grant present on the common ancestor, you will get Access Grants credentials based on that grant. For copy_object API the source and destination buckets should be same, since a grant cannot give access to multiple buckets.
- The plugin's support for a specific python version is inline with the minimum python version requirements of botocore. This is to ensure that our customers are always getting the latest security and feature updates of botocore.
Contributions
- See CONTRIBUTING.md
License
This project is licensed under the Apache-2.0 License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws_s3_access_grants_boto3_plugin-1.3.0.tar.gz.
File metadata
- Download URL: aws_s3_access_grants_boto3_plugin-1.3.0.tar.gz
- Upload date:
- Size: 20.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83fab0f08dd5c1a0508a4df1a43ada1128a51b4f7fb12c8c1e1650089e029940
|
|
| MD5 |
b05edeb3561f7b8bce2d391643a82d2e
|
|
| BLAKE2b-256 |
418add2c9c9b31f57ef87a2d30fa55c0d65147f58ef3bfa00619a64915e6f88a
|
File details
Details for the file aws_s3_access_grants_boto3_plugin-1.3.0-py3-none-any.whl.
File metadata
- Download URL: aws_s3_access_grants_boto3_plugin-1.3.0-py3-none-any.whl
- Upload date:
- Size: 14.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0aaf009d98b91bd28822ca7773f35ca55e911177d43fc44b72a5f213e99c8382
|
|
| MD5 |
7dddadba94119406310c7f433b1a31b5
|
|
| BLAKE2b-256 |
5c86b4e6cb3eb5bf46fe5e16dbf5f5e81ed27727f66f0d77abefacb7006869d6
|