Kledia
10/17/2024, 3:49 PMsuggest_privilege_tags.from_source(
    source=storage,
    entrypoint=entry_point,
).deploy(
    name="on-demand",
    work_pool_name="default",
    job_variables={"env": {"EXTRA_PIP_PACKAGES": "prefect-aws"}},
    infrastructure=infrastructure,
)storage = S3Bucket.load("flow-code")'S3Bucket' object has no attribute 'set_base_path'Marvin
10/17/2024, 3:49 PM'S3Bucket' object has no attribute 'set_base_path'set_base_pathS3Bucketset_base_pathS3Bucketpython
from prefect_aws.s3 import S3Bucket
# Assuming 'flow-code' is the name of the bucket
s3_bucket = S3Bucket.load("flow-code")
# Any further method calls to store or retrieve objects from your bucketS3Bucket