AWSexam_1 Flashcards
Invention requires two things
- The ability to try a lot of experiments, and
- Not having to live with the collateral damage of failed experiments
What is a region?
A physical location in the world which consists of 2 or more availability zones.
What is an availability zone?
An availability zone is one or more discrete data centers, each with redundant power, networking and connectivity, housed in separate facilities.
What are edge locations?
Edge locations are endpoints for AWS which are used for catching content. Typically this consists of CloudFront which is Amazon’s CDN.
What is IAM and what is it for?
Identity Access Management = Allows you to manage users and their level of access to the AWS console.
What are the 4 key terms for IAM?
- Users
- end-users such as employees
- Groups
- A collection of users (with certain permissions)
- Policies
- Permission documents
- Roles
- Some have more power than others
Is IAM regional or global?
Everything you do in IAM is GLOBAL
This goes for both managing users and managing policies.
What is the root account (IAM)?
simply the account created when first setting up your AWS account
Important to have two-factor authentication activated for the root account.
What permissions do users have when first created?
NONE. No permission whatsoever. Needs to be added.
but.. new users are assigned Access Key ID & Secret Access Keys when first created (note you only get to see these once)
What does power users access allow?
access to all AWS services EXCEPT the management of groups and users within IAM
In what language are IAM policy documents written?
JSON
Using SAML (Security Assertion Markup Language 2.0), you can give your federated users single sign-on (SSO) access to the AWS Management Console (TRUE or FALSE)?
TRUE
What is S3?
Simple Storage Service
S3 provides developer and IT teams a safe place to store files (across multiple devices)
object-based storage
How big files can you upload to S3?
0 bytes to 5 Terabytes
(unlimited storage but you pay by gigabytes)
What does “S3 is a universal namespace” mean?
that names must be unique GLOBALLY
How are files stored in S3?
in Buckets
What do you receive from S3 when your upload is successful?
a HTTP 200 code
How is the data consistency model in S3?
- Read AFTER write consistency for PUTS of new objects
- can read immediately after write
- Eventual consistency for overwrite PUTS and DELETES (can take some time to propagate)
- if updating or deleting updates, you might get different versions if reading it immediately after but eventually it will be consistent
What does S3 objects consist of?
- Keys
- the name of the object
- Value
- the data (made up of a sequence of bytes)
- Version ID
- important for versioning
- Metadata
- Data about data you are storing (tags etc.)
- Sub-resources
- Access control lists (permissions to access files)
How high availability do you have with S3?
- Built for 99.99 % availability (four 9s)
- Amazon guarantees 99.9 % availability (three 9s)
- and Amazon guarantees 99.999999999 % DURABILITY for S3 information (eleven 9s = your files will not disappear)
BUT depending on the storage tier used.
What are the S3 storage tiers?
- S3 Standard
- 99.99 % availability and 99.999999999 durability
- Stored redundantly across multiple devices in multiple facilities and is designed to sustain the loss of 2 facilities concurrently
- S3 - Infrequently Accessed
- (cheaper than S3)
- For data that is accessed less frequently but requires rapid access when needed
- S3 One Zone infrequently accessed
- low-cost option for infrequently accessed data (but relatively fast retrieval)
- do not require the multiple availability zone data resilience (only in 1 availability zone)
- Availability 99.50 %
- S3 - Intelligent Tiering
- designed for cost-efficiency by automatically moving data to the most cost-effective access tier, without performance impact or operational overhead
- S3 Glacier
- Retrieval times from minutes to hours
- S3 Glacier Deep Archive
- cheapest storage option but used for archival only
- retrieval time of 12 hours is acceptable
What characterises S3 standard?
- 99.99 % availability and 99.999999999 durability
- Stored redundantly across multiple devices in multiple facilities and is designed to sustain the loss of 2 facilities concurrently
What characterises S3 IA?
- S3 - Infrequently Accessed
- (cheaper than S3)
- For data that is accessed less frequently but requires rapid access when needed
What characterises S3 One Zone?
- S3 One Zone infrequently accessed
- low-cost option for infrequently accessed data (but relatively fast retrieval)
- do not require the multiple availability zone data resilience (only in 1 availability zone)
- Availability 99.50 %








































































