Skip to content

Instantly share code, notes, and snippets.

@DevoKun
Created March 6, 2019 13:42
Show Gist options
  • Select an option

  • Save DevoKun/291832687f9448678c67be9f1868a35e to your computer and use it in GitHub Desktop.

Select an option

Save DevoKun/291832687f9448678c67be9f1868a35e to your computer and use it in GitHub Desktop.
Presign an S3 URL
aws s3 presign s3://my-bycket/filename.csv --expires-in 86400
# secs = mins = hours = days
# 3600 = 60 = 1
# 7200 = 120 = 2
# 43200 = 720 = 12
# 86400 = 1440 = 24 = 1
# 172800 = 2880 = 48 = 2
# 345600 = 5760 = 96 = 4
# 604800 = 10080 = 168 = 7 (max)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment