:doc:`S3 <../../s3>` / Client / put_bucket_request_payment

**************************
put_bucket_request_payment
**************************



.. py:method:: S3.Client.put_bucket_request_payment(**kwargs)

  

  .. note::

    

    This operation is not supported for directory buckets.

    

   

  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 <https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html>`__.

   

  The following operations are related to ``PutBucketRequestPayment``:

   

  
  * `CreateBucket <https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html>`__
   
  * `GetBucketRequestPayment <https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketRequestPayment.html>`__
  

   

  .. warning::

     

    You must URL encode any signed header values that contain spaces. For example, if your header value is ``my file.txt``, containing two spaces after ``my``, you must URL encode this value to ``my%20%20file.txt``.

    

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/PutBucketRequestPayment>`_  


  **Request Syntax**
  ::

    response = client.put_bucket_request_payment(
        Bucket='string',
        ChecksumAlgorithm='CRC32'|'CRC32C'|'SHA1'|'SHA256'|'CRC64NVME',
        RequestPaymentConfiguration={
            'Payer': 'Requester'|'BucketOwner'
        },
        ExpectedBucketOwner='string'
    )
    
  :type Bucket: string
  :param Bucket: **[REQUIRED]** 

    The bucket name.

    

  
  :type ChecksumAlgorithm: string
  :param ChecksumAlgorithm: 

    Indicates the algorithm used to create the checksum for the request when you use the SDK. This header will not provide any additional functionality if you don't use the SDK. When you send 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 <https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html>`__ in the *Amazon S3 User Guide*.

     

    If you provide an individual checksum, Amazon S3 ignores any provided ``ChecksumAlgorithm`` parameter.

    

  
  :type RequestPaymentConfiguration: dict
  :param RequestPaymentConfiguration: **[REQUIRED]** 

    Container for Payer.

    

  
    - **Payer** *(string) --* **[REQUIRED]** 

      Specifies who pays for the download and request fees.

      

    
  
  :type ExpectedBucketOwner: string
  :param ExpectedBucketOwner: 

    The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, 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': {
            '...': '...',
        },
    }

  