How to get the size of an S3 bucket in AWS?

How to get the size of an S3 bucket in AWS? Hello Everyone Welcome to CloudAffaire and this is Debjeet. There are multiple ways to get the total size of an S3 bucket. You can get the size of the object recursively and sum all the object's sizes to get the total disk space used by your S3 bucket. But if your bucket is having millions or perhaps billions of objects then this becomes…

0 Comments

S3 multipart upload using AWS CLI with example

S3 multipart upload using AWS CLI with example Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we are going to discuss how to split a large file into multiple files and upload it into an S3 bucket using the multipart feature. We will also compare the speed of different S3 file upload options like native AWS CLI commands like aws s3 cp or aws s3api put-object, upload using multipart and finally upload…

0 Comments

How to query S3 objects using AWS S3 SELECT with example?

How to query S3 objects using AWS S3 SELECT with example? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss how to query S3 objects (CSV, JSON, Compressed) using AWS S3 SELECT with examples. What is AWS S3 SELECT? With Amazon S3 Select, you can use simple structured query language (SQL) statements to filter the contents of an Amazon S3 object and retrieve just the subset of data that you…

1 Comment

How to export a DynamoDB table to S3 bucket using AWS CLI?

How to export a DynamoDB table to S3 bucket using AWS CLI? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we are going to discuss how to export a DynamoDB table to S3 bucket using AWS CLI. You can now export a DynamoDB table to an S3 bucket. To export data from an Amazon DynamoDB table to an Amazon S3 bucket, point-in-time recovery (PITR) must be enabled on the source table. You…

0 Comments

ACL In S3

ACL in S3 Hello Everyone Welcome to CloudAffaire and this is Debjeet In the last blog post, we have discussed Bucket Policy in S3. https://cloudaffaire.com/bucket-policy-in-s3/ In this blog post, we are going to discuss ACL or Access Control List in S3 ACL in S3: You can use ACL or Access Control List for resource-based access policy to manage access to your bucket and objects in it. ACL can only be used for granting access…

0 Comments

Bucket Policy In S3

Bucket Policy in S3 Hello Everyone Welcome to CloudAffaire and this is Debjeet In the last blog post, we have discussed CloudWatch Metrics for S3. https://cloudaffaire.com/s3-cloudwatch-metrics/ AWS S3 provides two types of access control resource-based and user based. In case of resource-based access control, you define the access on S3 resources like bucket and objects. You can implement resource-based access control using the Bucket Policy or ACL. In today’s blog, we are going to…

0 Comments

S3 CloudWatch Metrics

S3 CloudWatch Metrics Hello Everyone Welcome to CloudAffaire and this is Debjeet In the last blog post, we have discussed inventory in S3. https://cloudaffaire.com/inventory-in-s3/ In this blog post, we are going to discuss S3 CloudWatch Metrics. S3 CloudWatch Metrics: AWS S3 provides CloudWatch metrics to effectively monitor your S3 bucket. Metrics help you to understand the usage and performance of your bucket. S3 provides three types of metrics for your bucket Storage Metrics (Free)…

0 Comments

Encryption In S3

Encryption in S3 Hello Everyone Welcome to CloudAffaire and this is Debjeet In the last blog post, we have discussed how to host a static website in S3. https://cloudaffaire.com/host-a-static-website-in-s3/ In this blog post, we are going to discuss encryption in S3. Encryption in S3: To protect your data in S3, you can enable S3 encryption feature. By default, encryption is disabled in S3. You can use encryption for data in-transit using client-side encryption or…

0 Comments

Host A Static Website In S3

Host a static website in S3 Hello Everyone Welcome to CloudAffaire and this is Debjeet In the last blog post, we have discussed Server Access Logging in S3. We have also enabled Server Access Logging for an S3 bucket. https://cloudaffaire.com/server-access-logging-in-s3/ In this blog post, we are going to discuss how to host a static website in S3 bucket. Host a static website in S3: You can host a static website in your AWS S3…

0 Comments

Server Access Logging In S3

Server Access Logging Hello Everyone Welcome to CloudAffaire and this is Debjeet In the last blog post, we have discussed Object Lifecycle Management. We have also configured Lifecycle rule for a S3 bucket. https://cloudaffaire.com/object-lifecycle-management/ In this blog post, we are going to discuss Server Access Logging in S3. We are also going to enable Server Access Logging for an S3 bucket. Server Access Logging: Server Access Logging provides detailed records for the requests that…

0 Comments