Cloud Flashcards

1
Q

What is the difference between Regions and Availability Zones in AWS?

A

Regions are geographical areas and availability zones are close proximity data centres within those regions.

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

What is an Edge Location?

A

AWS Edge locations are places where data is cached to reduce the latency to the end users.

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

What is Route 53?

A

Route 53 is AWS DNS Service

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

What is AWS Direct Connect?

A

Direct Connect is a means to connect physical data centres to AWS using dedicated lines.

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

How does IAM provide access?

A

IAM uses Groups to which people can be assigned to give access to resources

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

How are IAM groups defined?

A

IAM groups are defined using policies which are created using JSON notation

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

What is CloudFront?

A

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.

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

What is Lambda?

A

Lambda is an event-driven compute service. Lambda runs code in response to events

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

What are the 4 types of EC2 instance?

A

On Demand, Reserved, Spot and Dedicated Hosts are the 4 types of EC2 instance

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

What is the difference between CloudWatch and CloudTrail?

A

CloudWatch is about performance where CloudTrail is about auditing.

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

What is CloudWatch?

A

CloudWatch monitors your AWS resources and the applications that run on it.

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

What is CloudTrail?

A

CloudTrail allows you to view user and resource activity by recording console actions and API calls.

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

What is DynamoDB?

A

An AWS NoSQL db

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

What is API Gateway?

A

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.

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

What is Transit Gateway?

A

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.

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

What is GuardDuty?

A

Amazon GuardDuty is a threat detection service that continuously monitors for malicious activity and unauthorised behaviour to protect your AWS accounts and workloads.

17
Q

What is an Internet Gateway?

A

An Internet gateway is a horizontally scaled, redundant, and highly available VPC component that allows communication between instances in a VPC and the Internet

18
Q

What would you use to get automatic notifications if your account spending goes over a certain amount?

A

A Billing Alarm will notify you if your account spending goes over a certain amount.

19
Q

Within IAM in what are users stored and what is used to set permissions?

A

Groups are used to store users and the users assume the permissions of that group. Group access is determined by JSON notation policies.

20
Q

What is a credential report?

A

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.

21
Q

What are the downsides to file-based storage systems?

A

File-based storage systems must scale out by adding more systems, rather than scale up by adding more capacity.

22
Q

What are the downsides to Block Storage?

A

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.

23
Q

What are the downsides to object-based storage?

A

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.

24
Q

How does the storage of block and object based data differ?

A

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.