Cloud Practitioner Flashcards

1
Q

What is the most used service?

A

EC2

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

What does EC2 stand for?

A

Elastic Cloud Compute

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

What is main advantage of Lambda?

A

You don’t have to worry about servers, just your code

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

What does S3 stand for?

A

Simple Storage Service

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

What does RDS stand for?

A

Relational Database Service

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

What is AWS’s non-relational DB?

A

DynamoDB

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

What is AWS’s DNS service called?

A

Route53

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

What does SQS stand for?

A

Simple Queue Service

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

What is AWS’s CDN called?

A

CloudFront

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

Three main reasons to move to AWS?

A

pricing, scalability, location

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

What does EBS stand for?

A

Elastic Block Store

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

What is Elastic Beanstalk?

A

Platform As A Service (PAAS) - Similar to GoDaddy, where you upload website content but don’t worry about servers.

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

What is an availability zone?

A

One or more physical data centers in a close location.

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

What is a region?

A

A physical location which consists of one or more availability zones.

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

What is an edge location?

A

AWS endpoints used for caching more frequently accessed content.

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

Why would you choose a particular region?

A

Data sovereignty laws, latency to end users, services available in that particular region

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

What are the five support plans?

A

Basic, Developer, Business, Support API, Enterprise

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

What is Basic support?

A

Free but no tech support

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

What is Developer support level?

A

For experimenting with AWS, $29/month but scales with usage, dedicated support contact.

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

What is Business support level?

A

24 hour support w/1hr response time for urgent issues, Access to Trusted Advisor, Access to Support API, $100/month but scales with usage.

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

What is Enterprise support level?

A

$15k/month and scales with usage, for mission-critical apps, Includes TAM (Technical Account Manager) which acts as go-between, 15 min response time for critical issues.

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

Are key pairs global?

A

No, they are unique to each region.

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

How would you monitor for a cost threshold?

A

Using Cloudwatch, you would create a billing alarm.

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

How do you grant access to various resources?

A

Using IAM

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

Is IAM region-specific?

A

No, it is global

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

What does IAM stand for?

A

Identity Access Management

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

What are the three ways of accessing AWS?

A

Programmatic, AWS Management Console, using the SDKs

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

What is the raw format of a policy?

A

JSON

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

What is the difference between object-based and block-based storage?

A

Object-based is for storing files, block-based is for OS, etc

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

What’s the max size for S3?

A

5TB

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

What does S3 being a universal namespace mean?

A

Bucket names must be globally unique.

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

How do you verify S3 bucket upload was successful?

A

HTTP 200

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

What’s important to know when uploading a file to S3 and then attempting to read immediately?

A

If you upload a new file, you will be able to read it immediately knowing it will match what was just uploaded. If you upload an updated version of an EXISTING file or delete an EXISTING file, changes can take time to propagate and you might not be able to immediately be able to read the most up-to-date version of the file.

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

What is S3 availability?

A

built for 99.99%, guaranteed 99.9%

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

What is the guarantee for S3 file durability?

A

99.99999999999 (11 9s)

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

How do you control access for files in S3?

A

ACLs

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

How do you control access at the bucket level?

A

Bucket policies

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

What are the seven storage classes?

A

S3 Standard, S3 – IA, S3 One Zone – IA, S3 – Intelligent Tiering, S3 Glacier, S3 Glacier Deep Archive, S3 Outposts

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

What is S3 Standard?

A

primary high performance storage

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

What is S3 One Zone - IA?

A

Lower cost option for IA when you don’t need multiple availability zones.

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

What is S3 – Intelligent Tiering?

A

Uses machine learning to choose best suited access tier.

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

What is S3 Glacier?

A

Low cost for archiving with configurable retrieval times.

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

What is S3 Glacier Deep Archive?

A

Very low cost for when 12+ hour access time is acceptable.

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

What is S3 Outposts?

A

Object storage in on-prem AWS environments

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

How are you charged for S3?

A

Storage, Requests, Storage Management Pricing, Data Transfer Pricing, Transfer Acceleration, Cross Region Replication

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

What is S3 Transfer Acceleration?

A

