0
0
AWScloud~30 mins

Why S3 matters for object storage in AWS - See It in Action

Choose your learning style9 modes available
Why S3 matters for object storage
📖 Scenario: You are working for a small company that wants to store and manage files like photos, videos, and documents in the cloud. You need to set up a simple storage system that is reliable, scalable, and easy to use.
🎯 Goal: Build a basic AWS S3 bucket configuration to understand why S3 is important for object storage and how to create and configure a bucket.
📋 What You'll Learn
Create an S3 bucket with a specific name
Set the bucket to block all public access for security
Enable versioning on the bucket to keep track of changes
Add a tag to the bucket for identification
💡 Why This Matters
🌍 Real World
Companies use S3 to store files safely and access them from anywhere. Blocking public access and enabling versioning helps protect data and track changes.
💼 Career
Knowing how to configure S3 buckets is essential for cloud engineers and developers working with AWS storage solutions.
Progress0 / 4 steps
1
Create an S3 bucket
Create an AWS S3 bucket named my-company-storage using the AWS CLI command aws s3api create-bucket with the region us-east-1.
AWS
Need a hint?

Use the aws s3api create-bucket command with the --bucket and --region options.

2
Block all public access
Configure the bucket my-company-storage to block all public access by applying the public access block settings using the AWS CLI command aws s3api put-public-access-block.
AWS
Need a hint?

Use aws s3api put-public-access-block with all four block options set to true.

3
Enable versioning on the bucket
Enable versioning on the bucket my-company-storage using the AWS CLI command aws s3api put-bucket-versioning with the status set to Enabled.
AWS
Need a hint?

Use aws s3api put-bucket-versioning with Status=Enabled.

4
Add a tag to the bucket
Add a tag to the bucket my-company-storage with the key Project and value CloudStorage using the AWS CLI command aws s3api put-bucket-tagging.
AWS
Need a hint?

Use aws s3api put-bucket-tagging with the correct tag key and value.