1 Answer
- Newest
- Most votes
- Most comments
0
Here is an example of adding meta data:
s3_task = S3ExportTaskDefinition(
input_url = self.src_file_path,
bucket = "foo",
key = "bar",
user_metadata = {
"key": "value",
"foo": "bar"
}
)
answered 4 years ago

Hmmm that is what i did, i will double check thanks