Get Bucket Request Payment
| s3_get_bucket_request_payment | R Documentation |
This operation is not supported for directory buckets¶
Description¶
This operation is not supported for directory buckets.
Returns the request payment configuration of a bucket. To use this version of the operation, you must be the bucket owner. For more information, see Requester Pays Buckets.
The following operations are related to get_bucket_request_payment:
list_objects
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.
Usage¶
s3_get_bucket_request_payment(Bucket, ExpectedBucketOwner)
Arguments¶
Bucket |
[required] The name of the bucket for which to get the payment request configuration |
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 |
Value¶
A list with the following syntax:
list(
Payer = "Requester"|"BucketOwner"
)
Request syntax¶
svc$get_bucket_request_payment(
Bucket = "string",
ExpectedBucketOwner = "string"
)
Examples¶
## Not run:
# The following example retrieves bucket versioning configuration.
svc$get_bucket_request_payment(
Bucket = "examplebucket"
)
## End(Not run)