AWS Object Storage and CDN - S3, Glacier and CloudFront Flashcards
what is the URL for S3 static website hosting?
BUCKET-NAME.s3-website-AWS-REGION.amazonaws.com
What is the S3 consistency model for new objects and edited/deleted objects?
Read after write consistentcy for PUTS of new objects
Eventual consistency for overwrite PUTS and DELETES (can take time to propagate)
S3 has what consistency model for PUTS of new objects
Read After Write Consistency
What is AWS Storage Gateway?
It’s an on-premise virtual appliance that can be used to cache S3 locally at a customers site.
What is S3 One Zone - IA?
This is a Storage Tier that provides a lower cost option for infrequently accessed data but does not provide multiple Availability Zone data resilience (this is a replacement for Reduced Redundancy Storage)
You have been asked by your company to create an S3 bucket with the name “acloudguru1234” in the EU West region. What would be the URL for this bucket?
https://s3-eu-west-1.amazonaws.com/acloudguru1234
What is Amazon Glacier?
An AWS service designed for long term data archival.
What is the availability on RRS?
99.99%
S3 has eventual consistency for which HTTP Methods?
overwrite PUTS and DELETES
One of your users is trying to upload a 7.5GB file to S3 however they keep getting the following error message - “Your proposed upload exceeds the maximum allowed object size.”. What is a possible solution for this?
Design your application to use the multi-part upload API for all objects
What is the durability on RRS?
99.99%
What is the durability on S3?
99.999999999%
What is the availability on S3?
99.99%
What is the minimum file size that I can store on S3?
1 Byte
do individual objects inherit bucket permissions?
no, object permissions must be set per object
what code is received for a successful upload to S3?
successful uploads will return an HTTP 200 code
how can access to buckets be controlled?
using bucket access control lists or bucket policies
what are the default permissions on buckets and their objects?
by default buckets and all of their objects are private
once versioning is turned on for a bucket can it be disabled?
No, it can be suspended but not disabled
where must versioning be enabled for cross regional replication to work
on both the source and destination buckets
what are the requirements for lifecycle rules transitioning from S3 to S3-IA
object must be at least 128kb and it must be at least 30 days after the creation date of the object
what are the requirements for lifecycle rules transitioning from S3-IA to Glacier
it must be at least 30 days after the object has transitioned to S3-IA (if relevant)
what transitions are available using S3 lifecycle management?
objects can be transitioned to S3-IA, to Glacier, or deleted. These actions can be taken on current objects or on previous versions
are cloudfront distributions limited to a single origin
No, you can have multiple origins in a distribution