DEV Community

Cover image for AWS-S3 Bucket creation access and Life cycle policy
Kannan
Kannan

Posted on

AWS-S3 Bucket creation access and Life cycle policy

Amazon S3 to store and retrieve any amount of data at any time, from anywhere.An object consists of a file and optionally any metadata that describes that file.

  • Amazon S3 is object storage built to store and retrieve any amount of data from anywhere. S3 is a simple storage service that offers industry leading durability, availability, performance, security, and virtually unlimited scalability at very low costs.

  • You can create up to 100 buckets in each of your AWS cloud accounts,If needed, you can request up to 1,000 more buckets by submitting a service limit increase.

  • Lets see how to creat a S3 Bucket and upload file.

Image description

Image description

Image description

Image description

Image description

Image description

Image description

Image description

Image description
-On the above we have seen to view the upload files via presigned URL.

  • Another way to view the files
    select the file > permissions > Uncheck block all public access.

  • Bucket policy > edit bucket policy >Policy generator.

Image description

  • Open as new tab to generate policy, we have select the s3 bucket policy followed by "Get Object" and copy the Amazon Resource Name(ARN) from the uploaded file.

Image description

Image description

  • Once policy generated copy the policy and paste on the Bucket policy >policy >save.

Image description

  • Via file "object URL" You can access the file on public.

Image description

  • AWS S3 Object storage classes, by default comes with "Standard" you can modify via Action >Edit storage class.

Image description

  • If you modified the local file and uploaded to S3 you want version basis need to enable "Bucket versioning" Properties > Bucket versioning >Edit.

Image description

  • Once you enabled the versioning able suspend (not to disable)
    Image description

  • the file1.txt was edited locally and uploaded to S3 bucket to see the versioning.

Image description

Life cycle rule

  • A lifecycle policy consists of one or more rules that determine which images in a repository should be expired.

  • Lifecycle policies help manage and automate the life of your objects within S3, preventing you from leaving data unnecessarily available. They make it possible to select cheaper storage options if your data needs to be retained, while at the same time, adopting additional security control from Glacier.

  1. Click on your bucket.
  2. Click on Management tab.
  3. Click on Create lifecycle rule.
  4. First, give a name for the rule.
  5. Then choose a rule scope. ...
  6. If you choose to apply the rule to all objects then choose “Apply to all objects in the bucket”. ...
  7. You can specify the transition for each option.

Image description

Image description

Image description

Image description

Image description

Top comments (0)