Takes advantage of CloudFronts global edge locations for optimization.

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

What is the format of an S3 bucket URL?

A

S3, region name, .amazonaws.com/ bucketname.

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

What are the three main global services (not region-specific)?

A

S3, Route53, IAM

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

Where can an S3 bucket exist?

A

Must exist in one region only

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

How can you replicate content across more than one region?

A

By using Cross Region Replication

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

What are the three ways to control S3 bucket access?

A

Bucket Policies (applies to entire bucket), Object Policies (applies to each file), IAM Policies to control access for specific users and groups

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

What do you have to do in order to be able to make an entire S3 bucket public?

A

Uncheck “block all public access” in the bucket permissions and then add a bucket policy that grants public access to the entire bucket.

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

Why do many companies put static websites on S3?

A

Because it scales automatically and can handle a large amount of requests.

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

What is S3 Versioning?

A

Stores all versions of an object, cannot be undone (only suspended), great for backup, integrates with lifecycle routines (automatically archiving to Glacier for example), can require MFA for extra layer of file deletion protection

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

What is Distribution?

A

Name given to a CDN which consists of a series of Edge Locations

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

What are the two types of CloudFront distributions?

A

Web Distribution and RTMP which is used for flash media streaming

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

Are edge locations read-only?

A

No, read and write

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

How long is a file cached at an edge location?

A

For the length of the TTL

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

What is the main downside of clearing cached files from edge locations?

A

You will be charged.

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

What are the four types of EC2 pricing models?

A

On-demand, Reserved, Spot, Fixed

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

What is the On-demand EC2 pricing model?

A

You’re charged by the second

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

What is the Reserved EC2 pricing model?

A

You commit to a 1 or 3 yr. term – he more you pay up front, the more discount you get. Cheaper than On-demand

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

What is the Spot EC2 pricing model?

A

You to place a bid for the price you’re willing to pay

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

What is the Fixed EC2 pricing model?

A

Allows you to have dedicated host within AWS to satisfy software licensing requirements etc

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

What are the three types of Reserved EC2 pricing?

A

Standard, Convertible, Scheduled Reserve Instances

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

What is the Standard Reserved EC2 pricing type?

A

Gives you up to 75% discount from on-demand but you’re locked into a specific instance type

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

What is the Convertible Reserved EC2 pricing type?

A

Only a 54% discount but you get ability to change instance type

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

What is the Scheduled Reserve Instances EC2 pricing type?

A

Allows you to reserve time windows

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

What is the Scheduled Reserve Instances EC2 pricing type?

A

Allows you to reserve time windows

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

What is the mnemonic for remembering EC2 instance types?

A

FIGHT DR MCPXZ AU

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

What is Elastic Bean Stalk?

A

Allows you to create storage volumes and attach them to EC2 instances. You can create file systems or databases on them.

72
Q

What are the four EBS types?

A

General Purpose SSD (gp2, gp3), Provisioned IOPS SSD (io1, io2, io2 Block Express), Throughput Optimized HDD (st1), Cold HDD (sc1)

73
Q

What is EBS Throughput Optimized HDD?

A

A low-cost HDD designed for frequently accessed, throughput-intensive workloads.

74
Q

What is EBS Cold HDD?

A

The lowest-cost HDD design for less frequently accessed workloads. Good for file servers.

75
Q

What is EBS General Purpose SSD?

A

Provides a balance of price and performance. Recommended for most workloads.

76
Q

What is EBS Provisioned IOPS SSD?

A

High performance for mission-critical, low-latency, or high-throughput workloads.

77
Q

How are you charged for the termination of a spot EC2 instance?

A

If Amazon terminates a Spot EC2 instance, you will not be charged for the full hour but if you terminate it yourself, you will be.

78
Q

What’s a VPC?

A

A “virtual data center” in the cloud

79
Q

How does an EC2 instance normally exist inside of a VPC?

A

Within a subnet which has been created inside the VPC

80
Q

What is the scope of a subnet within AWS?

A

It exists entirely in one availability zone, cannot span zones.

81
Q

Where does a route table typically exist?

A

One per VPC

82
Q

What are the two main reasons to use roles?

A

