getBucketRequestPayment
abstract suspend fun getBucketRequestPayment(input: GetBucketRequestPaymentRequest): GetBucketRequestPaymentResponse
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 GetBucketRequestPayment:
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.
Samples
fun main() {
//sampleStart
// The following example retrieves bucket versioning configuration.
val resp = s3Client.getBucketRequestPayment {
bucket = "examplebucket"
}
//sampleEnd
}