We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provides high-level, object-oriented API. It exposes sub-resources and collections of AWS resources and has actions (operations on resources). API
import boto3 s3 = boto3.resource('s3') # S3 Object (bucket_name and key are identifiers) obj = s3.Object(bucket_name='boto3', key='test.py') print(obj.bucket_name) print(obj.key)
import boto import botwo s3 = boto3.resource('s3') botwo.resource('s3')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Boto resource
Provides high-level, object-oriented API. It exposes sub-resources and collections of AWS resources and has actions (operations on resources).
API
Usage
Wrap boto resource
The text was updated successfully, but these errors were encountered: