AWS Associates Flashcards
Under a single AWS account, you have set up an Auto Scaling group with a maximum capacity of 50
Amazon Elastic Compute Cloud (Amazon EC2) instances in us-west-2. When you scale out, however,
it only increases to 20 Amazon EC2 instances. What is the likely cause?
A. Auto Scaling has a hard limit of 20 Amazon EC2 instances.
B. If not specified, the Auto Scaling group maximum capacity defaults to 20 Amazon EC2 instances.
C. The Auto Scaling group desired capacity is set to 20, so Auto Scaling stopped at 20 Amazon EC2
instances.
D. You have exceeded the default Amazon EC2 instance limit of 20 per region.
D. Auto Scaling may cause you to reach limits of other services, such as the default number of
Amazon EC2 instances you can currently launch within a region, which is 20.
Elastic Load Balancing allows you to distribute traffic across which of the following?
A. Only within a single Availability Zone
B. Multiple Availability Zones within a region
C. Multiple Availability Zones within and between regions
D. Multiple Availability Zones within and between regions and on-premises virtualized instances
running OpenStack
B. The Elastic Load Balancing service allows you to distribute traffic across a group of Amazon Elastic Compute Cloud (Amazon EC2) instances in one or more Availability Zones within a region.
Amazon CloudWatch offers which types of monitoring plans? (Choose 2 answers) A. Basic B. Detailed C. Diagnostic D. Precognitive E. Retroactive
A and B. Amazon CloudWatch has two plans: basic and detailed. There are no diagnostic,
precognitive, or retroactive monitoring plans for Amazon CloudWatch.
An Amazon Elastic Compute Cloud (Amazon EC2) instance in an Amazon Virtual Private Cloud
(Amazon VPC) subnet can send and receive traffic from the Internet when which of the following
conditions are met? (Choose 3 answers)
A. Network Access Control Lists (ACLs) and security group rules disallow all traffic except relevant
Internet traffic.
B. Network ACLs and security group rules allow relevant Internet traffic.
C. Attach an Internet Gateway (IGW) to the Amazon VPC and create a subnet route table to send all
non-local traffic to that IGW.
D. Attach a Virtual Private Gateway (VPG) to the Amazon VPC and create subnet routes to send all
non-local traffic to that VPG.
E. The Amazon EC2 instance has a public IP address or Elastic IP (EIP) address.
F. The Amazon EC2 instance does not need a public IP or Elastic IP when using Amazon VPC.
B, C, and E. You must do the following to create a public subnet with Internet access:
Attach an IGW to your Amazon VPC.
Create a subnet route table rule to send all non-local traffic (for example, 0.0.0.0/0) to the IGW.
Configure your network ACLs and security group rules to allow relevant traffic to flow to and from
your instance.
You must do the following to enable an Amazon EC2 instance to send and receive traffic from the
Internet:
Assign a public IP address or EIP address.
If you launch five Amazon Elastic Compute Cloud (Amazon EC2) instances in an Amazon Virtual
Private Cloud (Amazon VPC) without specifying a security group, the instances will be launched into
a default security group that provides which of the following? (Choose 3 answers)
A. The five Amazon EC2 instances can communicate with each other.
B. The five Amazon EC2 instances cannot communicate with each other.
C. All inbound traffic will be allowed to the five Amazon EC2 instances.
D. No inbound traffic will be allowed to the five Amazon EC2 instances.
E. All outbound traffic will be allowed from the five Amazon EC2 instances.
F. No outbound traffic will be allowed from the five Amazon EC2 instances.
A, D, and E. If a security group is not specified at launch, then an Amazon EC2 instance will be
launched into the default security group for the Amazon VPC. The default security group allows
communication between all resources within the security group, allows all outbound traffic, and
denies all other traffic.
Your company wants to host its secure web application in AWS. The internal security policies
consider any connections to or from the web server as insecure and require application data
protection. What approaches should you use to protect data in transit for the application? (Choose 2
answers)
A. Use BitLocker to encrypt data.
B. Use HTTPS with server certificate authentication.
C. Use an AWS Identity and Access Management (IAM) role.
D. Use Secure Sockets Layer (SSL)/Transport Layer Security (TLS) for database connection.
E. Use XML for data transfer from client to server.
B and D. To protect data in transit from the clients to the web application, HTTPS with server
certificate authentication should be used. To protect data in transit from the web application to the
database, SSL/TLS for database connection should be used.
You have an application that will run on an Amazon Elastic Compute Cloud (Amazon EC2) instance.
The application will make requests to Amazon Simple Storage Service (Amazon S3) and Amazon
DynamoDB. Using best practices, what type of AWS Identity and Access Management (IAM) identity
should you create for your application to access the identified services?
A. IAM role
B. IAM user
C. IAM group
D. IAM directory
A. Don’t create an IAM user (or an IAM group) and pass the user’s credentials to the application or
embed the credentials in the application. Instead, create an IAM role that you attach to the Amazon
EC2 instance to give applications running on the instance temporary security credentials. The
credentials have the permissions specified in the policies attached to the role. A directory is not an
identity object in IAM.
When a request is made to an AWS Cloud service, the request is evaluated to decide whether it should
be allowed or denied. The evaluation logic follows which of the following rules? (Choose 3 answers)
A. An explicit allow overrides any denies.
B. By default, all requests are denied.
C. An explicit allow overrides the default.
D. An explicit deny overrides any allows.
E. By default, all requests are allowed.
B, C, and D. When a request is made, the AWS service decides whether a given request should be
allowed or denied. The evaluation logic follows these rules:
1) By default, all requests are denied (in general, requests made using the account credentials for
resources in the account are always allowed).
2) An explicit allow overrides this default.
3) An explicit deny overrides any allows.
What is the data processing engine behind Amazon Elastic MapReduce (Amazon EMR)? A. Apache Hadoop B. Apache Hive C. Apache Pig D. Apache HBase
A. Amazon EMR uses Apache Hadoop as its distributed data processing engine. Hadoop is an open
source, Java software framework that supports data-intensive distributed applications running on
large clusters of commodity hardware. Hive, Pig, and HBase are packages that run on top of Hadoop.
What type of AWS Elastic Beanstalk environment tier provisions resources to support a web
application that handles background processing tasks?
A. Web server environment tier
B. Worker environment tier
C. Database environment tier
D. Batch environment tier
B. An environment tier whose web application runs background jobs is known as a worker tier. An
environment tier whose web application processes web requests is known as a web server tier.
Database and batch are not valid environment tiers.
What Amazon Relational Database Service (Amazon RDS) feature provides the high availability for your database? A. Regular maintenance windows B. Security groups C. Automated backups D. Multi-AZ deployment
D. Multi-AZ deployment uses synchronous replication to a different Availability Zone so that
operations can continue on the replica if the master database stops responding for any reason.
Automated backups provide disaster recovery, not high availability. Security groups, while important,
have no effect on availability. Maintenance windows are actually times when the database may not be
available.
What administrative tasks are handled by AWS for Amazon Relational Database Service (Amazon
RDS) databases? (Choose 3 answers)
A. Regular backups of the database
B. Deploying virtual infrastructure
C. Deploying the schema (for example, tables and stored procedures)
D. Patching the operating system and database software
E. Setting up non-admin database accounts and privileges
A, B, and D. Amazon RDS will launch Amazon Elastic Compute Cloud (Amazon EC2) instances,
install the database software, handle all patching, and perform regular backups. Anything within the
database software (schema, user accounts, and so on) is the responsibility of the customer.
Which of the following use cases is well suited for Amazon Redshift?
A. A 500TB data warehouse used for market analytics
B. A NoSQL, unstructured database workload
C. A high traffic, e-commerce web application
D. An in-memory cache
A. Amazon Redshift is a petabyte-scale data warehouse. It is not well suited for unstructured NoSQL
data or highly dynamic transactional data. It is in no way a cache.
Which of the following statements about Amazon DynamoDB secondary indexes is true?
A. There can be many per table, and they can be created at any time.
B. There can only be one per table, and it must be created when the table is created.
C. There can be many per table, and they can be created at any time.
D. There can only be one per table, and it must be created when the table is created.
D. There can be one secondary index per table, and it must be created when the table is created.
What is the primary use case of Amazon Kinesis Firehose?
A. Ingest huge streams of data and allow custom processing of data in flight.
B. Ingest huge streams of data and store it to Amazon Simple Storage Service (Amazon S3), Amazon
Redshift, or Amazon Elasticsearch Service.
C. Generate a huge stream of data from an Amazon S3 bucket.
D. Generate a huge stream of data from Amazon DynamoDB.
B. The Amazon Kinesis family of services provides functionality to ingest large streams of data.
Amazon Kinesis Firehose is specifically designed to ingest a stream and save it to any of the three
storage services listed in Response B.
Your company has 17TB of financial trading records that need to be stored for seven years by law.
Experience has shown that any record more than a year old is unlikely to be accessed. Which of the
following storage plans meets these needs in the most cost-efficient manner?
A. Store the data on Amazon Elastic Block Store (Amazon EBS) volume attached to t2.large
instances.
B. Store the data on Amazon Simple Storage Service (Amazon S3) with lifecycle policies that change
the storage class to Amazon Glacier after one year, and delete the object after seven years.
C. Store the data in Amazon DynamoDB, and delete data older than seven years.
D. Store the data in an Amazon Glacier Vault Lock.
B. Amazon S3 and Amazon Glacier are the most cost-effective storage services. After a year, when the
objects are unlikely to be accessed, you can save costs by transferring the objects to Amazon Glacier
where the retrieval time is three to five hours.
What must you do to create a record of who accessed your Amazon Simple Storage Service (Amazon
S3) data and from where?
A. Enable Amazon CloudWatch logs.
B. Enable versioning on the bucket.
C. Enable website hosting on the bucket.
D. Enable server access logs on the bucket.
E. Create an AWS Identity and Access Management (IAM) bucket policy.
D. Server access logs provide a record of any access to an object in Amazon S3.
Amazon Simple Storage Service (Amazon S3) is an eventually consistent storage system. For what
kinds of operations is it possible to get stale data as a result of eventual consistency?
A. GET after PUT of a new object
B. GET or LIST after a DELETE
C. GET after overwrite PUT (PUT to an existing key)
D. DELETE after GET of new object
C. Amazon S3 provides read-after-write consistency for PUTs to new objects (new key), but eventual
consistency for GETs and DELETEs of existing objects (existing key). Response C changes the
existing object so that a subsequent GET may fetch the previous and inconsistent object.
How is data stored in Amazon Simple Storage Service (Amazon S3) for high durability?
A. Data is automatically replicated to other regions.
B. Data is automatically replicated to different Availability Zones within a region.
C. Data is replicated only if versioning is enabled on the bucket.
D. Data is automatically backed up on tape and restored if needed.
B. AWS will never transfer data between regions unless directed to by you. Durability in Amazon S3 is
achieved by replicating your data geographically to different Availability Zones regardless of the
versioning configuration. AWS doesn’t use tapes.
Your company needs to provide streaming access to videos to authenticated users around the world.
What is a good way to accomplish this?
A. Use Amazon Simple Storage Service (Amazon S3) buckets in each region with website hosting
enabled.
B. Store the videos on Amazon Elastic Block Store (Amazon EBS) volumes.
C. Enable Amazon CloudFront with geolocation and signed URLs.
D. Run a fleet of Amazon Elastic Compute Cloud (Amazon EC2) instances to host the videos.
C. Amazon CloudFront provides the best user experience by delivering the data from a geographically
advantageous edge location. Signed URLs allow you to control access to authenticated users.
Which of the following are true about the AWS shared responsibility model? (Choose 3 answers)
A. AWS is responsible for all infrastructure components (that is, AWS Cloud services) that support
customer deployments.
B. The customer is responsible for the components from the guest operating system upward
(including updates, security patches, and antivirus software).
C. The customer may rely on AWS to manage the security of their workloads deployed on AWS.
D. While AWS manages security of the cloud, security in the cloud is the responsibility of the
customer.
E. The customer must audit the AWS data centers personally to confirm the compliance of AWS
systems and services.
A, B, and D. In the AWS shared responsibility model, customers retain control of what security they
choose to implement to protect their own content, platform, applications, systems, and networks, no
differently than they would for applications in an on-site data center.
Which process in an Amazon Simple Workflow Service (Amazon SWF) workflow implements a task? A. Decider B. Activity worker C. Workflow starter D. Business rule
B. An activity worker is a process or thread that performs the activity tasks that are part of your
workflow. Each activity worker polls Amazon SWF for new tasks that are appropriate for that activity
worker to perform; certain tasks can be performed only by certain activity workers. After receiving a
task, the activity worker processes the task to completion and then reports to Amazon SWF that the
task was completed and provides the result. The activity task represents one of the tasks that you
identified in your application.
Which of the following is true if you stop an Amazon Elastic Compute Cloud (Amazon EC2) instance
with an Elastic IP address in an Amazon Virtual Private Cloud (Amazon VPC)?
A. The instance is disassociated from its Elastic IP address and must be re-attached when the
instance is restarted.
B. The instance remains associated with its Elastic IP address.
C. The Elastic IP address is released from your account.
D. The instance is disassociated from the Elastic IP address temporarily while you restart the
instance.
B. In an Amazon VPC, an instance’s Elastic IP address remains associated with an instance when the
instance is stopped.
Which Amazon Elastic Compute Cloud (Amazon EC2) pricing model allows you to pay a set hourly
price for compute, giving you full control over when the instance launches and terminates?
A. Spot instances
B. Reserved instance
C. On Demand instances
D. Dedicated instances
C. You pay a set hourly price for an On Demand instance from when you launch it until you explicitly
stop or terminate it. Spot instances can be terminated when the spot price goes above your bid price.
Reserved instances involve paying for an instance over a one- or three-year term. Dedicated instances
run on hardware dedicated to your account and are not a pricing model.
Under what circumstances will Amazon Elastic Compute Cloud (Amazon EC2) instance store data not
be preserved?
A. The associated security groups are changed.
B. The instance is stopped or rebooted.
C. The instance is rebooted or terminated.
D. The instance is stopped or terminated.
E. None of the above
D. The data in an instance store persists only during the lifetime of its associated instance. If an
instance is stopped or terminated, then the instance store does not persist. Rebooting an instance
does not shut down the instance; if an instance reboots (intentionally or unintentionally), data on the
instance store persists. Security groups have nothing to do with the lifetime of an instance and have
no effect here.
How many relational database engines does RDS currently support?
A. Three: MySQL, Oracle and Microsoft SQL Server.
B. Just two: MySQL and Oracle.
C. Six: Amazon Aurora, Oracle, Microsoft SQL Server, PostgreSQL, MySQL and MariaDB.
D. Just one: MySQL.
C.
Six: Amazon Aurora, Oracle, Microsoft SQL Server, PostgreSQL, MySQL and MariaDB.
Amazon RDS provides you six familiar database engines to choose from, including Amazon Aurora, Oracle,
Microsoft SQL Server, PostgreSQL, MySQL and MariaDB.
https://aws.amazon.com/rds/?nc1=h_ls
Amazon rds provides a facility to modify the back-up retention policy for automated backups, with a value of 0 indicating for no backup retention.
What is the maximum retention period allowed in days?
A. 45
B. 35
C. 15
D. 10
B. 35
Which of the following databases are not supported on Amazon RDS?
A. MSSOL
B. MySOL
C. Aurora
D. DB2
D. DB2
A company is hosting EC2 instances which focuses on work-loads are on non-production and non-priority batch loads. Also, these processes can be interrupted at any time.
What is the best pricing model which can be used for EC2 instances in this use case?
A. Reserved Instances
B. On-Demand Instances
C. Spot Instances
D. Regular Instances
C. Spot Instances
How can an EBS volume that is currently attached to an EC2 instance be migrated from one Availability Zone to another?
A. Detach the volume and attach to an EC2 instance in another AZ.
B. Create a new volume in the other AZ and specify the current volume as the source.
C. Create a snapshot of the volume and then create a volume from the snapshot in the other AZ
D. Create a new volume in the AZ and do a disk copy of contents from one volume to another.
C. Create a snapshot of the volume and then create a volume from the snapshot in the other AZ
“Snapshots can be used to instantiate multiple new volumes, expand the size of a volume, or move volumes across Availability Zones. When a new volume is created, you may choose to create it based on an existing Amazon EBS snapshot. In that scenario, the new volume begins as an exact replica of the snapshot.”
https://aws.amazon.com/ebs/details/
***** If a provisioned IOPS volume of 4iGB is created, what are the possible correct values for IOPS for the volume
in order for it to be created?
A. 200
B. 300
C. 400
D. 500
***** A. 200
Max IOPS:Size ratio is 50:1 (Max 50×4 = 200)
http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html
What is the minimum size of an EBS volume as per AWS?
A. 2TB
B. 1GiB
C. 1GB
D. 1Byte
B. 1GiB
https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html
A customer has a requirement to extend their on-premises data center to AWS. The customer requires a 50-Mbps dedicated and private connection to their VPC.
Which AWS product or feature satisfies this requirement?
A. Amazon VPC
B. Elastic IP Addresses
C. AWS Direct Connect
D. Amazon VPC virtual private gateway
C. AWS Direct Connect
When it comes to API credentials, what is the best practice recommended by AWS?
A. Create a role which has the necessary permissions and can be assumed by the EC2 instance.
B. Use the API credentials from an EC2 instance.
C. Use the API credentials from a bastion host.
D. Use the API credentials from a NAT Instance.
A. Create a role which has the necessary permissions and can be assumed by the EC2 instance.
http://docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html
Is an edge location in AWS the same as a region?
A. True
B. False
B. False
http://www.linuxnix.com/amazon-aws-regions-vs-availability-zones-vs-edge-locations-vs-data-centers/
Which of the following is a durable key-value store?
A. Amazon Simple Storage Service
B. Amazon Simple Workflow Service
C. Amazon Simple Queue Service
D. Amazon Simple Notification Service
A. Amazon Simple Storage Service
http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingObjects.html
After creating a new AWS account, you use the API to request 40 on-demand EC2 instances in a single AZ.
After 20 successful requests, subsequent requests failed. What could be a reason for this issue, and how
would you resolve it?
A. You encountered a soft limit of 20 instances per region. Submit the limit increase form and retry the failed requests once approved.
B. AWS allows you to provision no more than 20 instances per Availability Zone. Select a different Availability Zone and retry the failed request.
C. You need to use Amazon Virtual Private Cloud (VPC) in order to provision more than 20 instances in a
single Availability Zone. Simply terminate the resources already provisioned and re-launch them all in a
VPC.
D. You encountered an API throttling situation and should try the failed requests using an exponential decay retry algorithm.
A. You encountered a soft limit of 20 instances per region. Submit the limit increase form and retry the failed requests once approved.
https://aws.amazon.com/ec2/faqs/#How_many_instances_can_I_run_in_Amazon_EC2
You have an application running in us-west-2 that requires six EC2 instances running at all times. With three AZs available in that region (us-west-2a, us-west-2b, and us-west-2c), which of the following deployments
provides 100 percent fault tolerance if any single AZ in us-west-2 becomes unavailable?
Choose 2 answers
A. Us-west-2a with two EC2 instances, us-west-2b with two EC2 instances, and us-west-2c with two EC2
instances
B. Us-west-2a with three EC2 instances, us-west-2b with three EC2 instances, and us-west-2c with no EC2
instances
C. Us-west-2a with four EC2 instances, us-west-2b with two EC2 instances, and us-west-2c with two EC2
instances
D. Us-west-2a with six EC2 instances, us-west-2b with six EC2 instances, and us-west-2c with no EC2 instances
E. Us-west-2a with three EC2 instances, us-west-2b with three EC2 instances, and us-west-2c with three EC2 instances
D. Us-west-2a with six EC2 instances, us-west-2b with six EC2 instances, and us-west-2c with no EC2
instances
E. Us-west-2a with three EC2 instances, us-west-2b with three EC2 instances, and us-west-2c with three EC2
instances
option A : 2 2 2 option B : 3 3 – option C : 4 2 2 option D : 6 6 – option E : 3 3 3
So if one availability zone fails you need to have a backup of 6 instances running
Only D & E satisfy that requirement
What action is required to establish an Amazon Virtual Private Cloud (VPC) VPN connection between an on-premises data center and an Amazon VPC virtual private gateway?
A. Modify the main route table to allow traffic to a network address translation instance.
B. Use a dedicated network address translation instance in the public subnet.
C. Assign a static Internet-routable IP address to an Amazon VPC customer gateway.
D. Establish a dedicated networking connection using AWS Direct Connect.
C. Assign a static Internet-routable IP address to an Amazon VPC customer gateway.
How can software determine the public and private IP addresses of the EC2 instance that it is running on?
A. Query the local instance metadata.
B. Query the local instance userdata.
C. Query the appropriate Amazon CloudWatch metric.
D. Use an ipconfig or ifconfig command.
A. Query the local instance metadata.
A startup company hired you to help them build a mobile application, that will ultimately store billions of images and videos in S3. The company is lean on funding and wants to minimize operational costs, however, they have an aggressive marketing plan, and expect to double their current installation base every six months. Due to the nature of their business, they are expecting sudden and large increases in traffic to and from S3, and need to ensure that it can handle the performance needs of their application. What other information must you gather from this customer in order to determine whether S3 is the right option?
A. You must know how many customers the company has today because this is critical in understanding what their customer base will be in two years.
B. You must find out the total number of requests per second at peak usage.
C. You must know the size of the individual objects being written to S3, in order to properly design the key namespace.
D. In order to build the key namespace correctly, you must understand the total amount of storage needs for each S3 bucket.
B. You must find out the total number of requests per second at peak usage.
A VPC public subnet is one that:
A. Has at least one route in its associated routing table that uses an Internet Gateway (IGW).
B. Includes a route in its associated routing table via a Network Address Translation (NAT) instance.
C. Has a Network Access Control List (NACL) permitting outbound traffic to 0.0.0.0/0.
D. Has the Public Subnet option selected in its configuration?
A. Has at least one route in its associated routing table that uses an Internet Gateway (IGW).
http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Subnets.html
In reviewing the Auto Scaling events for your application you notice that your application is scaling up and down multiple times in the same hour. What design choice could you make to optimize for cost while preserving elasticity?
Choose 2 answers
A. Modify the Auto Scaling policy to use scheduled scaling actions
B. Modify the Auto Scaling group termination policy to terminate the oldest instance first.
C. Modify the Auto Scaling group cool-down timers.
D. Modify the Amazon CloudWatch alarm period that triggers your Auto Scaling scale down policy.
E. Modify the Auto Scaling group termination policy to terminate the newest instance first.
C. Modify the Auto Scaling group cool-down timers.
D. Modify the Amazon CloudWatch alarm period that triggers your Auto Scaling scale down policy.
https://acloud.guru/forums/aws-certified-solutions-architect-associate/discussion/-KN-_V7WJkvYXS0ySYZV/questions-want-to-verify-answers
What combination of the following options will protect S3 objects from both accidental deletion and accidental
overwriting?
Choose 2 answers
A. Enable S3 versioning on the bucket.
B. Access S3 data using only signed URLs.
C. Disable S3 delete using an IAM bucket policy.
D. Enable S3 Reduced Redundancy Storage.
E. Enable multi-factor authentication (MFA) protected access.
A. Enable S3 versioning on the bucket.
E. Enable multi-factor authentication (MFA) protected access.
You have been tasked with creating a VPC network topology for your company. The VPC network must support both Internet-facing applications and internally-facing applications accessed only over VPN. Both Internet-facing and internally-facing applications must be able to leverage at least three AZs for high availability. At a minimum, how many subnets must you create within your VPC to accommodate these requirements?
A. 2
B. 3
C. 4
D. 6
D. 6
You receive a Spot Instance at a bid of $0.05/hr. After 30 minutes, the Spot Price increases to $0.06/hr and
your Spot Instance is terminated by AWS. What was the total EC2 compute cost of running your Spot
Instance?
A. $0.00
B. $0.02
C. $0.03
D. $0.05
E. $0.06
A. $0.00
Q. Will I be charged if my Spot Instance is terminated by Amazon EC2 before the hour is up?
No. If the Spot Instance is terminated by Amazon EC2, you will not be charged for a partial hour of usage”
Which of the following requires a custom CloudWatch metric to monitor?
A. Memory use
B. CPU use
C. Disk read operations
D. Network in
E. Estimated charges
A. Memory use
E is wrong because billing and charges information is monitored a http://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CW_Support_For_AWS.html
And CPU, Disk, and Network are monitored according to Amazon EC2 Metrics and Dimensions – http://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/ec2-metricscollected.html