Deck 2 Flashcards
How long does an object need to sit in S3 Standard storage classes before they can be moved down to the infrequent access tier?
30 days (even using a lifecycle policy)
What is the name of AWS’ serverless user management tool, and what does it do in a few words?
Cognito User Pools, which provides a user directory you can use for your application
When is using Route 53 weighted routing not a good idea for testing blue/green application deployments?
When DNS caching will have a significant effect on the rollout.
Which applications would you use in your stack if you want to buffer or throttle the traffic coming into your system?
Why?
Amazon API Gateway, Amazon SQS and Amazon Kinesis
API Gateway has a “bucket” of authentication tokens it can give out, which naturally throttles it.
SQS is a queuing system so creates a buffer.
Kinesis is fully managed and scalable, so it will always able to handle the queries (why this means you can consider it throttled I don’t know).
Of SNS and SQS, which applications is capable of queuing requests and which isn’t?
SQS can queue requests - SNS cannot.
Which tools would you use to make sure only permitted EC2 instances can communicate with an EFS file system?
An IAM policy on the file system
EFS Access Points
VPC security groups
What are GuardDuty’s data sources?
CloudTrail Logs
VPC Flow Logs
DNS Logs
What is Amazon CloudFront?
AWS’ Global CDN (Content Distribution Network)
What’s the best way to sync S3 data across regions?
Copy data from source to destination using the AWS S3 sync command
Does S3 Cross-Region replication work to copy objects already in S3?
No - cross region replication only works on data that is added after the replication is enabled.
Which services can use VPC Gateway Endpoints?
DynamoDB and Amazon S3
Which services would you use to build a highly available solution to store and reliably process key-value pairs data that is collected once a minute?
Why?
Lambda - means you only pay when code is being executed
DynamoDB - key:value pair database with high performance and high availability
How do you modify a launch configuration after you’ve created it?
You can’t - you need to create a new one.
Can you copy items directly into AWS Glacier?
No - you need to put it into standard S3 first, and then move it across.
What would you do to provide good protection against items in your S3 buckets being deleted?
Enable versioning and MFA delete
What can S3 bucket policies do?
Allow public access to the bucket
Force objects to be encrypted at upload
Grant access to another account (cross account)
Can S3 buckets replicate across accounts?
Yes they can.
S3 Replications - What are the use cases for cross region replication?
Compliance, lower latency access, replication across accounts
S3 Replications - What are the use cases for same region replication?
Log aggregation, live replication between production and test accounts
What are the six tiers of S3 storage class?
S3 Standard S3 Standard IA (Infrequent Access) S3 One Zone IA S3 Intelligent Tiering Glacier Glacier Deep Archive
What are the retrieval options for AWS Glacier storage?
Expedited: 1-5 minutes
Standard: 3-5 hours
Bulk: 5-12 hours
What are the retrieval options for AWS Glacier Deep Archive storage?
Standard: 12 hours
Bulk: 48 hours
What is the minimum storage duration for AWS Glacier items?
90 days
What is the minimum storage duration for AWS Glacier Deep Archive items?
180 days