AWS Account
- AWS Free tier account: for learning purposes with
- some services free for 12 months
- always free services
- free trails
- To create a free tier account Refer Here
- After your account is created. To login Refer Here
AWS Simple Storage Service (S3)
- This is a blob storage service offered by AWS
- We can use S3 to store blobs (any file)
- S3 can be considered as a storage without any file system
- The files are accessible over https urls
- The unit of creation in s3 is bucket.
- Each bucket needs to have a unique name across all aws accounts
- Bucket naming conventions Refer Here
Create an S3 bucket
- Region: singapore

- name: lts3demodec23







Upload some files to s3 bucket and access them
- Select the bucket and upload






- Now lets try to access the files over https


- url:
https://lts3demodec23.s3.ap-southeast-1.amazonaws.com/three.mp4 - url pattern:
https://<bucket-name>.s3.<region-code>.amazonaws.com/<file-name>
