Skip to content

Instantly share code, notes, and snippets.

@JamoCA
Created March 17, 2025 20:58
Show Gist options
  • Save JamoCA/d2d38c5eaacba400decb21010124b159 to your computer and use it in GitHub Desktop.
Save JamoCA/d2d38c5eaacba400decb21010124b159 to your computer and use it in GitHub Desktop.
How to generate a pre-signed download URL using aws-cfml library
<cfscript>
// configure awscfml CFC for Wasabi S3
// https://github.com/jcberquist/aws-cfml
initConfig = {
"awskey": #accessKeyId#
,"awsSecretKey": #secretAccessKey#
,"constructorArgs": [
"s3": [
"host": "s3.#region#.wasabisys.com"
]
]
};
aws = new awscfml.aws(argumentCollection=initConfig);
// identify & read local file
filePath = "d:\files\temporaryFile.zip";
zipFileData = fileReadBinary(filePath);
remoteObjectKey = "temp/MyZipFile.zip";
// configure file data for upload
uploadArgs = [
"bucket": #bucketName#
,"objectKey": remoteObjectKey
,"fileContent": zipFileData
,"ContentType": fileGetMimeType(filePath)
];
// perform upload
apiResponse = aws.s3.putObject(argumentcollection=args);
// dump API response
writedump(var=apiResponse, label="S3 putObject apiResponse");
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment