Skip to content

Get Bucket Request Payment

s3_get_bucket_request_payment R Documentation

This operation is not supported by directory buckets

Description

This operation is not supported by 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

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 ⁠403 Forbidden⁠ (access denied).

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)