How to setup AWS S3 Bucket?

What is AWS S3?

  • S3 or Simple Storage Service is a fully managed(Serverless) object storage service provided by AWS.
  • S3 allows to store any type and amount of data from anywhere in the world provided you are connected with internet.
  • To store any object/data in S3, first you need to create a S3 bucket.
  • S3 Buckets are ideally container for the objects. They can store any number and amount of data.
  • S3 bucket can also be used to host static websites.

So let’s start to setup the S3 bucket.

Step1: Login to AWS Management Console

  • Sigin to the AWS Console
  • If you don’t have AWS account then first create an account

aws-signin.png

Step2: Search S3 Service

  • Click on the search bar and type > S3
  • Then click on S3 service option

S3.png

Step3: Create S3 Bucket

  • If you are creating S3 bucket first time, then it will look something like this.

s3-bucket

  • And you have already created a S3 bucket then it’ll look something like this.

s3-bucket-create

  • Now click on Create Bucket

Step4: Choose bucket name

  • S3 bucket name should unique globally. No one can create the same name bucket even on the different region until the bucket will not be deleted.
  • Most probly you should name the S3 Bucket with you domain name. e.g skillshats-production or skillshats-s3-bucket*.
  • After the Bucket name, choose a region in which you would like the bucket to be created. Here I’m choosing the default one.
  • But mostly probably you should choose the region to the customer location to have optimum latency.

bucket-name

Step5: Create Bucket

  • After putting the name and region, let’s leave all other details to default and scroll down the page to find create Bucket button.
  • Click on Create Bucket

bucket-create

  • In a matter of seconds, your bucket is created and you can see the success message.
  • Also the S3 bucket that you just created.

bucket-list

Congratulation !!!
You have successfully created the first AWS S3 Bucket.

Learn More:

Explore More AWS Posts

  • AWS
  • 3 min read
Mastering Boto3: The AWS SDK for Python - Tips and Tricks

Learn how to use Boto3, the AWS SDK for Python, to interact with AWS services. From clients to resources to wrappers, tips and examples to boost your…

Read More
  • AWS
  • 11 min read
Optimizing Boto3: Wrapping AWS SDK for Python for Better Performance

Learn how to wrap Boto3, the AWS SDK for Python, to optimize performance and add custom functionality. Tips, examples and best practices to boost you…

Read More
  • AWS
  • 6 min read
Streamline CAS Enrollment with CloudFormation and boto3: A Comprehensive Guide

Get a comprehensive guide on how to streamline CAS enrollment with AWS CloudFormation & boto3, automate resource provisioning and manage permissions …

Read More
  • AWS
  • 8 min read
AWS CloudFormation and boto3: The ultimate guide to enrolling in CAS and checking permissions

Learn how to automate CAS enrollment with AWS CloudFormation and check permissions using boto3 for efficient resource provisioning and management.

Read More
  • AWS
  • 3 min read
How to delete AWS S3 bucket?

You can delete an empty Amazon S3 bucket.

Read More
  • AWS
  • 2 min read
View the S3 Bucket Object

A newly created bucket is always private by default and all objects belonging to the bucket is private.

Read More