New Series: Going Beyond the Basics of Using AWS S3 in CFML

Posted 6 May 2020

Amazon Web Services Simple Storage Service (S3) is an amazing service. Super fast, super reliable, and cheap, it’s often referred to as the "file storage of the Web." On an average day and in a single AWS region, S3 will handle 60 terrabytes of data transfer per second. It’s the backbone — and data lake — of many companies. CFML engines have long made it simple to utilze S3 for file storage. I’ve written about reading files from and writing files to S3 from CFML before.

There is so much more to S3 than just file storage, however. This new series will cover how to utilize some of that additional functionality from within our CFML runtimes. In this series, I’ll cover:

To do any of this, we’ll need to use the AWS Java SDK as this functionality isn’t currently available in our CFML runtimes. If you don’t already have the AWS Java SDK added to your CFML runtime, please see my post on what AWS .jar files to add and where to add them in your CFML runtime.

The code for all of these posts can be found in my AWSPlaybox GitHub repo.

Finally, it’s important to note that with the upcoming release of Adobe ColdFusion 2020, you will be able to do all of the above items natively within Adobe ColdFusion 2020. If you’re running Adobe ColdFusion 2018, 2016, or Lucee, you’ll need to use the AWS Java SDK to do the things I’ll talk about in this series.

Categories: AWS ColdFusion