Amazon AWS Certified Solutions Architect - Associate (SAA-C03)
Get full access to the updated question bank and confidently prepare for your exam.
Vendor
Amazon
Certification
Associate Certifications
Content
682 Qs
Status
Verified
Updated
1 hour ago
Test the Practice Engine
Experience our interactive testing environment with free demo questions
Premium Bundle
Complete Success Suite
Save $44 Instantly
-
✓Full PDF + Interactive Engine Everything you need to pass
-
✓All Advanced Question Types Drag & Drop, Hotspots, Case Studies
-
✓Priority 24/7 Expert Support Direct line to certification leads
-
✓90 Days Free Priority Updates Stay current as exams change
Success Metric
98.4% Pass Rate
Standard Simulation
Practice Engine
One-Time Payment
-
Web-Based (Zero Install)
-
Real Testing Environment Virtual & Practice Modes
-
Interactive Engine Drag & Drop, Hotspots
-
60 Days Free Updates
Compatible with All Devices
Basic Tier
PDF Study Guide
Digital Access
- ✓ Exam Questions (PDF)
- ✓ Mobile Friendly
- ✓ 60 Days Updates
Verified 100-Question Preview (SAA-C03)
Verified Community
The CertoMetrics Standard.
Recommend the #1 platform for verified Amazon certification resources.
Success Network
Help a Colleague Succeed.
Invite a peer to get their own updated SAA-C03 prep kit.
Exam Overview
The AWS Certified Solutions Architect - Associate (SAA-C03) certification is a highly respected credential that validates an individual's ability to design secure, cost-effective, high-performing, and resilient architectures on the Amazon Web Services platform. Achieving this certification demonstrates a deep understanding of core AWS services, best practices, and the AWS Well-Architected Framework. It signifies proficiency in translating business requirements into technical specifications and implementing scalable cloud solutions. This certification is a critical stepping stone for cloud professionals, enhancing career opportunities, boosting earning potential, and solidifying one's expertise in a rapidly evolving cloud landscape, making you a valuable asset to any organization leveraging AWS.
Questions
65
Passing Score
720/1000
Duration
130 Minutes
Difficulty
Intermediate
Level
Associate
Skills Measured
Career Path
Target Roles
Common Questions
Is the material up to date?
Yes. We update our question bank weekly to match the latest Amazon standards. You get free updates for 90 days.
What format do I get?
You get instant access to both the **PDF** (for reading) and our **Premium Test Engine** (for exam simulation).
Is there a guarantee?
Absolutely. If you fail the SAA-C03 exam using our materials, we offer a full money-back guarantee.
When do I get the download?
Instantly. The download link is available in your dashboard immediately after payment is confirmed.
Free Study Guide Samples
Previewing updated SAA-C03 bank (100 Questions).
A solutions architect needs to secure an Amazon API Gateway REST API. Users need to be able to log in to the API by using common external social identity providers (IdPs). The social IdPs must use standard authentication protocols such as SAML or OpenID Connect (OIDC). The solutions architect needs to protect the API against attempts to exploit application vulnerabilities.
Which combination of steps will meet these security requirements? (Select TWO.)
Correct Option: A,C
✅ Option A (Correct) Reasoning: AWS WAF is a web application firewall that helps protect web applications or APIs from common web exploits and bots. Associating a web ACL with the REST API and adding appropriate managed rules (e.g., OWASP Top 10) directly addresses the requirement to protect against application vulnerabilities.✅ Option C (Correct) Reasoning: Amazon Cognito User Pools provide user directories for authentication and can federate with social identity providers (IdPs) using standards like SAML or OIDC. Integrating a Cognito User Pool with API Gateway allows users to log in via external social IdPs and then access the API securely.❌ Why the other choices are incorrect:
Option B is incorrect: AWS Shield Advanced primarily provides DDoS protection against volumetric and state-exhaustion attacks. It does not address application-layer vulnerabilities or user authentication via social IdPs.
Option D is incorrect: API keys are used for usage plans, throttling, and metering API access, not for user authentication with social IdPs or protecting against application vulnerabilities.
Option E is incorrect: Creating an IP address filter to allow only social IdP IPs is impractical and does not address user authentication flow or protection against application-layer exploits. Social IdPs use wide and dynamic IP ranges.
A company has an image processing workload running on Amazon ECS in two private subnets. Each private subnet uses a NAT instance for internet access. All images are stored in Amazon S3 buckets. The company is concerned about the data transfer costs between Amazon ECS and Amazon S3.
What should a solutions architect do to reduce costs?
Correct Option: B
✅ Option B (Correct) Reasoning: Configuring a VPC Gateway Endpoint for Amazon S3 allows traffic from the private subnets to S3 to flow privately within the AWS network, bypassing NAT instances. This eliminates NAT data processing charges and reduces overall data transfer costs as S3 access via a gateway endpoint incurs no additional charges for data processed by the endpoint itself.❌ Why the other choices are incorrect:
Option A is incorrect: A NAT Gateway would replace NAT instances, improving availability and scalability, but it still incurs data processing charges for traffic passing through it, including S3 traffic if routed this way. It does not reduce the specific S3 data transfer costs.
Option C is incorrect: An interface endpoint (PrivateLink) provides private connectivity but incurs hourly charges and data processing fees, making it generally a more expensive option than a gateway endpoint for S3 traffic.
Option D is incorrect: Amazon CloudFront is a CDN for distributing content to end-users globally. It is not designed to optimize internal VPC-to-S3 data transfer costs for an ECS workload.
Reference: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-endpoints-s3.html
A company runs a database in which application servers write transaction logs and application data to on-premises iSCSI-based SAN storage. The company wants to avoid costs associated with hardware refresh and on-premises infrastructure expansion. The company needs an automated solution to migrate older log data to AWS. The solution must maintain the iSCSI storage interface and keep frequently accessed logs available locally with minimal latency.
Which solution will meet these requirements?
Correct Option: D
✅ Option D (Correct) Reasoning: Deploying a Volume Gateway in cached volume mode presents iSCSI block storage to on-premises servers. It stores primary data on Amazon S3 while maintaining a local cache of frequently accessed data, meeting the requirements to migrate older data to AWS, maintain the iSCSI interface, and keep frequently accessed logs local with low latency.❌ Why the other choices are incorrect:
Option A is incorrect: Amazon S3 File Gateway presents NFS or SMB file interfaces, not iSCSI block storage, failing to maintain the existing iSCSI storage interface.
Option B is incorrect: Using the AWS CLI and a cron job is a scripting solution, not an integrated storage gateway solution that provides an iSCSI interface, local caching for frequently accessed data, and automatic tiering.
Option C is incorrect: Volume Gateway in stored volume mode keeps all primary data on-premises, asynchronously backing it up to S3. This does not migrate older log data to AWS to reduce on-premises storage, as requested.
A company uses Amazon RDS for PostgreSQL to run its applications in the us-east-1 Region. The company also uses machine learning (ML) models to forecast annual revenue based on near real-time reports. The reports are generated by using the same RDS for PostgreSQL database. The database performance slows during business hours. The company needs to improve database performance.
Which solution will meet these requirements MOST cost-effectively?
Correct Option: D
✅ Option D (Correct)
Reasoning: Creating an Amazon RDS read replica in the same region (us-east-1) is the most cost-effective and appropriate solution. RDS read replicas are specifically designed to offload read-heavy workloads, such as reporting and analytics, from the primary database instance. By configuring the ML model reports to run against the read replica, the contention on the primary database during business hours is eliminated, significantly improving its performance for the main application. This solution is cost-effective as it leverages AWS's native read scaling capabilities within the same region.
❌ Why the other choices are incorrect:
* Option A is incorrect: A cross-Region read replica would incur additional data transfer costs and potentially higher latency, making it less cost-effective and unnecessary for a performance issue that can be resolved within the same region.
* Option B is incorrect: A Multi-AZ standby instance is for high availability and disaster recovery; it is not directly accessible for read queries to offload workload. Its purpose is failover.
* Option C is incorrect: While AWS DMS can replicate data, using it for this specific read offloading scenario is generally more complex and less cost-effective than leveraging the native RDS read replica feature, which is purpose-built for read scaling.
Reference: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_ReadReplicas.html
A manufacturing company runs an order processing application in its VPC. The company wants to securely send messages from the application to an external Salesforce system that uses Open Authorization (OAuth).
A solutions architect needs to integrate the company's order processing application with the external Salesforce system.
Which solution will meet these requirements?
Correct Option: C
✅ Option C (Correct)
Reasoning: Amazon EventBridge API Destinations are specifically designed for sending events to HTTP endpoints of external applications, including SaaS providers like Salesforce. API Destinations support various authorization types, including OAuth (Client Credentials or Authorization Code), through API Connections. This provides a secure and managed way to integrate with Salesforce using OAuth, satisfying the requirements.
❌ Why the other choices are incorrect:
- Option A is incorrect: While Amazon SNS can push data to HTTPS endpoints, it does not natively handle complex authentication mechanisms like OAuth for external systems. Any OAuth logic would need to be custom-implemented at the receiving HTTPS endpoint, making the solution more complex than EventBridge API Destinations.
- Option B is incorrect: Amazon Kinesis Data Firehose can deliver to HTTP destinations. However, similar to SNS, Firehose does not natively manage OAuth authentication for the target system. This would still require custom handling for authorization.
- Option D is incorrect: Amazon Managed Streaming for Apache Kafka (Amazon MSK) is a powerful streaming platform, and MSK Connect can integrate with various sources and sinks. However, it's a more complex and typically higher-overhead solution for simply sending messages to an external HTTP endpoint with OAuth compared to the purpose-built EventBridge API Destinations.
Reference: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-api-destinations.html
A company wants to store and perform analytics on structured data in a data warehouse on AWS. The solution must ingest unstructured data from Amazon S3.
Which solution will meet these requirements?
Correct Option: A
✅ Option A (Correct) Reasoning: Amazon Redshift is a fully managed, petabyte-scale data warehouse service ideal for structured data and complex analytics. AWS Glue is an ETL service capable of ingesting and transforming unstructured data from Amazon S3 into a structured format, making it suitable for Redshift. This combination directly addresses all requirements.❌ Why the other choices are incorrect:
Option B is incorrect: Amazon DynamoDB is a NoSQL database, not a data warehouse, and is not optimized for complex analytical queries. DynamoDB streams and Lambda are not suited for data warehouse analytics.
Option C is incorrect: Amazon Aurora is a relational OLTP database, not a data warehouse (OLAP). Aurora parallel query does not transform it into a data warehouse, and Athena is not primarily an ingestion tool for Aurora.
Option D is incorrect: AWS Lake Formation manages data lakes in S3, not a traditional structured data warehouse. Lambda@Edge functions are for edge computing and not suitable for bulk data ingestion into a data lake/warehouse.
A company's compliance archive holds 120 TB of objects in an Amazon S3 bucket in the Standard access tier. The company accesses the objects frequently during the first
30 days after creation. After the initial 30 days, the company rarely reads the objects. However, the objects must be retrievable in under 1 minute when the company needs
the objects.
Which solution will meet these requirements in the MOST cost-effective way?
Correct Option: B
The company's requirements specify frequent access for the first 30 days, followed by rare access, but with a critical need for retrieval in under 1 minute after those 30 days. Objects are currently in S3 Standard.
- Option B (Use an S3 Lifecycle rule to transition objects to S3 Glacier Instant Retrieval after 30 days) is the most cost-effective solution. Keeping objects in S3 Standard for the initial 30 days is appropriate for frequent access. After 30 days, S3 Glacier Instant Retrieval is specifically designed for rarely accessed data that requires immediate retrieval (milliseconds). This meets the 'under 1 minute' requirement while being highly cost-effective for archival data.
Why the other choices are incorrect:
- Option A (Store objects in S3 Standard-Infrequent Access (Standard-IA) for the full retention period) is not cost-effective. Standard-IA has retrieval charges, and storing frequently accessed data (first 30 days) in this tier would incur unnecessary costs.
- Option C (Use an S3 Lifecycle rule to transition objects to S3 Glacier Flexible Retrieval after 30 days) does not reliably meet the 'under 1 minute' retrieval requirement. S3 Glacier Flexible Retrieval (formerly S3 Glacier) typically has retrieval times of minutes to hours (e.g., Standard retrieval 3-5 hours, Expedited retrieval 1-5 minutes), making it less suitable than S3 Glacier Instant Retrieval for consistent sub-minute access.
- Option D (Enable S3 Intelligent-Tiering. Configure S3 Intelligent-Tiering to store objects in S3 Glacier Deep Archive automatically after 30 days) fails the retrieval time requirement. S3 Glacier Deep Archive is designed for the lowest cost archival with retrieval times typically in hours (12-48 hours), far exceeding the 'under 1 minute' constraint. While S3 Intelligent-Tiering can manage tiers, the specified target tier (Deep Archive) is inappropriate.
A company runs a containerized data processing application. The company deploys the application on a Kubernetes cluster in a remote field office- The company experiences multiple hardware failures that disrupt operations.
The company needs a solution that can add resilience and deliver minimal latency for the company's field equipment The solution must be highly available and resilient to temporary
network outages.
Which solution will meet these requirements?
Correct Option: D
The company requires a solution that offers resilience against hardware failures, minimal latency for field equipment, high availability, and resilience to temporary network outages in a remote field office. AWS Outposts brings AWS infrastructure and services to on-premises locations, directly addressing the need for minimal latency by keeping compute and storage close to the field equipment.
- Option D is correct: Ordering multiple AWS Outposts servers provides the necessary redundancy and high availability to withstand hardware failures, as workloads can be distributed across multiple instances on the Outposts. Deploying Amazon EKS with the local cluster deployment option on these Outposts servers ensures that both the EKS control plane and worker nodes run entirely on the Outposts. This configuration allows the Kubernetes cluster to continue operating autonomously and process data even during temporary network outages to the AWS Region, fulfilling all stated requirements for resilience and low latency.
- Option A is incorrect: Deploying EKS in an AWS Region via a Site-to-Site VPN introduces significant latency for field equipment and is not resilient to network outages for local operations, as the application would depend on a continuous connection to the region.
- Option B is incorrect: While AWS Direct Connect offers a dedicated, lower-latency connection than VPN, it still routes traffic to an AWS Region. This would not provide minimal latency for field equipment on-premises, nor would it allow operations to continue during a temporary loss of connectivity to the AWS Region.
- Option C is incorrect: A single AWS Outposts server does not provide resilience against hardware failures, which the problem statement explicitly highlights as an issue. Furthermore, the EKS extended cluster deployment option places the control plane in the AWS Region, meaning the cluster would not be resilient to temporary network outages from the field office to the region.
A company runs an application in the AWS Cloud. The company wants to improve the application's resilience by using multiple AWS Regions. The application uses Amazon SNS topics to invoke AWS Lambda functions- The company must be able to deliver SNS notifications to the application's Lambda functions across Regions.
Which combination of steps will meet these requirements? (Select TWO.)
Correct Option: A,D
The company wants to improve application resilience by using multiple AWS Regions and ensure Amazon SNS notifications can invoke AWS Lambda functions across Regions.
Here's why options A and D are the correct combination:
- ✅ Option A: Create additional Lambda functions in another Region where the application runs.
For multi-Region resilience, it's essential to have redundant application components in a secondary Region. If the primary Region experiences an outage, the application in the secondary Region can continue processing requests. Creating additional Lambda functions in another Region is a fundamental step to achieve this. - ✅ Option D: In each Region where the application runs, subscribe the Lambda function in that Region to the SNS notifications in all Regions.
AWS Lambda functions can only directly subscribe to Amazon SNS topics within the same AWS Region. To deliver SNS notifications to Lambda functions across Regions for resilience, a common pattern involves:
1. Creating an SNS topic in each active Region.
2. Creating a Lambda function in each Region.
3. Subscribing the local Lambda function to its local SNS topic.
4. Implementing a cross-Region replication mechanism, typically using another Lambda function subscribed to the source SNS topic to publish messages to the SNS topic in the other Region.
Option D encapsulates this architecture by stating that each regional Lambda function should effectively receive
Reference: https://aws.amazon.com/blogs/compute/building-cross-region-serverless-applications/
A healthcare company is running an Amazon EMR cluster on Amazon EC2 instances to process data that is stored in Amazon S3. The company must ensure that the data processing jobs have access only to the relevant data in Amazon S3. Each job must have specific EMR runtime roles.
Which combination of steps will meet these requirements? (Select THREE.)
Correct Option: A,C,D
To ensure EMR data processing jobs have access only to relevant data in Amazon S3 by using specific EMR runtime roles, three key steps are required:
✅ A: Set up security configurations in Amazon EMR, and set EnableApplicationScopedlAMRole to true. This setting in an EMR security configuration is a prerequisite for enabling and utilizing EMR runtime roles. It allows applications running on the cluster to assume specific IAM roles.
✅ C: Set up an EC2 instance profile for the Amazon EMR cluster to assume the runtime roles. This involves configuring the permissions policy of the EMR EC2 instance profile role (e.g., EMR_EC2_DefaultRole) to grant sts:AssumeRole permissions on the specific EMR runtime roles. This is crucial because the EC2 instances, operating under this instance profile, are the entities that will attempt to assume the runtime roles.
✅ D: For each IAM role that serves as an EMR runtime role, set up a trust policy with the EC2 instance profile role. The trust policy of each EMR runtime role must explicitly permit the EMR EC2 instance profile role (which the cluster instances use) to assume it. This establishes the necessary trust relationship for the assumption to occur successfully.
❌ Why the other choices are incorrect:
- B: Set up runtime roles to assume the EC2 instance profile of the Amazon EMR cluster. This is incorrect. The EC2 instance profile role assumes the runtime roles, not the other way around.
- E: Establish a trust policy between the EMR runtime roles and the EMR service role of the cluster. This is incorrect. The trust policy for runtime roles is established with the EMR EC2 instance profile role, not the EMR service role. The EMR service role is used by the EMR service itself for cluster management, not for job-specific data access.
- F: Set up security configurations in Amazon EMR, and set EnablelnTransitEncryption to true. This is incorrect. Enabling in-transit encryption secures data moving within the EMR cluster, but it does not control job-specific access to S3 data through IAM roles.
Reference: https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-runtime-roles.html
A solutions architect is investigating compute options for a critical analytics application. The application uses long-running processes to prepare and aggregate data. The processes cannot be interrupted. The application has a known baseline load. The application needs to handle occasional usage surges.
Which solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is developing a microservices-based application to manage the company's delivery operations, The application consists of microservices that process orders, manage a fleet of delivery vehicles, and optimize delivery routes.
The microservices must be able to scale independently and must be able to handle bursts of traffic without any data loss.
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs a container application on a Kubernetes cluster in the company's data center. The application uses Advanced Message Queuing Protocol (AMQP) to communicate with a message queue. The data center cannot scale fast enough to meet the company's expanding business needs. The company wants to migrate the workloads to AWS.
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 682 answers & explanations
A company uses AWS Direct Connect to connect its on-premises network to multiple VPCs. All VPCs are located in the same AWS account in one AWS Region. Each VPC uses its own private virtual interface (VIE) and virtual local area network (VLAN) on the Direct Connect connection.
The company is growing and needs to add more VPCs and private VlFs. The existing connections cannot support the additional VPCs and private VlFs. The company's new VPCs must have connectivity to the on-premises network.
Which solution will meet these requirements in the MOST scalable way?
Premium Solution Locked
Unlock all 682 answers & explanations
A company seeks a storage solution for its application. The solution must be highly available and scalable. The solution also must function as a file system, be mountable by multiple Linux instances in AWS and on premises through native protocols, and have no minimum size requirements. The company has set up a Site-to-Site VPN for access from its on premises network to its VPC.
Which storage solution meets these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is using a loosely coupled serverless architecture on AWS. The architecture consists of multiple web applications and APIs distributed across multiple teams. The company uses AWS Control Tower to provision AWS accounts. The company's development teams use AWS CloudFormation.
The company wants to improve trace monitoring and gain insight into how individual services in application stacks are performing.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company hosts an application on AWS. The application has generated approximately 2.5 TB of data over the previous 12 years. The company currently stores the data on Amazon EBS volumes.
The company wants a cost-effective backup solution for long-term storage. The company must be able to retrieve the data within minutes when required for audits.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company wants to deploy its containerized application workloads to a VPC across three Availability Zones. The company needs a solution that is highly available across Availability Zones. The solution must require minimal changes to the application. Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 682 answers & explanations
A company recently migrated a data warehouse to AWS. The company has an AWS Direct Connect connection to AWS.
Company users query the data warehouse by using a visualization tool. The average size of the queries that the data warehouse returns is 50 MB. The average visualization that the visualization tool produces is 500 KB in size. The result sets that the data warehouse returns are not cached.
The company wants to optimize costs for data transfers between the data warehouse and the company.
Which solution will meet this requirement?
Premium Solution Locked
Unlock all 682 answers & explanations
A company operates a data lake in Amazon S3 that stores large datasets in multiple formats. The company has an application that retrieves and processes subsets of data from multiple objects in the data lake based on filtering criteria. For each data query, the application currently downloads the entire S3 object and performs transformations. The current process requires a large amount of transformation time.
The company wants a solution that will give the application the ability to query and filter directly on S3 objects without downloading the objects.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is building a critical web application on AWS. The company needs to design architecture components that provide low-latency, global access to static content. The company must also provide highly durable and highly available storage for static content and user uploads.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A streaming analytics application that runs on Amazon EC2 instances needs 8 TB of attached block storage. The application has a sequential and throughput-heavy workload, The application has moderate input/output operations per second (IOPS) and runs 24 hours a day, 7 days a week.
The company wants to minimize storage cost while meeting performance needs.
Which Amazon EBS volume type will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company hosts a website on Amazon EC2 instances behind an Application Load Balancer (ALB). The website serves static content. Website traffic is increasing. The company wants to minimize the website hosting costs.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company regularly receives route status updates from its delivery trucks as events in Amazon EventBridge. The company is building an API-based application in a VPC that will consume and process the events to create a delivery status dashboard. The API application must not be available by using public IP addresses because of security and compliance requirements.
How should the company send events from EventBridge to the API application?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is designing a new web application that will run on Amazon EC2 Instances. The application will use Amazon DynamoDB for backend data storage. The application traffic will be unpredictable. The company expects that the application read and write throughput to the database will be moderate to high. The company needs to scale in response to application traffic.
Which DynamoDB table configuration will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 682 answers & explanations
A company manages millions of documents in hundreds of Amazon S3 buckets in multiple AWS Regions. The company must determine whether any of the S3 buckets contain personally identifiable information (PII).
Which solution will meet this requirement with the LEAST operational overhead?
Premium Solution Locked
Unlock all 682 answers & explanations
A company has a batch processing application that runs every day. The process typically takes an average 3 hours to complete. The application can handle interruptions and can resume the process after a restart. Currently, the company runs the application on Amazon EC2 On-Demand Instances.
The company wants to optimize costs while maintaining the same performance level.
Which solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 682 answers & explanations
An ecommerce company hosts a three-tier web application in a VPC. The web tier runs on Amazon EC2 instances in two Availability Zones. The company stores a product catalog and customer sales information in Amazon DynamoDB.
The company's finance team uses a reporting application to generate reports of daily product sales. When the finance team runs the daily reports, a sudden performance decrease affects website customers.
The company wants to improve the performance of the system.
Which solution will meet these requirements with MINIMAL changes to the current architecture?
Premium Solution Locked
Unlock all 682 answers & explanations
A company wants to use AWS Direct Connect to connect the company's on-premises networks to the AWS Cloud. The company runs several VPCs in a single AWS Region. The company plans to expand its VPC fleet to include hundreds of VPCs.
A solutions architect needs to simplify and scale the company's network infrastructure to accommodate future VPCs.
Which service or resource will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company has a development account that contains Amazon EC2 instances. The company uses the EC2 instances for testing. A recent audit of the development account showed that some developers occasionally forget to stop instances after the tests are finished, which incurs extra costs.
The company wants to optimize costs for the development account. The company wants to use AWS Budgets to implement a budget for the account.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A video production company stores raw 4K video footage on an Amazon EFS file system by using the EFS Standard storage class. Each video file is around 100 GB- The EFS file system is mounted to an Auto Scaling group of Amazon EC2 instances that transcode the video files.
Editors need to access each file frequently for up to 90 days. After 90 days, the files are rarely needed. However, the files must remain available with sub-second latency for on-demand edit requests.
The company wants to reduce monthly storage costs without any changes to the existing mount points that the editors use.
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 682 answers & explanations
A media company uses an Amazon S3 bucket to archive video content. During a cleanup operation, a solutions architect uses the AWS CLI to remove outdated objects from the bucket. The solutions architect encounters a 403 (Access Denied) error message. The solutions architect uses an IAM role that is configured with the following policy:

