AWS Cert SA Patrice exam 3 Flashcards
Using the AWS Server Migration Service, what’s the maximum number of VMWare VMs that can be migrated concurrently?
At this writing, 50 VMs can be migrated concurrently.
True or False: S3 provides read-after-write consistency for overwrite PUTS and DELETES.
F - S3 provides eventual consistency for overwrite PUTS and DELETES.
Which of the following is an invalid VPC pairing configuration?
Edge-to-edge routing is not allowed through a VPN connection.
Your application’s usage peaks at 90% during the hours of 9 AM and 10 AM everyday. All other hours require only 10% of the peak resources. What is the best way to scale your application so you’re only paying for max resources during peak hours?
Proactive cyclic scaling is scaling that occurs at a fixed interval (daily, weekly, monthly, quarterly)
Your image manipulation application allows users take a picture, upload it to your app, and request filters to be added to the image. You need to decouple the application so your users are not waiting for the image processing to take place. How would you go about doing this?
SQS is the cornerstone of a decoupled application.
True or False: For a successful cross-region replication of your S3 bucket, versioning must be enabled on both the source and target buckets.
T - Versioning must be enabled on both the source and target buckets.
Contractual requirements mandate the use of AWS CloudHSM as an encryption solution. Application performance is a secondary, but important, concern. Where within your AWS infrastructure should you place the HSM appliances?
To decrease latency (and improve application performance), it’s best to place your HSMs as close to your EC2 instances as possible.
An AWS VPC allows you to:
With an VPC, you can connect your cloud resources to your own IPSec VPN connections.
True or False: Multifactor Authentication is required to delete objects from an S3 bucket.
F- The option to require Multifactor Authentication to delete objects from an S3 bucket is available, but it is not required.
True or False: you can write objects directly to an edge location.
It is now possible to expedite uploads to S3 by writing directly to an Edge Location.
Which of the following statements about Amazon SQS is true?
SQS will deliver your message at least once, but cannot guarantee that it will not create duplicates of that message. Additionally, SQS cannot guarantee message order.
True or False: You can attach more than one EC2 instance to an AWS Elastic Block Store volume.
F - An EBS volume cannot back more than one instance. If you need multiple instance to access a file system, use Elastic File system (EFS) instead.
Which of the following statements is FALSE regarding the role of a bastion host?
A bastion host sits in a public subnet, and serves as a secure gateway through which one SSHes into instances in a private subnet.
You’ve been tasked with the creation of a highly available website that serves static content from EC2 instances. Which of the following is not a requirement to accomplish this goal?
While an SQS queue can be an important part of a decoupled web application, it is not required when hosting a highly available static website on EC2. An auto scaling group configured to deploy EC2 instances in multiple subnets located in multiple availability zones allows an application to remain online despite an instance or AZ failure.
True or False: you can use IAM policies to deny the Root account access to EC2 instances.
F - The Root account has total access to all services.
After setting up a VPC peering connection between your VPC and that of your clients, the client requests to be able to send traffic between instances in the peered VPCs using private IP addresses. What must you do to make this possible?
If a route is added to your Route Table, your client will have access to your instance via private IP address.
You are trying to establish a VPC peering connection with another VPC, and you discover that there seem to be a lot of limitations and rules when it comes to VPC peering. Which of the following is not a VPC pairing limitation or rule?
A placement group may not span paired VPCs or multiple Regions. Placement Groups are limited to a single AZ.
Your customer is a healthcare company with strict compliance and auditing requirements. As you use AWS to architect the application environment, which of the following services might you use to ensure compliance with their strict requirements?
The AWS API call history produced by CloudTrail enables security analysis, resource change tracking, and compliance auditing.
What determines the cost of using CloudFormation templates?
There is no additional charge for AWS CloudFormation. You pay for AWS resources (such as Amazon EC2 instances, Elastic Load Balancing load balancers, etc.) created using AWS CloudFormation in the same manner as if you created them manually.
To maintain compliance with HIPPA, all healthcare-related data being stored on Amazon S3 needs to be encrypted at rest. Assuming S3 is being used for storing the data, which two of the following are the preferred methods of encryption?
You should encrypt locally or let S3-SSE handle encryption for you.
You create an SQS queue and test it by creating a simple application polls the queue for messages. After a message is retrieved, the application should delete it. You create three test messages in your SQS queue and discover that messages 1 and 3 are quickly deleted, but message 2 has remained in the queue. Which two of the following could account for your findings?
With short-polling, multiple polls of the queue may be necessary to process all messages in the queue. Additionally, SQS does NOT offer FIFO processing of messages from the queue.
Your company is moving their entire 20 TB data warehouse to the cloud. With your current bandwidth, it would take 2 months to transfer the data. Which service would you use to quickly get your data into AWS?
At that amount of data and those bandwidth restrictions, Snowball would be the most expedient choice.
Your company provides an online image recognition service that uses SQS to decouple system components. Your application polls the image queue as often as possible to maximize end-to-end throughput. However, you notice that polling in tight loops is burning CPU cycles and increasing costs with empty responses. How can you reduce the number of empty responses?
Long polling will reduce the number of CPU cycles and empty responses, saving you money.
Which two of the following AWS Services were introduced at re:Invent 2016
Amazon Lex is a service for building conversational interfaces using voice and text. Polly is a service that turns text into lifelike speech.
True or False: Amazon SQS guarantees that each message will be delivered at least once, but cannot guarantee that a message will not be delivered multiple times.
T - With SQS, each message will be delivered at least once, but the service cannot guarantee that a message will not be delivered more than once. In cases when a message must be delivered only once, consider Simple Work Flow.
When reviewing Auto Scaling events, it is noticed that an application is scaling up and down multiple times per hour. What design change could you make to optimize cost while preserving elasticity?
Modifying your scaling threshold is preferable to altering your number of instances manually.