Skip to contents

Requires the tibble package.

Usage

# S3 method for class 'listBuckets'
as_tibble(x, ...)

Arguments

x

A listBuckets response object.

...

Additional arguments (unused).

Value

A tibble with one row per bucket and columns bucketKey, bucketOwner, and policyKey.

Examples

if (FALSE) { # \dontrun{
library(tibble)
listBuckets(token = myToken) |> as_tibble()
} # }