BucketRequestPayment / Action / put
put#
- S3.BucketRequestPayment.put(**kwargs)#
Sets the request payment configuration for a bucket. By default, the bucket owner pays for downloads from the bucket. This configuration parameter enables the bucket owner (only) to specify that the person requesting the download will be charged for the download. For more information, see Requester Pays Buckets.
The following operations are related to
PutBucketRequestPayment
:See also: AWS API Documentation
Request Syntax
response = bucket_request_payment.put( ChecksumAlgorithm='CRC32'|'CRC32C'|'SHA1'|'SHA256', RequestPaymentConfiguration={ 'Payer': 'Requester'|'BucketOwner' }, ExpectedBucketOwner='string' )
- Parameters:
ChecksumAlgorithm (string) –
Indicates the algorithm used to create the checksum for the object when using the SDK. This header will not provide any additional functionality if not using the SDK. When sending this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.RequestPaymentConfiguration (dict) –
[REQUIRED]
Container for Payer.
Payer (string) – [REQUIRED]
Specifies who pays for the download and request fees.
ExpectedBucketOwner (string) – The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code
403 Forbidden
(access denied).
- Returns:
None