S3 Flashcards

1
Q

What is S3?

A

S3 is a highly-durable hash table in the cloud that provides highly scalable objects storage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the best types of files to store in S3?

A

pictures, .css, .html, etc

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What’s the maximum file capacity of S3?

A

5 TB

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What’s the maximum storage capacity in S3?

A

Unlimited

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What’s the maximum bandwidth S3 provides?

A

Infinite

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How data consistency work for S3?

A

READ after WRITE consistency for PUTS on new objects

Eventual Consistency for overwrite PUTS and DELETES (can take some time to propagate)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the 6 main S3 features?

A
Tiered Storage Available
Lifecycle Management
Versioning
Encryption
Secure your data using Access Control Lists and Bucket Policies
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the 7 types of S3 Storage classes?

A
Standard
IA (infrequently accessed)
One Zone - IA
Intelligent Tiering
Glacier
Glacier Deep Archive
Outposts
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the main benefits of S3 Standard?

A

Provides 99.99% availability

99.99999999999% durability (11 9s)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What’s the usage of S3 IA (infrequently accessed)?

A

For data that is less frequently but requires rapid access when needed. Lower fee them standard but you’re charged a retrieval fee

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What’s a common scenario for S3 One Zone - IA

A

For when you want a lower cost option for infrequently accessed data but don’t require AZ data resilience

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the usage for S3 Intelligent Tiering

A

Designed to optimize costs by automatically moving data to the most cost-effective access tier without performance impact or operational overhead

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What’s S3 Glacier?

A

Low-cost storage class for data archiving. Retrieval times configurable from minutes to hours

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What’s S3 Glacier Deep Archive?

A

Lowest-cost storage class where a retrieval time of 12 hours is acceptable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are the benefits of S3 Outposts?

A

It delivers object storage to on-premises AWS Outposts environments

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are the 6 S3 charge Policies?

A
  1. Storage
  2. Requests
  3. Storage Management Pricing
  4. Data Transfer Pricing
  5. Transfer Acceleration
  6. Cross-Region Replication Pricing
17
Q

How S3 Transfer Acceleration works?

A

It enables fast, easy and secure transfer of files over long distances between your end users and S3 buckets by taking advantage of Amazon CloudFront’s globally distributed Edge Locations. As the data arrives at an edge location, data is routed to Amazon S3 over an optimized network path

18
Q

What is Cross-Region Replication?

A

Allows you to have 2 buckets one being the replication of the other.

19
Q

How to restrict bucket access?

A

By Implementing:
Bucket Policies: applies across the whole bucket
Object Policies: applies to individual files
IAM policies to Users & Groups: Applies to users & Groups

20
Q

What’s the downside of hosting static websites in S3?

A

It doesn’t provide HTTPS.

21
Q

How to make entire buckets public?

A

You can use the buckets policies to make the entire S3 buckets public. Just uncheck all boxes that disallow public access.

22
Q

What types of sites can be stored in S3? Which one can’t?

A

Static websites can be stored but dynamic sites can’t be hosted because they require database connections such as WordPress.

23
Q

What’s S3 versioning?

A

Stores all versions of an object including all WRITES you did and even if you DELETE an object

24
Q

What can you do once enabling versioning in S3?

A

You can only suspend versioning, never disable it

25
Q

How to improve the security layer over S3 versioning?

A

By applying MFA to prevent delete capability