2016/04/19 - Amazon Simple Storage Service - 2 new api methods
Changes Add support for s3 accelerate configuration Add support for Amazon S3 Transfer Acceleration
Returns the accelerate configuration of a bucket.
Request Syntax
client.get_bucket_accelerate_configuration( Bucket='string' )
string
[REQUIRED] Name of the bucket for which the accelerate configuration is retrieved.
dict
Response Syntax
{ 'Status': 'Enabled'|'Suspended' }
Response Structure
(dict) --
Status (string) -- The accelerate configuration of the bucket.
Sets the accelerate configuration of an existing bucket.
Request Syntax
client.put_bucket_accelerate_configuration( Bucket='string', AccelerateConfiguration={ 'Status': 'Enabled'|'Suspended' } )
string
[REQUIRED] Name of the bucket for which the accelerate configuration is set.
dict
[REQUIRED] Specifies the Accelerate Configuration you want to set for the bucket.
Status (string) -- The accelerate configuration of the bucket.
None