8 - The Core Storage Services Flashcards
What is the most valuable asset for many organizations?
Their data
What is Amazon’s flagship cloud storage service?
Simple Storage Service (S3)
What does S3 allow you to do?
Store and retrieve unlimited amounts of data
What is S3 Glacier used for?
Long-term archiving of infrequently accessed data
What does AWS Storage Gateway do?
Seamlessly moves data between on-premises servers and AWS S3
What is the purpose of the AWS Snow Family?
Physically move massive amounts of data to or from S3
What is an object in S3?
A file stored on disks in AWS data centers
What is the maximum size of an object in S3?
5 TB
What is the term used for the filename of an object in S3?
Key
What must a bucket name be in S3?
Globally unique and between 3 and 63 characters long
How are objects organized in S3?
In a flat filesystem within buckets
What happens when you create an S3 bucket?
You must assign it a globally unique name
What is the cost structure for S3?
Free for uploading data, charges apply for downloading and storage
What is durability in the context of S3?
The likelihood that an object will not be lost over a year
What is the durability percentage of the STANDARD storage class?
99.999999999%
What storage class is recommended for frequently accessed objects?
STANDARD
What is the availability percentage of the ONEZONE_IA storage class?
99.5%
What is GLACIER storage class designed for?
Long-term archiving of rarely accessed objects
What is the retrieval time for objects in GLACIER?
1 minute to 12 hours
What does the INTELLIGENT_TIERING storage class do?
Automatically moves objects to the most cost-effective storage tier
What are the three methods of controlling access to S3 objects?
- Bucket policies
- User policies
- Bucket and object access control lists
What is a bucket policy?
A resource-based policy applied to a bucket to grant access
What is server-side encryption in S3?
S3 encrypts the object when created and decrypts it upon retrieval
What is client-side encryption in S3?
You encrypt the data before uploading it to S3