Book Image

Amazon Web Services Bootcamp

Book Image

Amazon Web Services Bootcamp

Overview of this book

AWS is at the forefront of Cloud Computing today. Businesses are adopting AWS Cloud because of its reliability, versatility, and flexible design. The main focus of this book is teaching you how to build and manage highly reliable and scalable applications and services on AWS. It will provide you with all the necessary skills to design, deploy, and manage your applications and services on the AWS cloud platform. We’ll start by exploring Amazon S3, EC2, and so on to get you well-versed with core Amazon services. Moving on, we’ll teach you how to design and deploy highly scalable and optimized workloads. You’ll also discover easy-to-follow, hands-on steps, tips, and recommendations throughout the book and get to know essential security and troubleshooting concepts. By the end of the book, you’ll be able to create a highly secure, fault tolerant, and scalable environment for your applications to run on.
Table of Contents (16 chapters)

Objects


Amazon S3 allows us to store data in the form of objects inside the bucket. It stores objects in key-value form, where the object is assigned with a unique key and the value is the object. S3 doesn't restrict to store the amount of data on the bucket. The size of the objects can be up to 5 terabytes. Each object is assigned a URL, which can be accessed via the HTTP or HTTPS protocol. We can manage the access control list at the object level also.

Amazon S3 stores objects in a flat structure. It doesn't have any hierarchical structure where we can group objects under the bucket. But Amazon S3 Management Console provides support for displaying objects under folders and nested subfolders. Amazon Management Console distinguishes the folders with / in the object's key name. For example, if we provide the object key as PACKT/chapter4.txt, then it will show PACKT as the folder and below that chapter4.txt as the object.

Each S3 object contains the following:

  • Data: This is the actual object
  • Key...