Cloud Flashcards
What is the difference between Regions and Availability Zones in AWS?
Regions are geographical areas and availability zones are close proximity data centres within those regions.
What is an Edge Location?
AWS Edge locations are places where data is cached to reduce the latency to the end users.
What is Route 53?
Route 53 is AWS DNS Service
What is AWS Direct Connect?
Direct Connect is a means to connect physical data centres to AWS using dedicated lines.
How does IAM provide access?
IAM uses Groups to which people can be assigned to give access to resources
How are IAM groups defined?
IAM groups are defined using policies which are created using JSON notation
What is CloudFront?
CloudFront is a fast content delivery network (CDN) service that securely delivers data, videos, applications, and APIs to customers globally with low latency and high transfer speeds using Edge Locations.
What is Lambda?
Lambda is an event-driven compute service. Lambda runs code in response to events
What are the 4 types of EC2 instance?
On Demand, Reserved, Spot and Dedicated Hosts are the 4 types of EC2 instance
What is the difference between CloudWatch and CloudTrail?
CloudWatch is about performance where CloudTrail is about auditing.
What is CloudWatch?
CloudWatch monitors your AWS resources and the applications that run on it.
What is CloudTrail?
CloudTrail allows you to view user and resource activity by recording console actions and API calls.
What is DynamoDB?
An AWS NoSQL db
What is API Gateway?
An API gateway is an API management tool that sits between a client and a collection of backend services. An API gateway acts as a reverse proxy to accept all application programming interface (API) calls, aggregate the various services required to fulfil them, and return the appropriate result.
What is Transit Gateway?
AWS Transit Gateway connects VPCs and on-premises networks through a central hub. This simplifies your network and puts an end to complex peering relationships. It acts as a cloud router – each new connection is only made once.
What is GuardDuty?
Amazon GuardDuty is a threat detection service that continuously monitors for malicious activity and unauthorised behaviour to protect your AWS accounts and workloads.
What is an Internet Gateway?
An Internet gateway is a horizontally scaled, redundant, and highly available VPC component that allows communication between instances in a VPC and the Internet
What would you use to get automatic notifications if your account spending goes over a certain amount?
A Billing Alarm will notify you if your account spending goes over a certain amount.
Within IAM in what are users stored and what is used to set permissions?
Groups are used to store users and the users assume the permissions of that group. Group access is determined by JSON notation policies.
What is a credential report?
A credential report is used as a download of all users in your account.
It gives details such as the last use of passwords, when they need changing, whether it has an access key on the account, whether MFA has been enabled etc.
What are the downsides to file-based storage systems?
File-based storage systems must scale out by adding more systems, rather than scale up by adding more capacity.
What are the downsides to Block Storage?
Block storage can be expensive. It has limited capability to handle metadata, which means it needs to be dealt with in the application or database level—adding another thing for a developer or systems administrator to worry about.
What are the downsides to object-based storage?
Objects can’t be modified—you have to write the object completely at once.
Object storage also doesn’t work well with traditional databases, because writing objects is a slow process and writing an app to use an object storage API isn’t as simple as using file storage.
How does the storage of block and object based data differ?
Block-based storage breaks down files into data blocks that can then be saved across multiple systems, object-based storage saves discrete objects as self-contained units in a flat-file system called a bucket.