Storage Aliases

Storage Aliases

Storage aliases are a premium feature that allows you to use Filestack transformations and other add-ons with files not uploaded through Filestack. Storage aliases can be used with any of our supported cloud storage providers and, once configured, work as any other Filestack URL but require prepending your API key to the alias:

https://cdn.filestackcontent.com/APIKEY/src://STORAGE-ALIAS/PATH-TO-YOUR-FILE

If you are using the S3 bucket as a source for your storage aliases, please remember to add the proper IAM Policy. Please find the minimal working example of it presented below. Make sure that you replaced YOUR_BUCKET_NAME with the name of your bucket.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "s3:GetObject"
            ],
            "Resource": "arn:aws:s3:::YOUR_BUCKET_NAME/*"
        }
    ]
}

Please contact sales if you are interested in setting up storage aliases for your application.