-
AWS S3: How to list bucket contents by last modified date using CLI?
Introduction
AWS’
s3api
CLI can be used to filter objects in a S3 bucket based on theLast Modified Date
using the--query
filter.In this article, we will look at how you can leverage this functionality to only return the objects that you need.
-
AWS S3 Server Side Encryption: What it is and How it works?
Introduction
AWS Simple Storage Service (S3) is one of the most widely used object storage solutions. With S3, you can store files, photos, videos, applications, websites, databases, backups, logs, and many other types of data online without worrying about performance issues, security breaches, or hardware failures.
Data encryption is a critical operation to protect sensitive data from unauthorized access. Yet, implementing encryption is not an easy job. Fortunately, AWS server-side encryption (SSE) simplifies the whole encryption process, including storing and managing encryption keys and helps protect your data stored in AWS S3 buckets.
This article explains the concepts around S3 encryption, S3 server-side encryption, how SSE works, and different approaches for SSE.
-
AWS S3 Delete Marker: What it is and How it works?
Introduction
AWS Simple Storage Service (S3) is one of the most widely used object storage solutions. With S3, you can store files, photos, videos, applications, websites, databases, backups, logs, and many other types of data online without worrying about performance issues, security breaches, or hardware failures.
Although Amazon S3 is highly reliable, by default, it does not protect against accidental data loss or malicious destruction caused by authorized users. To protect yourself from these scenarios, you must leverage advanced S3 features like Object Versioning and Delete Markers.
-
How to assume an IAM role using AWS Boto3 and Python
Introduction
AWS Secure Token Service (STS) is a service provided by AWS that enables you to request temporary credentials with limited privilege for AWS IAM users. In this article, we will learn how to use the AWS Boto3 with STS to temporarily assume a different role.
-
How to read and write files stored in AWS S3 using Pandas?