SAA-C03 Exam Details

  • Exam Code
    :SAA-C03
  • Exam Name
    :AWS Certified Solutions Architect - Associate (SAA-C03)
  • Certification
    :Amazon Certifications
  • Vendor
    :Amazon
  • Total Questions
    :1524 Q&As
  • Last Updated
    :Jun 01, 2026

Amazon SAA-C03 Online Questions & Answers

  • Question 471:

    A company wants to restrict access to the content of one of its main web applications and to protect the content by using authorization techniques available on AWS. The company wants to implement a serverless architecture and an authentication solution for fewer than 100 users. The solution needs to integrate with the main web application and serve web content globally. The solution must also scale as the company's user base grows while providing the lowest login latency possible.

    Which solution will meet these requirements MOST cost-effectively?

    A. Use Amazon Cognito for authentication. Use Lambda@Edge for authorization. Use Amazon CloudFront to serve the web application globally.
    B. Use AWS Directory Service for Microsoft Active Directory for authentication. Use AWS Lambda for authorization. Use an Application Load Balancer to serve the web application globally.
    C. Use Amazon Cognito for authentication. Use AWS Lambda for authorization. Use Amazon S3 Transfer Acceleration to serve the web application globally.
    D. Use AWS Directory Service for Microsoft Active Directory for authentication. Use Lambda@Edge for authorization. Use AWS Elastic Beanstalk to serve the web application globally.

  • Question 472:

    A company hosts a three-tier web application on Amazon EC2 instances in a single Availability Zone. The web application uses a self-managed MySQL database that is hosted on an EC2 instance to store data in an Amazon Elastic Block Store (Amazon EBS) volume. The MySQL database currently uses a 1 TB Provisioned IOPS SSD (io2) EBS volume. The company expects traffic of 1,000 IOPS for both reads and writes at peak traffic.

    The company wants to minimize any disruptions, stabilize performance, and reduce costs while retaining the capacity for double the IOPS. The company wants to move the database tier to a fully managed solution that is highly available and fault tolerant.

    Which solution will meet these requirements MOST cost-effectively?

    A. Use a Multi-AZ deployment of an Amazon RDS for MySQL DB instance with an io2 Block Express EBS volume.
    B. Use a Multi-AZ deployment of an Amazon RDS for MySQL DB instance with a General Purpose SSD (gp2) EBS volume.
    C. Use Amazon S3 Intelligent-Tiering access tiers.
    D. Use two large EC2 instances to host the database in active-passive mode.

  • Question 473:

    A company runs its production workload on an Amazon Aurora MySQL DB cluster that includes six Aurora Replicas. The company wants near-real-time reporting queries from one of its departments to be automatically distributed across three of the Aurora Replicas. Those three replicas have a different compute and memory specification from the rest of the DB cluster.

    Which solution meets these requirements?

    A. Create and use a custom endpoint for the workload
    B. Create a three-node cluster clone and use the reader endpoint
    C. Use any of the instance endpoints for the selected three nodes
    D. Use the reader endpoint to automatically distribute the read-only workload

  • Question 474:

    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.

    A. Create EBS snapshots to back up the data.
    B. Create an Amazon S3 bucket. Use the S3 Glacier Deep Archive storage class to back up the data.
    C. Create an Amazon S3 bucket. Use the S3 Glacier Flexible Retrieval storage class to back up the data.
    D. Create an Amazon Elastic File System (Amazon EFS) file system to back up the data.

  • Question 475:

    A company wants to run applications in containers in the AWS Cloud. These applications are stateless and can tolerate disruptions within the underlying infrastructure. The company needs a solution that minimizes cost and operational overhead.

    What should a solutions architect do to meet these requirements?

    A. Use Spot Instances in an Amazon EC2 Auto Scaling group to run the application containers.
    B. Use Spot Instances in an Amazon Elastic Kubernetes Service (Amazon EKS) managed node group.
    C. Use On-Demand Instances in an Amazon EC2 Auto Scaling group to run the application containers.
    D. Use On-Demand Instances in an Amazon Elastic Kubernetes Service (Amazon EKS) managed node group.

  • Question 476:

    A company is planning to migrate a commercial off-the-shelf application from its on-premises data center to AWS. The software has a software licensing model using sockets and cores with predictable capacity and uptime requirements.

    The company wants to use its existing licenses, which were purchased earlier this year.

    Which Amazon EC2 pricing option is the MOST cost-effective?

    A. Dedicated Reserved Hosts
    B. Dedicated On-Demand Hosts
    C. Dedicated Reserved Instances
    D. Dedicated On-Demand Instances

  • Question 477:

    A company has NFS servers in an on-premises data center that need to periodically back up small amounts of data to Amazon S3.

    Which solution meets these requirements and is MOST cost-effective?

    A. Set up AWS Glue to copy the data from the on-premises servers to Amazon S3.
    B. Set up an AWS DataSync agent on the on-premises servers, and sync the data to Amazon S3.
    C. Set up an SFTP sync using AWS Transfer for SFTP to sync data from on premises to Amazon S3.
    D. Set up an AWS Direct Connect connection between the on-premises data center and a VPC, and copy the data to Amazon S3.

  • Question 478:

    An ecommerce company wants to collect user clickstream data from the company's website for real-time analysis. The website experiences fluctuating traffic patterns throughout the day. The company needs a scalable solution that can adapt to varying levels of traffic.

    Which solution will meet these requirements?

    A. Use a data stream in Amazon Kinesis Data Streams in on-demand mode to capture the clickstream data. Use AWS Lambda to process the data in real time.
    B. Use Amazon Kinesis Data Firehose to capture the clickstream data. Use AWS Glue to process the data in real time.
    C. Use Amazon Kinesis Video Streams to capture the clickstream data. Use AWS Glue to process the data in real time.
    D. Use Amazon Managed Service for Apache Flink (previously known as Amazon Kinesis Data Analytics) to capture the clickstream data. Use AWS Lambda to process the data in real time.

  • Question 479:

    A company is building a serverless application that processes large volumes of data from a mobile app. A Lambda function processes the data and stores it in DynamoDB. The company must ensure the application can recover from failures and continue processing without losing records.

    Which solution will meet these requirements?

    A. Configure the Lambda function with a dead-letter queue (DLQ) using Amazon SQS. Retry failed records from the DLQ with exponential backoff.
    B. Configure the Lambda function to read records from Amazon Data Firehose. Replay Firehose records in case of failures.
    C. Use Amazon OpenSearch Service to store failed records. Configure Lambda to retry failed records from OpenSearch. Use Amazon EventBridge for orchestration.
    D. Use Amazon SNS to store failed records. Configure Lambda to retry records from SNS. Use Amazon API Gateway to orchestrate retries.

  • Question 480:

    A developer is creating a serverless application that performs video encoding. The encoding process runs as background jobs and takes several minutes to encode each video. The process must not send an immediate result to users. The developer is using Amazon API Gateway to manage an API for the application. The developer needs to run test invocations and request validations. The developer must distribute API keys to control access to the API.

    Which solution will meet these requirements?

    A. Create an HTTP API. Create an AWS Lambda function to handle the encoding jobs. Integrate the function with the HTTP API. Use the Event invocation type to call the Lambda function.
    B. Create a REST API with the default endpoint type. Create an AWS Lambda function to handle the encoding jobs. Integrate the function with the REST API. Use the Event invocation type to call the Lambda function.
    C. Create an HTTP API. Create an AWS Lambda function to handle the encoding jobs. Integrate the function with the HTTP API. Use the RequestResponse invocation type to call the Lambda function.
    D. Create a REST API with the default endpoint type. Create an AWS Lambda function to handle the encoding jobs. Integrate the function with the REST API. Use the RequestResponse invocation type to call the Lambda function.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Amazon exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your SAA-C03 exam preparations and Amazon certification application, do not hesitate to visit our Vcedump.com to find your solutions here.