Retrieving an Object
VAST Cluster › Version 5.3 › VAST Cluster 5.3 Administrator's Guide › Managing Access Protocols › S3 Object Storage Protocol › Boto3 Client
… org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35. Example In this example, we download only bytes 32-64 of the object "MyObject" from the bucket "MyBucket". response = S3_client.get_object(
Bucket='MyBucket',
Key='MyObject',
Range='bytes=32-64',
) p …