Answers for "create S3 directories with AWS SDK"

0

create S3 directories with AWS SDK

const Obj = new AWS.S3().putObject({
 
  Key: `EmptyFolder/`, // This should create an empty object in which we can store files 
  Bucket: `${bucketName}`,
});
Posted by: Guest on August-23-2021

Browse Popular Code Answers by Language