First we have to add a declarative S3 configuration in Python.
s3_config.py
Copy
Ask AI
import featureform as ffs3 = ff.register_s3( name="s3-quickstart", credentials=ff.AWSStaticCredentials(...), bucket_name="bucket_name", bucket_region=<bucket_region>, path="path/to/store/featureform_files/in/", description="An s3 store provider to store offline")client.apply()