Use PutBucketRequestPayment
with a CLI
The following code examples show how to use PutBucketRequestPayment
.
- AWS CLI
-
Example 1: To enable ``requester pays`` configuration for a bucket
The following
put-bucket-request-payment
example enablesrequester pays
for the specified bucket.aws s3api put-bucket-request-payment \ --bucket
my-bucket
\ --request-payment-configuration '{"Payer":"Requester"}
'This command produces no output.
Example 2: To disable ``requester pays`` configuration for a bucket
The following
put-bucket-request-payment
example disablesrequester pays
for the specified bucket.aws s3api put-bucket-request-payment \ --bucket
my-bucket
\ --request-payment-configuration '{"Payer":"BucketOwner"}
'This command produces no output.
-
For API details, see PutBucketRequestPayment
in AWS CLI Command Reference.
-
For a complete list of AWS SDK developer guides and code examples, see Developing with Amazon S3 using the AWS SDKs. This topic also includes information about getting started and details about previous SDK versions.