Check for VFS Bucket
tiledb_vfs_is_bucket(uri, vfs = tiledb_get_vfs())
uri | Character variable with a URI describing a cloud bucket |
---|---|
vfs | A TileDB VFS object; default is to use a cached value. |
A boolean value indicating if it is a valid bucket
ctx <- tiledb_ctx(limitTileDBCores()) if (FALSE) { cfg <- tiledb_config() cfg["vfs.s3.region"] <- "us-west-1" ctx <- tiledb_ctx(cfg) vfs <- tiledb_vfs() tiledb_vfs_is_bucket(vfs, "s3://tiledb-public-us-west-1/test-array-4x4") }