Created
March 17, 2025 20:58
-
-
Save JamoCA/d2d38c5eaacba400decb21010124b159 to your computer and use it in GitHub Desktop.
How to generate a pre-signed download URL using aws-cfml library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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