Skip to contents

Remove objects from S3 bucket

Usage

s3_remove(objects, bucket, access_key, secret_key, ...)

Arguments

objects

S3 object keys (full path)

bucket

S3 backet name

access_key

S3 Access Key

secret_key

S3 Secret Key

...

Additional aws.S3::delete_object() options

Value

boolean

Examples

if (FALSE) { # \dontrun{
df_objects %>%
  pull(key) %>%
  first() %>%
  s3_remove(objects = .,
            bucket = "test-bkt")} # }