Which option causes this error?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is deploying a critical application by using Amazon RDS for MySQL. The application must be highly available and must recover The company needs to support interactive users
(transactional queries) and batch reporting (analytical queries) with no more than a 4-hour lag. The analytical queries must not affect the performance of the transactional queries.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The application experiences periodic spikes in malicious traffic attempts from attackers. The application receives mostly SQL injection and cross-site scripting (XSS) attacks from external sources.
The company requires a solution to protect the application from the attacks. The solution must have minimal effect on application performance.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is designing a new application that uploads files to an Amazon S3 bucket The uploaded files are processed to extract metadata.
Processing must take less than 5 seconds. The volume and frequency of the uploads vary from a few files each hour to hundreds of concurrent uploads.
Which solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is migrating a legacy application from an on-premises data center to AWS. The application relies on hundreds of cron jobs that run between 1 and 20 minutes on different recurring schedules throughout the day.
The company wants a solution to schedule and run the cron jobs on AWS with minimal refactoring. The solution must support running the cron jobs in response to an event in the future.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
An insurance company wants to migrate an application that calculates insurance premiums to AWS. The company needs to run calculations immediately when a customer submits information through the application. The application usually takes 10 seconds to process a calculation.
A solutions architect needs to develop an architecture on AWS to handle the application.
Which solution will meet this requirement?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs a three-tier web application in a VPC on AWS. The company deployed an application load balancer (ALB) in a public subnet. The web tier and application tier Amazon EC2 instances are deployed in a private subnet. The company uses a self-managed MySQL database that runs on EC2 instances in an isolated private subnet for the database tier.
The company wants a mechanism that will give a DevOps team the ability to use SSH to access all the servers. The company also wants to have a centrally managed log of all connections made to the servers.
Which combination of solutions will meet these requirements with the MOST operational efficiency? (Select TWO.)
Premium Solution Locked
Unlock all 682 answers & explanations
A company stores data in Amazon S3. According to regulations, the data must not contain personally identifiable information (PII). The company recently discovered that S3 buckets have some objects that contain PII. The company needs to automatically detect PII in S3 buckets and to notify the company's security team.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs a compute workload on multiple Amazon EC2 Nitro-based instances in the same Availability Zone. Multiple instances must write to the same block storage volume concurrently.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs a container application by using Amazon Elastic Kubernetes Service (Amazon EKS). The application includes microservices that manage customers and place orders, The company needs to route incoming requests to the appropriate microservices.
Which solution will meet this requirement MOST cost-effectively?
Premium Solution Locked
Unlock all 682 answers & explanations
A company wants to deploy a new public web application on AWS. The application includes a web server tier that uses Amazon EC2 instances. The application also includes a database tier that uses an Amazon RDS for MySQL DB instance.
The application must be secure and accessible for global customers that have dynamic IP addresses.
How should a solutions architect configure the security groups to meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company plans to launch Amazon EC2 instances that run Microsoft Windows Server. The company requires that all Windows instances be joined to a dedicated Active Directory domain that the company will host in the AWS Cloud. Authorized user identities from the on-premises Active Directory domain must be able to access the EC2 instances. Users from the Active Directory on AWS must not be able to authenticate to on-premises resources.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is securing its Amazon RDS for MySQL instances. The security team needs to capture all configuration changes and all administrative actions. The security team is the only team that is permitted to view the logs.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs a web application in an Amazon EC2 Auto Scaling group. The application runs during business hours only. The company cannot allow interruptions to the application during business hours.
The company wants to optimize compute costs for the application based on the application's usage pattern.
Which solution will meet this requirement with the LEAST operational overhead?
Premium Solution Locked
Unlock all 682 answers & explanations
A company has an application that processes information from documents that users upload. When a user uploads a new document to an Amazon S3 bucket, an AWS Lambda function is invoked and processes the document.
The company discovers that the application did not process some of the uploaded documents because of document formatting errors. The company wants to ensure that the application finalizes processing all
documents as soon as possible, even if errors are encountered during document processing. Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A healthcare company needs a storage solution for electronic health records (EHRs). The company must store the EHRs for at least 10 years to comply with regulations. The company rarely accesses the records. The records must be secure, immutable, and retrievable within a few hours when needed.
Which solution will meet these requirements in the MOST cost-effective way?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs an application on Amazon EC2 instances that have instance store volumes attached. The application uses Amazon EFS to store files that are shared across a cluster of Linux servers. The shared files are at least 1 GB in size.
The company accesses the files often for the first 7 days after creation. The files must remain readily available after the first 7 days. The company wants to optimize costs for the application.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is migrating a document management application to AWS- The application runs on Linux servers. The company will migrate the application to Amazon EC2 instances in an Auto Scaling group. The company stores 7 TIB of documents in a shared storage file system- An external relational database tracks the documents.
Documents are stored once and can be retrieved multiple times for reference at any time. The company cannot modify the application during the migration. The storage solution must be highly available and must support scaling over time.
Which solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 682 answers & explanations
An online video streaming platform distributes content by using origin servers hosted on Amazon EC2 instances. The platform needs to use Amazon Route 53 to return IP addresses for all origin servers that pass health checks.
Which routing policy will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs an application that stores and shares photos. Users upload the photos to an Amazon S3 bucket Every day, users upload approximately 150 photos. The company wants to design a solution that creates a thumbnail of each new photo and stores the thumbnail in a second S3 bucket.
Which solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is designing a new ecommerce application for a high-traffic retail website. The application needs to process a large volume of customer orders. The application must scale to handle spikes in order volume during peak shopping events. Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company has recently migrated to AWS. The company runs an application on multiple Amazon EC2 instances in an Auto Scaling group. The EC2 instances span multiple Availability Zones. Users connect to the application through an Application Load Balancer (ALB).
Amazon CloudWatch metrics report that the CPU usage for all the instances surges to 99% when users log in between 8 am and 9 am every workday. The usage surge causes performance issues and application errors.
The company wants to ensure that the application is able to handle the peak usage without disruption to the application.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company hosts an online order processing application on Amazon EC2 instances- The instances are part of an EC2 Auto Scaling group that spans multiple Availability Zones and uses a scheduled scaling policy. The application uses Amazon RDS for MySQL as its database.
Though the database is write heavy, Amazon CloudWatch metrics do not show any problems during peak usage times. However, application users randomly experience slow responses when creating new orders.
Which solution will improve the application's response time without changing the application design or infrastructure?
Premium Solution Locked
Unlock all 682 answers & explanations
A company’s application uses Network Load Balancers, Auto Scaling groups, Amazon EC2 instances, and databases that are deployed in an Amazon VPC. The company wants to capture information about traffic to and from the network interfaces in near real time in its Amazon VPC. The company wants to send the information to Amazon OpenSearch Service for analysis.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company uses AWS to run its ecommerce platform. The platform is critical to the company's operations and has a high volume of traffic and transactions. The company configures a murti-factor authentication (MFA) device to secure its AWS account root user credentials. The company wants to ensure that it will not lose access to the root user account if the MFA device is lost.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company needs to archive an on-premises relational database. The company wants to retain the data. The company needs to be able to run SQL queries on the archived data to create annual reports. Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 682 answers & explanations
A company operates a web application in the us-east-I Region that uses Amazon EC2 instances behind an Application Load Balancer. The application uses an Amazon Aurora MySQL database and takes 15 minutes to start.
The company needs to implement a disaster recovery (DR) solution in the us-west-2 Region. The solution must have a recovery time objective (RTO) of 30 minutes and a recovery point objective (RPO) of 30 minutes. The solution must minimize costs.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company uses Amazon Neptune and an AWS Lambda function as part of a fraud detection solution The company has additional Neptune database clusters that are not part of the fraud detection solution.
The fraud detection Lambda function must follow the principle of least privilege to access the fraud detection data in the Neptune database.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A solutions architect needs to design a high-traffic static website. The website must be highly available and must provide the lowest possible latency to users across the globe.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is planning to deploy a business-critical application in the AWS Cloud. The application requires durable storage with consistent, low-latency performance.
Premium Solution Locked
Unlock all 682 answers & explanations
An ecommerce company hosts an application on AWS across multiple Availability Zones- The application experiences uniform load throughout most days.
The company hosts some components of the application in private subnets, The components need to access the internet to install and update patches A solutions architect needs to design a cost effective solution that provides secure outbound Internet connectivity for private subnets across multiple Availability Zones. The solution must maintain high availability
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company has a legacy .NET Framework application that runs on Windows Server 2012. The company wants to migrate the application to AWS. The company cannot rewrite code or update to the most recent version of the .NET Framework. The company needs to use AWS managed services to minimize operational responsibilities.
Which solution will meet these requirements with the LEAST administrative overhead?
Premium Solution Locked
Unlock all 682 answers & explanations
A company has a three-tier web application that processes orders from customers. The web tier consists of Amazon EC2 instances behind an Application Load Balancer. The processing tier consists of EC2 instances. The company decoupled the web tier and processing tier by using Amazon SQS. The storage layer uses Amazon DynamoDB.
At peak times, some users report order processing delays and halts. The company has noticed that during these delays, the EC2 instances are running at 100% CPU usage, and the SQS queue fills up. The peak times are variable and unpredictable.
The company needs to improve the performance of the application,
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs multiple web applications on Amazon EC2 instances behind a single Application Load Balancer (ALB). The application experiences unpredictable traffic spikes throughout each day. The traffic spikes cause high latency. The unpredictable spikes last less than 3 hours.
The company needs a solution to resolve the latency issue caused by traffic spikes.
Which solution will meet this requirement?
Premium Solution Locked
Unlock all 682 answers & explanations
An ecommerce company is redesigning a web application to run on the AWS Cloud. The application needs to store static website content and must use a Microsoft SQL Server database to store customer data. The company needs to deploy the application in a resilient way across multiple Availability Zones.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A solutions architect needs to build a log storage solution for a client. The client has an application that produces user activity logs that track user API calls to the application. The application typically produces 50 GB of logs each day. The client needs a storage solution that makes the logs available for occasional querying and analytics. Which solution will meet these requirements in the MOST cost-effective way?
Premium Solution Locked
Unlock all 682 answers & explanations
A large company requires a data backup strategy. The solution must replicate long-term backups from a source AWS account to a dedicated backup AWS account.
All backups must be encrypted. The encryption keys must be available for both encryption and decryption operations in the source account and the backup account Only specific AWS accounts, resource, and users must have access permissions for the encryption keys.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company hosts a PostgreSQL database on an Amazon EC2 instance. Database usage has increased recently. Users are experiencing higher latency during queries on the database.
The company needs to update the database to reduce latency for users, The new solution must achieve a recovery time objective (RTO) and a recovery point objective (RPO) of less than 5 minutes, The company also wants to deploy the database to multiple AWS Regions to meet new availability requirements.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company needs a data encryption solution for a machine learning (ML) process. The solution must use an AWS managed service. The ML process currently reads a large number of objects in Amazon S3 that are encrypted by a customer-managed AWS KMS key. The current process incurs significant costs because of excessive calls to AWS KMS to decrypt S3 objects. The company wants to reduce the costs of API calls to decrypt S3 objects.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company creates a VPC that has one public subnet and one private subnet. The company attaches an internet gateway to the VPC. An Application Load Balancer (ALB) in the public subnet communicates with Amazon EC2 instances in the private subnet.
The EC2 instances in the private subnet must be able to download operating system (OS) and application updates from the internet. The instances must not be accessible from the internet.
Which combination of steps will meet these requirements? (Select THREE.)
Premium Solution Locked
Unlock all 682 answers & explanations
A company is building a suite of RESTful microservices that will be exposed through public endpoints. The company requires a scalable solution to ensure that the microservices handle sudden traffic spikes from global users, minimize latency, and offload requests from the backend microservices.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs game applications on AWS. The company needs to collect, visualize, and analyze telemetry data from the company's game servers. The company wants to gain insights into the behavior, performance, and health of game servers in near real time.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs catalog, inventory, and checkout microservices on Amazon EKS. The company needs to route incoming HTTPS requests to the appropriate microservice based on the URL path.
Which solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 682 answers & explanations
A company has an application that runs on Amazon EC2 instances in an Auto Scaling group. The application uses hardcoded credentials to access an Amazon RDS database. To comply with new regulations, the company needs to automatically rotate the database password for the application service account every 90 days.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is building an ecommerce platform that will allow customers to place orders online. Customer traffic varies significantly. An order-processing microservice is running on a group of Amazon EC2 instances. A solutions architect must ensure that the application remains responsive and decoupled from the frontend. The application must also be able to reprocess orders that the application fails to process on the first attempt. Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A solutions architect needs to design a disaster recovery (DR) plan for an application on AWS. The application runs on Amazon EC2 instances behind an Application Load Balancer (ALB). The instances are in an Auto Scaling group. The application uses an Amazon Aurora PostgreSQL database. The recovery time objective (RTO) and recovery point objective (RPO) are 15 minutes each.
Which combination of steps should the solutions architect take to meet these requirements MOST cost-effectively? (Select TWO.)
Premium Solution Locked
Unlock all 682 answers & explanations
A software company recently modernized its video processing application to run on containers. Depending on the video length and quality, the video processing jobs could take 1 hour or more to finish The video processing jobs are expected to serve thousands of requests each second.
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs an SMB file server in an on-premises data center. The file server is running out of storage space. The company wants to migrate the SMB file server to AWS,
The company accesses files frequently for up to 7 days after creation. After 7 days, the company wants to move the files to storage that provides a maximum standard retrieval time of 24 hours.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A solutions architect is designing a workload that will store hourly energy consumption by business tenants in a building. The sensors will feed a database through HTTP requests that will add up usage for each tenant.
The solutions architect must use managed services when possible. The workload will receive more features in the future as the solutions architect adds independent components.
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 682 answers & explanations
A company uses AWS to run its workloads. The company uses AWS Organizations to manage its accounts. The company needs to identify which departments are responsible for specific costs.
New accounts are constantly created in the Organizations account structure. The Organizations continuous integration and continuous delivery (CIICD) framework already adds the populated department tag to
the AWS resources. The company wants to use an AWS Cost Explorer report to identify the service costs by department from all AWS accounts.
Which combination of steps will moot these requirements with the MOST operational efficiency? (Select TWO.)
Premium Solution Locked
Unlock all 682 answers & explanations
A company provides an API interface to customers so the customers can retrieve their financial information. The company expects a larger number of requests during peak usage times of the year.
The company requires the API to respond consistently with low latency to ensure customer satisfaction. The company needs to provide a compute host for the API.
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs several AWS Lambda functions in the same AWS Region. The company notices that some calls to the Lambda functions are throttling. A business-critical function named Function A runs 100 times each second, for an average of 7 seconds. Other Lambda functions that run in the same AWS account exceed the default quota. The quota is 1,000 concurrent invocations across all functions in the same Region.
A solutions architect needs to resolve the throttling issue for Function A within the account. The solutions architect must ensure that Function A meets its demands without impacting the other functions.
Which combination of configurations will meet these requirements with the LEAST operational overhead? (Select TWO.)
Premium Solution Locked
Unlock all 682 answers & explanations
A company recently migrated an application to AWS. The application runs on Amazon EC2 instances in an Auto Scaling group across multiple Availability Zones, The application stores data in an Amazon EFS file system that uses the EFS Infrequent Access (IA) storage class. The application indexes the company's files that are accessed
fewer than four times a year. The index is stored in an Amazon RDS for MySQL database.
The company wants to make some application and services changes to optimize storage costs.
Which solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 682 answers & explanations
A solutions architect manages a web application for a company. The application runs on Amazon EC2 instances in an Auto Scaling group. The Auto Scaling group configuration includes a minimum of 3 instances and a maximum of 300 instances. The maximum helps handle unpredictable, short-lived traffic surges.
The application must scale to meet demand. However, to help manage cost, the number of running instances should not exceed 180 for longer than I continuous hour.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs an application on premises. The application needs to periodically upload large files to an Amazon S3 bucket. A solutions architect needs a solution to provide the application with short-lived authenticated access to the S3 bucket. The solution must not use long-term credentials. The solution needs to be secure and scalable.
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is deploying an application that processes streaming data in near-real time. The company plans to use Amazon EC2 instances for the workload. The network architecture must be configurable to provide the lowest possible latency between nodose
Which networking solution meets these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company is developing a highly available natural language processing (NLP) application. The application handles large volumes of concurrent requests. The application performs NLP tasks such as entity recognition, sentiment analysis, and key phrase extraction on text data. The company needs to store data that the application processes in a highly available and scalable database. Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs code compilation tasks that span many virtual machines (VMs) in its on-premises data center. These tasks require low latency and high bandwidth between servers. The company wants to migrate this workload to run on Amazon EC2 instances in the AWS Cloud. After the migration, the workload must maintain low latency and high bandwidth between EC2 instances.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company has several Amazon EC2 instances in a private subnet, These EC2 instances host applications that read and write large amounts of data to and from Amazon
S3. Subnet routing currently directs all the traffic destined for the internet through a NAT gateway.
The company wants to reduce the data transfer costs associated with the Amazon S3 communication. The solution must not affect the ability of the applications to
communicate with Amazon S3 or the outside internet. The EC2 instances must continue to reside in a private subnet.
Which solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 682 answers & explanations
A company has a group of critical applications that run by using on-premises virtual machines (VMs). The applications use shared file storage to serve thousands of users. The company is currently migrating selected applications from on premises to Amazon EC2 instances.
A solutions architect needs to identify a storage solution capable of delivering high throughput to applications running on VMS both on premises and on AWS.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company has a serverless web application that is comprised of AWS Lambda functions. The application experiences spikes in traffic that cause increased latency because of cold starts.
The company wants to improve the application's ability to handle traffic spikes and to minimize latency. The solution must optimize costs during periods when traffic is low.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company has an application that runs on Amazon EC2 instances and uses an Amazon Aurora database. The EC2 instances connect to the Aurora database by using user names and passwords that the company stores locally in a file.
The company the user names and passwords every month. The company wants to minimize the operational overhead of credential management
Which solution will meet these requirements.
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs a fleet of Amazon EC2 On-Demand Instances to support a document processing application that has variable usage patterns. The company wants to optimize compute costs for the application. The company needs a solution that can tolerate occasional disruptions to document processing jobs.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs its infrastructure on AWS and has a registered base of 700,000 users for its document management application. The company intends to create a product that converts large .pdf files to .jpg image files. The .pdf files average 5 MB in size. The company needs to store the original files and the converted files. A solutions architect must design a scalable solution to accommodate demand that will grow rapidly over time.
Which solution meets these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 682 answers & explanations
A gaming company uses an Amazon CloudFront distribution to make files available for download for users around the world, The CloudFront distribution has a custom origin. The company wants to customize the files that are served to users from the cache and origin based on the country where each user is located.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company performs stateful, memory intensive jobs on Amazon EC2 On-Demand Instances in the company's development environment. The instances hold a large quantity of data in memory. The company wants to reduce compute costs in the development environment outside of business hours. The solution must not lose the data stored in memory and the instances must automatically resume when needed.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company has hired an external vendor to work in the company's AWS account. The vendor uses an automated tool that the vendor hosts in its own AWS account. The vendor does not have IAM access to the company's AWS account.
A solutions needs to grant access to the vendor
Which solution will meet these requirements MOST securely?
Premium Solution Locked
Unlock all 682 answers & explanations
A company's web application currently uses large sets of relational data that have table relationships in a MySQL database that runs on an Amazon EC2 instance. The web application has unpredictable and highly variable workloads. Outside of business hours, there are long periods of no database activity. The company has a backup of the existing database. The company needs a solution to optimize operational costs while allowing the database to automatically scale to meet demand. What solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
A company runs a nightly Python data aggregation script on an Amazon EC2 T family instance that runs Amazon Linux. Each script run takes about 40 minutes and cannot be interrupted. The company now must process five datasets at the same time so that all the datasets finish processing within 1 hour. The current EC2 instance cannot run more than one job at a time without exhausting resources.
The company wants the most cost-effective approach that includes minimal changes to the code.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 682 answers & explanations
Full Question Bank Locked
You have reached the end of the free study guide preview. Upgrade now to unlock all 682 questions and the full simulation engine.
Certification Path
Related Certifications
Customer Reviews
Global Community Feedback
David M.
"The practice engine is incredible. It feels exactly like the real testing environment and helped me build so much confidence."
Sarah J.
"The PDF is very well organized and the explanations for the answers are actually helpful, not just random text."
Michael C.
"I was skeptical, but the content is high quality and definitely worth the price. I passed on my first try!"