Much more secure, easier to manage than using access key IDs/secret access keys

83
Q

What is the scope of roles?

A

They are global and span across all regions

84
Q

What are the three types of load balancers?

A

Application Load Balancer, Network Load Balancer, Classic Load Balancers, Gateway Load Balancers

85
Q

What is an Application Load Balancer for?

A

Makes intelligent decisions by operating at layer 7 (optimizes for protocols etc)

86
Q

What is a Network Load Balancer for?

A

Extreme performance but requires static IPs

87
Q

What are Classic Load Balancers for?

A

Keeping costs low

88
Q

What are Gateway Load Balancers for?

A

Allow you to deploy, scale, and manage virtual appliances, such as firewalls, intrusion detection and prevention systems, and deep packet inspection systems.

89
Q

What are 2 key features of RDS?

A

Multiple Availability Zones (for disaster recovery), Read Replicas (for performance)

90
Q

What are the relational databases available in RDS?

A

SQL Server, MySqL, PostgresSQL, Oracle, Aurora, MariaDB

91
Q

What are key features of non-relational DBs?

A

Columns in the table can vary by row without affecting the other rows

92
Q

What is the best choice for non-relational DB on AWS?

A

DynamoDB

93
Q

What is Amazon’s Data Warehousing database?

A

Redshift

94
Q

What is Amazon ElastiCache?

A

A web service that makes it easy to deploy, operate and scale in-memory cache

95
Q

What are the two ElastiCache caching engines?

A

Memcached, Redis

96
Q

Which Route53 policy routes traffic to resources with the best performance?

A

Latency-based routing

97
Q

What is the preferred method of securing S3 bucket access?

A

S3 Bucket Policies or IAM

98
Q

What is a CloudFront distribution?

A

A link between an origin server and a domain name, which CloudFront uses to identify the object you have stored in your origin server

99
Q

What are the five AWS support plans?

A

Basic, Developer, Business, Enterprise On-Ramp, Enterprise

100
Q

How many availability zones per region?

A

Between 2 and 5

101
Q

What are three valid access types for an IAM user?

A

Using AWS SDK, AWS Management Console access, Programmatic access via AWS CLI

102
Q

What’s the diff in CapEx and OpEx?

A

CapEx is a sunk, up-front cost whereas OpEx is operating expense where you pay as you go

103
Q

What are the five basic pricing policies?

A

Pay as you go, pay less when you reserve, pay even less per unit by using more, pay even less as AWS grows, custom pricing

104
Q

What are the three fundamental cost drivers?

A

Compute, Storage, Outbound Data

105
Q

What are the services that are free in AWS?

A

VPC, Elastic Beanstalk (resources it provisions are not), CloudFormation (resources it provisions are not), IAM, Auto Scaling, Opsworks, Consolidated Billing

106
Q

What determines the price for Lambda?

A

Request pricing (first 1 million requests are free), Duration pricing (400,000 GB-seconds free per month), Additional charges such as data written to/from S3

107
Q

What determines price for EBS?

A

Volumes (per GB), Snapshots (per GB), Data Transfer

108
Q

What determines price for S3?

A

storage class (standard, IA, 1AZ etc), storage (how much data stored), number of requests (get, put copy), data transfer

109
Q

What determines price for Glacier?

A

storage, data retrieval times

110
Q

What is Snowball?

A

A PB-scale data transport solution that uses secure appliances to transfer large amounts of data into and out of AWS

111
Q

What determines pricing for Snowball?

A

service fee per job ($200/50TB, $250/80TB), daily charge (first 10 days free), data transfer (inbound is free, outbound is not)

112
Q

What determines pricing for RDS?

A

clock hours, DB characteristics, DB purchase type, number of DB instances, provisioned storage, additional storage, requests, deployment type, data transfer

113
Q

What determines cost for DynamoDB?

A

provisioned throughput write, provisioned throughput read, indexed data storage

114
Q

What determines pricing for CloudFront?

A

traffic distribution, requests, data transfer out

115
Q

What’s the difference between Budgets and Explorer?

A

Budgets are used before costs are incurred while Cost Explorer is used to analyze past costs

116
Q

