Hello. Is it possible to use `S3List` task to get ...
# prefect-server
s
Hello. Is it possible to use
S3List
task to get list of bucket specifying full path? Whenever I try to provide full path there is an error about bucket not matching some Regex. It works only when I provide plain name of the root bucket like this
test-bucket
but I need content of the directory inside that bucket. How this can be done?
a
to list buckets, try using boto3 directly:
Copy code
s3_client.list_buckets()
and to list objects:
Copy code
s3_client.list_objects()
s
I see. Thank you
🙌 1