could use saspy: sas.sd2df('cars','sashelp').to_parquet('/tmp/cars.parquet') I run in databricks [community edition] which allows me to then write directly to s3 using a dbfs:/mnt mount and following: dbutils.fs.cp('file:/tmp/cars.parquet','dbfs:/mnt/jgalloway/parquet/cars_from_sashelp.parquet') but there will be numerous other ways to get your parquet to s3 (WinSCP is another option for this)
... View more