What level of support gets you access to a TAM (Technical Account Manager)?

A

Enterprise

117
Q

What level of support do you need for Production system down response of less than 1 hour?

A

Business or Enterprise

118
Q

What levels of support offer critical down response of less than 15 min?

A

Enterprise

119
Q

What level of support provides Prod system down response of less than 4 hours?

A

Business and Enterprise

120
Q

What level of support offers System Impaired response time of less than 12 hours?

A

Developer, Business and Enterprise

121
Q

What support tier offers general guidance in 24 hours or less?

A

Developer, Business and Enterprise

122
Q

What are Tags?

A

Key/Value pairs attached to AWS resources used for metadata, they can sometimes be inherited

123
Q

How are Tags useful?

A

They allow you to group resources, you can apply automation to resource groups

124
Q

What is Tag Editor?

A

A global service that allows resources to be discovered so that additional tags can be added. Newer regions might not be compatible with tag editor yet.

124
Q

What is Tag Editor?

A

A global service that allows resources to be discovered so that additional tags can be added. Newer regions might not be compatible with tag editor yet.

125
Q

Is Systems Manager regional or global?

A

Regional

126
Q

Is Tag Editor regional or global?

A

Global

127
Q

What is CloudTrail?

A

Auditing tool that monitors API calls in the AWS platform

128
Q

How should you use CloudTrail in an organization?

A

Turn on CloudTrail in the paying account and create a cross-account S3 bucket, then in each account, turn on CloudTrail and log to the bucket in the paying account

129
Q

What are the two types of AWS Organizations?

A

Full access where you have OUs with groups inside, or just organizations with consolidated billing only

130
Q

What is the max number of linked accounts in ASW organizations?

A

20 it’s a soft limit and you can ask them to increase it

131
Q

How do billing alerts work for the paying account?

A

It receives billing data for all linked accounts but you can also still create billing alerts for each account

132
Q

What is the scope of CloudTrail?

A

Per-account and enabled per region

133
Q

What is QuickStart?

A

A way of deploying pre-architected environments quickly using CloudFormation templates built by experts

134
Q

Are you charged for data transfer incurred replicating between primary and standby in RDS?

A

No

135
Q

What is Amazon WAF?

A

Web Application Firewall - Stops things like XSS and SQL injection attacks

136
Q

What is AWS Shield used for?

A

Guarding against DDOS attacks

137
Q

What is Amazon Inspector?

A

Something you install on EC2 instances to look for vulnerabilities

137
Q

What is Amazon Inspector?

A

Something you install on EC2 instances to look for vulnerabilities

138
Q

What is AWS Trusted Advisor?

A

Inspects your AWS account as a whole. It does security checks, cost optimization, performance and fault tolerance checks.

139
Q

What’s the difference between CloudWatch and AWS Config?

A

CloudWatch is for monitoring performance. AWS Config is for monitoring configurations of AWS resources.

140
Q

What are the five pillars Trusted Advisor measures?

A

Cost optimization, Performance, Security, Fault Tolerance, Service Limits

141
Q

What AWS services can you run pen testing on?

A

EC2/NAT gateway/ELB, RDS, CloudFront, Aurora, API Gateway, Lambda, Lightsail, Elastic Beanstalk

141
Q

What AWS services can you run pen testing on?

A

EC2/NAT gateway/ELB, RDS, CloudFront, Aurora, API Gateway, Lambda, Lightsail, Elastic Beanstalk

142
Q

What is the scope of AWS KMS?

A

Regional

143
Q

What is AWS KMS?

A

Key Management Service - Handles secure encryption and decryption

144
Q

Which service does KMS pair well with for encrypting/decrypting data?

A

S3

145
Q

Which service does KMS pair well with for encrypting/decrypting data?

A

S3

146
Q

What is the key difference between KMS and CloudHSM?

A

KMS is on shared hardware, CloudHSM is dedicated.

147
Q

What does HSM stand for?

A

Hardware Security Module

147
Q

What does HSM stand for?

A

Hardware Security Module

148
Q

What is Parameter Store?

A

A component of AWS Systems Manager (SSM) - Secure serverless storage for configuration and secretes

