put_bucket_request_payment

S3.Client.put_bucket_request_payment(**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 = client.put_bucket_request_payment(
    Bucket='string',
    ChecksumAlgorithm='CRC32'|'CRC32C'|'SHA1'|'SHA256',
    RequestPaymentConfiguration={
        'Payer': 'Requester'|'BucketOwner'
    },
    ExpectedBucketOwner='string'
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The bucket name.

  • 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 or x-amz-trailer header sent. Otherwise, Amazon S3 fails the request with the HTTP status code 400 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

Examples

The following example sets request payment configuration on a bucket so that person requesting the download is charged.

response = client.put_bucket_request_payment(
    Bucket='examplebucket',
    RequestPaymentConfiguration={
        'Payer': 'Requester',
    },
)

print(response)

Expected Output:

{
    'ResponseMetadata': {
        '...': '...',
    },
}