I'm trying to pass some args to `s3fs` (`s3_additi...
# questions
a
I'm trying to pass some args to
s3fs
(
s3_additional_kwargs
, specifically
ServerSideEncryption
and
SSEKMSKeyId
). I can't figure out where in a Data Catalog entry that should go:
save_args
,
fs_args
or as
s3_additional_kwargs
directly? Does anyone know the proper format? There's no information about it in the docs.
d
fs_sargs
We have some docs here, but it could be clearer https://docs.kedro.org/en/stable/data/data_catalog.html#load-and-save-arguments
a
so fs_args: s3_additional_kwargs:?
d
ignore me
it’s this
Copy code
my_dataset:
  type: pandas.CSVDataSet 
  filepath: s3:/xxxxx.csv
  versioned: false
  load_args:
      engine: c
  fs_args:
    s3_additional_kwargs:
        ServerSideEncryption: "aws:kms"
        sse-kms-key-id: ${credentials.sse-kms-key-id}
would really appreciate it if you were to raise a PR or issue into the project with what you needed?
a
alright, I'll give it a try. thanks!