149
Q

What is Secrets Manager?

A

Similar to Parameter Store, but paid service with additional features like automatically rotating secrets, generating random secrets

150
Q

What is GaurdDuty?

A

Uses Machine Learning Algorithms for anomaly detection

151
Q

What are some examples of input data for GaurdDuty?

A

CloudTrail event logs, VPC Flow Logs, DNS logs

152
Q

What is Control Tower?

A

Used for setting up multiple AWS accounts in minutes, conforming to company policies

153
Q

What 5 steps should you take in the case of compromised IAM credentials?

A

Determine access for those credentials, invalidate them, invalidate temporary credentials, restore appropriate access, review access to your account

154
Q

What is the difference between Athena and Macie?

A

Athena allows you to query data using SQL that is stored in S3 as well as query cost and usage and click-stream data, Macie is a security service which uses machine learning and NLP to discover, classify and protect sensitive data stored in S3 and also CloudTrail logs

155
Q

Which compliance certification attests to the security of AWS regarding credit card transactions?

A

PCI DSS Level 1

156
Q

True or false: It’s safer to use Access Keys than it is to use IAM roles

A

False

157
Q

True or false: The standard version of AWS Shield offers automated application layer traffic monitoring

A

False

158
Q

What is AWS’s DDoS protection service?

A

AWS Shield

159
Q

Which service is used to assess security and compliance of EC2 instances?

A

AWS Inspector

160
Q

What should you think of if asked about special licensing requirements?

A

Dedicated hosts

161
Q

Your company would like to begin using auto-scaling to add servers when CPU utilization reaches a certain threshold (say 70%). Which service can you use to trigger actions when CPU utilization crosses the threshold?

A

CloudWatch Alarms

162
Q

You are working with IAM and need to attach policies to users, groups, and roles. Which will you be attaching these policies to?

A

Identities - objects that are used to identify and group.

163
Q

After creating an EC2 instance to host an application, the traffic to the site far exceeds what was expected. You decide to move to a larger instance type. What AWS principle does this represent?

A

Vertical Scaling

164
Q

A retail company has EC2 On-Demand instances running to serve customer transactions. There is a set pattern of traffic where demand is high at two points in the day, but the instances sit idle for much of the day. What is a good way to optimize these resources?

A

Use an Auto Scaling Group to scale out and in based on demand.

165
Q

In Identity and Access Management, which term applies to a person or application that uses the AWS account root user, an IAM user, or an IAM role to sign in and make requests to AWS?

A

A Principal is a person or application that uses the AWS account root user, an IAM user, or an IAM role to sign in and make requests to AWS.

166
Q

A gaming company is using the AWS Developer Tool Suite to develop, build, and deploy their applications. Which AWS service can be used to trace user requests from end-to-end through the application?

A

AWS X-Ray

167
Q

You have decided to use the AWS Cost and Usage Report to track your EC2 Reserved Instance costs. Which AWS service can be used to store AWS Cost and Usage report files?

A

An S3 Bucket that you own.

168
Q

When configuring an Application Load Balancer, what step will you take to ensure a highly available architecture?

A

Configure the Load Balancer to serve traffic to multiple Availability Zones.

169
Q

You need to set up a virtual firewall for your EC2 instance. Which would you use?

A

A security group - acts as a virtual firewall for your instance to control inbound and outbound traffic.

170
Q

Which term refers to the Identity and Access Management (IAM) resource objects that AWS uses for authentication?

A

IAM entities - the users (IAM users and federated users) and roles that are created and used for authentication.

171
Q

A Healthcare agency needs to store certain patient information for up to 10 years. To save cost, they want to archive this data to cheaper storage. The data needs to be retrieved within 12 hours. Which is the cheapest option?

A

Glacier Deep Archive

172
Q

A software development team has begun using the AWS Developer Tools Suite. Which service will enable creating, managing, and working with software development projects on AWS?

A

AWS CodeStar - a cloud-based service for creating, managing, and working with software development projects on AWS

173
Q

You need to visualize, understand, identify trends for future charges, and manage your AWS costs and usage over time. Which AWS tool would you use?

A

AWS Cost Explorer