Skip to contents

Requires the tibble package.

Usage

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

Arguments

x

A listObjects response object.

...

Additional arguments (unused).

Value

A tibble with one row per object and columns objectKey, objectId, size, and location.

Examples

if (FALSE) { # \dontrun{
library(tibble)
listObjects(token = myToken, bucket = "mybucket") |> as_tibble()
} # }