πŸ”

SAA-C03 β€” questions

Page 3 of 51 Β· 1019 total questions.

Topic 1 Β· Question 41

A company's application integrates with multiple software-as-a-service (SaaS) sources for data collection. The company runs Amazon EC2 instances to receive the data and to upload the data to an Amazon S3 bucket for analysis. The same EC2 instance that receives and uploads the data also sends a notification to the user when an upload is complete. The company has noticed slow application performance and wants to improve the performance as much as possible. Which solution will meet these requirements with the LEAST operational overhead?

  • ACreate an Auto Scaling group so that EC2 instances can scale out. Configure an S3 event notification to send events to an Amazon Simple Notification Service (Amazon SNS) topic when the upload to the S3 bucket is complete.
  • BCreate an Amazon AppFlow flow to transfer data between each SaaS source and the S3 bucket. Configure an S3 event notification to send events to an Amazon Simple Notification Service (Amazon SNS) topic when the upload to the S3 bucket is complete. (correct answer)
  • CCreate an Amazon EventBridge (Amazon CloudWatch Events) rule for each SaaS source to send output data. Configure the S3 bucket as the rule's target. Create a second EventBridge (Cloud Watch Events) rule to send events when the upload to the S3 bucket is complete. Configure an Amazon Simple Notification Service (Amazon SNS) topic as the second rule's target.
  • DCreate a Docker container to use instead of an EC2 instance. Host the containerized application on Amazon Elastic Container Service (Amazon ECS). Configure Amazon CloudWatch Container Insights to send events to an Amazon Simple Notification Service (Amazon SNS) topic when the upload to the S3 bucket is complete.
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Create an Amazon AppFlow flow to transfer data between each SaaS source and the S3 bucket. Configure an S3 event notification to send events to an Amazon Simple Notification Service (Amazon SNS) topic when the upload...

Explanation

Amazon S3 provides durable, scalable object storage that is fully managed. Amazon SNS is a managed pub/sub service for fan-out notifications to many subscribers. Amazon AppFlow securely transfers data between SaaS apps and AWS without code.

Topic 1 Β· Question 42

A company runs a highly available image-processing application on Amazon EC2 instances in a single VPC. The EC2 instances run inside several subnets across multiple Availability Zones. The EC2 instances do not communicate with each other. However, the EC2 instances download images from Amazon S3 and upload images to Amazon S3 through a single NAT gateway. The company is concerned about data transfer charges. What is the MOST cost-effective way for the company to avoid Regional data transfer charges?

  • ALaunch the NAT gateway in each Availability Zone.
  • BReplace the NAT gateway with a NAT instance.
  • CDeploy a gateway VPC endpoint for Amazon S3. (correct answer)
  • DProvision an EC2 Dedicated Host to run the EC2 instances.
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: Deploy a gateway VPC endpoint for Amazon S3.

Explanation

Amazon S3 provides durable, scalable object storage that is fully managed. A gateway VPC endpoint gives private, no-cost access to Amazon S3 and DynamoDB from within the VPC. A VPC endpoint provides private connectivity to AWS services without traversing the public internet. This option delivers the requirement at the lowest cost.

Topic 1 Β· Question 43

A company has an on-premises application that generates a large amount of time-sensitive data that is backed up to Amazon S3. The application has grown and there are user complaints about internet bandwidth limitations. A solutions architect needs to design a long-term solution that allows for both timely backups to Amazon S3 and with minimal impact on internet connectivity for internal users. Which solution meets these requirements?

  • AEstablish AWS VPN connections and proxy all traffic through a VPC gateway endpoint.
  • BEstablish a new AWS Direct Connect connection and direct backup traffic through this new connection. (correct answer)
  • COrder daily AWS Snowball devices. Load the data onto the Snowball devices and return the devices to AWS each day.
  • DSubmit a support ticket through the AWS Management Console. Request the removal of S3 service limits from the account.
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Establish a new AWS Direct Connect connection and direct backup traffic through this new connection.

Explanation

AWS Backup centrally automates and manages backups across AWS services. AWS Direct Connect provides a dedicated, consistent private network link between on premises and AWS.

Topic 1 Β· Question 44 Β· Select all that apply

A company has an Amazon S3 bucket that contains critical data. The company must protect the data from accidental deletion. Which combination of steps should a solutions architect take to meet these requirements? (Choose two.)

  • AEnable versioning on the S3 bucket. (correct answer)
  • BEnable MFA Delete on the S3 bucket. (correct answer)
  • CCreate a bucket policy on the S3 bucket.
  • DEnable default encryption on the S3 bucket.
  • ECreate a lifecycle policy for the objects in the S3 bucket.
Reveal answer & explanation
Correct answer: A, B

The correct answer is A, B. Option A: Enable versioning on the S3 bucket. Option B: Enable MFA Delete on the S3 bucket.

Explanation

Amazon S3 provides durable, scalable object storage that is fully managed.

Topic 1 Β· Question 45 Β· Select all that apply

A company has a data ingestion workflow that consists of the following: β€’ An Amazon Simple Notification Service (Amazon SNS) topic for notifications about new data deliveries β€’ An AWS Lambda function to process the data and record metadata The company observes that the ingestion workflow fails occasionally because of network connectivity issues. When such a failure occurs, the Lambda function does not ingest the corresponding data unless the company manually reruns the job. Which combination of actions should a solutions architect take to ensure that the Lambda function ingests all data in the future? (Choose two.)

  • ADeploy the Lambda function in multiple Availability Zones.
  • BCreate an Amazon Simple Queue Service (Amazon SQS) queue, and subscribe it to the SNS topic. (correct answer)
  • CIncrease the CPU and memory that are allocated to the Lambda function.
  • DIncrease provisioned throughput for the Lambda function.
  • EModify the Lambda function to read from an Amazon Simple Queue Service (Amazon SQS) queue. (correct answer)
Reveal answer & explanation
Correct answer: B, E

The correct answer is B, E. Option B: Create an Amazon Simple Queue Service (Amazon SQS) queue, and subscribe it to the SNS topic. Option E: Modify the Lambda function to read from an Amazon Simple Queue Service (Amazon SQS) queue.

Explanation

AWS Lambda runs code without provisioning servers and scales automatically, which minimizes operational overhead. Amazon SQS is a fully managed message queue that decouples components and absorbs traffic spikes. Amazon SNS is a managed pub/sub service for fan-out notifications to many subscribers.

Topic 1 Β· Question 46

A company has an application that provides marketing services to stores. The services are based on previous purchases by store customers. The stores upload transaction data to the company through SFTP, and the data is processed and analyzed to generate new marketing offers. Some of the files can exceed 200 GB in size. Recently, the company discovered that some of the stores have uploaded files that contain personally identifiable information (PII) that should not have been included. The company wants administrators to be alerted if PII is shared again. The company also wants to automate remediation. What should a solutions architect do to meet these requirements with the LEAST development effort?

  • AUse an Amazon S3 bucket as a secure transfer point. Use Amazon Inspector to scan the objects in the bucket. If objects contain PII, trigger an S3 Lifecycle policy to remove the objects that contain PII.
  • BUse an Amazon S3 bucket as a secure transfer point. Use Amazon Macie to scan the objects in the bucket. If objects contain PII, use Amazon Simple Notification Service (Amazon SNS) to trigger a notification to the administrators to remove the objects that contain PII. (correct answer)
  • CImplement custom scanning algorithms in an AWS Lambda function. Trigger the function when objects are loaded into the bucket. If objects contain PII, use Amazon Simple Notification Service (Amazon SNS) to trigger a notification to the administrators to remove the objects that contain PII.
  • DImplement custom scanning algorithms in an AWS Lambda function. Trigger the function when objects are loaded into the bucket. If objects contain PII, use Amazon Simple Email Service (Amazon SES) to trigger a notification to the administrators and trigger an S3 Lifecycle policy to remove the meats that contain PII.
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Use an Amazon S3 bucket as a secure transfer point. Use Amazon Macie to scan the objects in the bucket. If objects contain PII, use Amazon Simple Notification Service (Amazon SNS) to trigger a notification to the admi...

Explanation

Amazon S3 provides durable, scalable object storage that is fully managed. Amazon SNS is a managed pub/sub service for fan-out notifications to many subscribers. Amazon Macie discovers and protects sensitive data such as PII in S3. This option needs the least custom development effort.

Topic 1 Β· Question 47

A company needs guaranteed Amazon EC2 capacity in three specific Availability Zones in a specific AWS Region for an upcoming event that will last 1 week. What should the company do to guarantee the EC2 capacity?

  • APurchase Reserved Instances that specify the Region needed.
  • BCreate an On-Demand Capacity Reservation that specifies the Region needed.
  • CPurchase Reserved Instances that specify the Region and three Availability Zones needed.
  • DCreate an On-Demand Capacity Reservation that specifies the Region and three Availability Zones needed. (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Create an On-Demand Capacity Reservation that specifies the Region and three Availability Zones needed.

Topic 1 Β· Question 48

A company's website uses an Amazon EC2 instance store for its catalog of items. The company wants to make sure that the catalog is highly available and that the catalog is stored in a durable location. What should a solutions architect do to meet these requirements?

  • AMove the catalog to Amazon ElastiCache for Redis.
  • BDeploy a larger EC2 instance with a larger instance store.
  • CMove the catalog from the instance store to Amazon S3 Glacier Deep Archive.
  • DMove the catalog to an Amazon Elastic File System (Amazon EFS) file system. (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Move the catalog to an Amazon Elastic File System (Amazon EFS) file system.

Explanation

Amazon EFS is a shared, elastic NFS file system that multiple instances can mount concurrently across AZs. By spanning multiple Availability Zones / adding redundancy, this option provides the high availability and resilience required.

Topic 1 Β· Question 49

A company stores call transcript files on a monthly basis. Users access the files randomly within 1 year of the call, but users access the files infrequently after 1 year. The company wants to optimize its solution by giving users the ability to query and retrieve files that are less than 1-year-old as quickly as possible. A delay in retrieving older files is acceptable. Which solution will meet these requirements MOST cost-effectively?

  • AStore individual files with tags in Amazon S3 Glacier Instant Retrieval. Query the tags to retrieve the files from S3 Glacier Instant Retrieval.
  • BStore individual files in Amazon S3 Intelligent-Tiering. Use S3 Lifecycle policies to move the files to S3 Glacier Flexible Retrieval after 1 year. Query and retrieve the files that are in Amazon S3 by using Amazon Athena. Query and retrieve the files that are in S3 Glacier by using S3 Glacier Select. (correct answer)
  • CStore individual files with tags in Amazon S3 Standard storage. Store search metadata for each archive in Amazon S3 Standard storage. Use S3 Lifecycle policies to move the files to S3 Glacier Instant Retrieval after 1 year. Query and retrieve the files by searching for metadata from Amazon S3.
  • DStore individual files in Amazon S3 Standard storage. Use S3 Lifecycle policies to move the files to S3 Glacier Deep Archive after 1 year. Store search metadata in Amazon RDS. Query the files from Amazon RDS. Retrieve the files from S3 Glacier Deep Archive.
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Store individual files in Amazon S3 Intelligent-Tiering. Use S3 Lifecycle policies to move the files to S3 Glacier Flexible Retrieval after 1 year. Query and retrieve the files that are in Amazon S3 by using Amazon At...

Explanation

Amazon S3 Glacier offers low-cost archival storage for infrequently accessed data. S3 Intelligent-Tiering automatically moves objects between tiers to optimize cost with no operational effort. S3 Lifecycle policies automatically transition or expire objects to control storage cost. This option delivers the requirement at the lowest cost.

Topic 1 Β· Question 50

A company has a production workload that runs on 1,000 Amazon EC2 Linux instances. The workload is powered by third-party software. The company needs to patch the third-party software on all EC2 instances as quickly as possible to remediate a critical security vulnerability. What should a solutions architect do to meet these requirements?

  • ACreate an AWS Lambda function to apply the patch to all EC2 instances.
  • BConfigure AWS Systems Manager Patch Manager to apply the patch to all EC2 instances.
  • CSchedule an AWS Systems Manager maintenance window to apply the patch to all EC2 instances.
  • DUse AWS Systems Manager Run Command to run a custom command that applies the patch to all EC2 instances. (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Use AWS Systems Manager Run Command to run a custom command that applies the patch to all EC2 instances.

Explanation

Amazon EC2 provides resizable virtual servers when you need full control of the operating system. AWS Systems Manager operates and automates management of fleets of resources.

Topic 1 Β· Question 51 Β· Select all that apply

A company is developing an application that provides order shipping statistics for retrieval by a REST API. The company wants to extract the shipping statistics, organize the data into an easy-to-read HTML format, and send the report to several email addresses at the same time every morning. Which combination of steps should a solutions architect take to meet these requirements? (Choose two.)

  • AConfigure the application to send the data to Amazon Kinesis Data Firehose.
  • BUse Amazon Simple Email Service (Amazon SES) to format the data and to send the report by email. (correct answer)
  • CCreate an Amazon EventBridge (Amazon CloudWatch Events) scheduled event that invokes an AWS Glue job to query the application's API for the data.
  • DCreate an Amazon EventBridge (Amazon CloudWatch Events) scheduled event that invokes an AWS Lambda function to query the application's API for the data. (correct answer)
  • EStore the application data in Amazon S3. Create an Amazon Simple Notification Service (Amazon SNS) topic as an S3 event destination to send the report by email.
Reveal answer & explanation
Correct answer: B, D

The correct answer is B, D. Option B: Use Amazon Simple Email Service (Amazon SES) to format the data and to send the report by email. Option D: Create an Amazon EventBridge (Amazon CloudWatch Events) scheduled event that invokes an AWS Lambda function to query the application's API for the data.

Explanation

AWS Lambda runs code without provisioning servers and scales automatically, which minimizes operational overhead. Amazon EventBridge routes events between services with rules, enabling event-driven, decoupled architectures. Amazon CloudWatch collects metrics, logs and alarms to monitor and react to operational health.

Topic 1 Β· Question 52

A company wants to migrate its on-premises application to AWS. The application produces output files that vary in size from tens of gigabytes to hundreds of terabytes. The application data must be stored in a standard file system structure. The company wants a solution that scales automatically. is highly available, and requires minimum operational overhead. Which solution will meet these requirements?

  • AMigrate the application to run as containers on Amazon Elastic Container Service (Amazon ECS). Use Amazon S3 for storage.
  • BMigrate the application to run as containers on Amazon Elastic Kubernetes Service (Amazon EKS). Use Amazon Elastic Block Store (Amazon EBS) for storage.
  • CMigrate the application to Amazon EC2 instances in a Multi-AZ Auto Scaling group. Use Amazon Elastic File System (Amazon EFS) for storage. (correct answer)
  • DMigrate the application to Amazon EC2 instances in a Multi-AZ Auto Scaling group. Use Amazon Elastic Block Store (Amazon EBS) for storage.
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: Migrate the application to Amazon EC2 instances in a Multi-AZ Auto Scaling group. Use Amazon Elastic File System (Amazon EFS) for storage.

Explanation

Auto Scaling adjusts capacity automatically to match demand, improving availability and cost efficiency. Amazon EC2 provides resizable virtual servers when you need full control of the operating system. Amazon EFS is a shared, elastic NFS file system that multiple instances can mount concurrently across AZs. By spanning multiple Availability Zones / adding redundancy, this option provides the high availability and resilience required.

Topic 1 Β· Question 53

A company needs to store its accounting records in Amazon S3. The records must be immediately accessible for 1 year and then must be archived for an additional 9 years. No one at the company, including administrative users and root users, can be able to delete the records during the entire 10-year period. The records must be stored with maximum resiliency. Which solution will meet these requirements?

  • AStore the records in S3 Glacier for the entire 10-year period. Use an access control policy to deny deletion of the records for a period of 10 years.
  • BStore the records by using S3 Intelligent-Tiering. Use an IAM policy to deny deletion of the records. After 10 years, change the IAM policy to allow deletion.
  • CUse an S3 Lifecycle policy to transition the records from S3 Standard to S3 Glacier Deep Archive after 1 year. Use S3 Object Lock in compliance mode for a period of 10 years. (correct answer)
  • DUse an S3 Lifecycle policy to transition the records from S3 Standard to S3 One Zone-Infrequent Access (S3 One Zone-IA) after 1 year. Use S3 Object Lock in governance mode for a period of 10 years.
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: Use an S3 Lifecycle policy to transition the records from S3 Standard to S3 Glacier Deep Archive after 1 year. Use S3 Object Lock in compliance mode for a period of 10 years.

Explanation

S3 Glacier Deep Archive is the lowest-cost storage for long-term archival with retrieval in hours. Amazon S3 Glacier offers low-cost archival storage for infrequently accessed data. S3 Lifecycle policies automatically transition or expire objects to control storage cost. By spanning multiple Availability Zones / adding redundancy, this option provides the high availability and resilience required.

Topic 1 Β· Question 54

A company runs multiple Windows workloads on AWS. The company's employees use Windows file shares that are hosted on two Amazon EC2 instances. The file shares synchronize data between themselves and maintain duplicate copies. The company wants a highly available and durable storage solution that preserves how users currently access the files. What should a solutions architect do to meet these requirements?

  • AMigrate all the data to Amazon S3. Set up IAM authentication for users to access files.
  • BSet up an Amazon S3 File Gateway. Mount the S3 File Gateway on the existing EC2 instances.
  • CExtend the file share environment to Amazon FSx for Windows File Server with a Multi-AZ configuration. Migrate all the data to FSx for Windows File Server. (correct answer)
  • DExtend the file share environment to Amazon Elastic File System (Amazon EFS) with a Multi-AZ configuration. Migrate all the data to Amazon EFS.
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: Extend the file share environment to Amazon FSx for Windows File Server with a Multi-AZ configuration. Migrate all the data to FSx for Windows File Server.

Explanation

Amazon FSx for Windows File Server provides fully managed SMB/Windows shared file storage. Amazon FSx provides fully managed third-party file systems. AWS Config tracks resource configuration changes and evaluates compliance. By spanning multiple Availability Zones / adding redundancy, this option provides the high availability and resilience required.

Topic 1 Β· Question 55

A solutions architect is developing a VPC architecture that includes multiple subnets. The architecture will host applications that use Amazon EC2 instances and Amazon RDS DB instances. The architecture consists of six subnets in two Availability Zones. Each Availability Zone includes a public subnet, a private subnet, and a dedicated subnet for databases. Only EC2 instances that run in the private subnets can have access to the RDS databases. Which solution will meet these requirements?

  • ACreate a new route table that excludes the route to the public subnets' CIDR blocks. Associate the route table with the database subnets.
  • BCreate a security group that denies inbound traffic from the security group that is assigned to instances in the public subnets. Attach the security group to the DB instances.
  • CCreate a security group that allows inbound traffic from the security group that is assigned to instances in the private subnets. Attach the security group to the DB instances. (correct answer)
  • DCreate a new peering connection between the public subnets and the private subnets. Create a different peering connection between the private subnets and the database subnets.
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: Create a security group that allows inbound traffic from the security group that is assigned to instances in the private subnets. Attach the security group to the DB instances.

Topic 1 Β· Question 56

A company has registered its domain name with Amazon Route 53. The company uses Amazon API Gateway in the ca-central-1 Region as a public interface for its backend microservice APIs. Third-party services consume the APIs securely. The company wants to design its API Gateway URL with the company's domain name and corresponding certificate so that the third-party services can use HTTPS. Which solution will meet these requirements?

  • ACreate stage variables in API Gateway with Name="Endpoint-URL" and Value="Company Domain Name" to overwrite the default URL. Import the public certificate associated with the company's domain name into AWS Certificate Manager (ACM).
  • BCreate Route 53 DNS records with the company's domain name. Point the alias record to the Regional API Gateway stage endpoint. Import the public certificate associated with the company's domain name into AWS Certificate Manager (ACM) in the us-east-1 Region.
  • CCreate a Regional API Gateway endpoint. Associate the API Gateway endpoint with the company's domain name. Import the public certificate associated with the company's domain name into AWS Certificate Manager (ACM) in the same Region. Attach the certificate to the API Gateway endpoint. Configure Route 53 to route traffic to the API Gateway endpoint. (correct answer)
  • DCreate a Regional API Gateway endpoint. Associate the API Gateway endpoint with the company's domain name. Import the public certificate associated with the company's domain name into AWS Certificate Manager (ACM) in the us-east-1 Region. Attach the certificate to the API Gateway APIs. Create Route 53 DNS records with the company's domain name. Point an A record to the company's domain name.
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: Create a Regional API Gateway endpoint. Associate the API Gateway endpoint with the company's domain name. Import the public certificate associated with the company's domain name into AWS Certificate Manager (ACM) in...

Explanation

Amazon Route 53 provides DNS with health checks and routing policies for availability and latency. Amazon API Gateway is a fully managed front door for creating and securing APIs at scale. AWS Certificate Manager provisions and renews TLS certificates automatically.

Topic 1 Β· Question 57

A company is running a popular social media website. The website gives users the ability to upload images to share with other users. The company wants to make sure that the images do not contain inappropriate content. The company needs a solution that minimizes development effort. What should a solutions architect do to meet these requirements?

  • AUse Amazon Comprehend to detect inappropriate content. Use human review for low-confidence predictions.
  • BUse Amazon Rekognition to detect inappropriate content. Use human review for low-confidence predictions. (correct answer)
  • CUse Amazon SageMaker to detect inappropriate content. Use ground truth to label low-confidence predictions.
  • DUse AWS Fargate to deploy a custom machine learning model to detect inappropriate content. Use ground truth to label low-confidence predictions.
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Use Amazon Rekognition to detect inappropriate content. Use human review for low-confidence predictions.

Explanation

Amazon Rekognition adds image and video analysis with pre-trained models.

Topic 1 Β· Question 58

A company wants to run its critical applications in containers to meet requirements for scalability and availability. The company prefers to focus on maintenance of the critical applications. The company does not want to be responsible for provisioning and managing the underlying infrastructure that runs the containerized workload. What should a solutions architect do to meet these requirements?

  • AUse Amazon EC2 instances, and install Docker on the instances.
  • BUse Amazon Elastic Container Service (Amazon ECS) on Amazon EC2 worker nodes.
  • CUse Amazon Elastic Container Service (Amazon ECS) on AWS Fargate. (correct answer)
  • DUse Amazon EC2 instances from an Amazon Elastic Container Service (Amazon ECS)-optimized Amazon Machine Image (AMI).
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: Use Amazon Elastic Container Service (Amazon ECS) on AWS Fargate.

Explanation

AWS Fargate runs containers serverlessly so there are no EC2 hosts to manage or patch. Amazon ECS orchestrates containers and integrates natively with AWS networking and IAM.

Topic 1 Β· Question 59

A company hosts more than 300 global websites and applications. The company requires a platform to analyze more than 30 TB of clickstream data each day. What should a solutions architect do to transmit and process the clickstream data?

  • ADesign an AWS Data Pipeline to archive the data to an Amazon S3 bucket and run an Amazon EMR cluster with the data to generate analytics.
  • BCreate an Auto Scaling group of Amazon EC2 instances to process the data and send it to an Amazon S3 data lake for Amazon Redshift to use for analysis.
  • CCache the data to Amazon CloudFront. Store the data in an Amazon S3 bucket. When an object is added to the S3 bucket. run an AWS Lambda function to process the data for analysis.
  • DCollect the data from Amazon Kinesis Data Streams. Use Amazon Kinesis Data Firehose to transmit the data to an Amazon S3 data lake. Load the data in Amazon Redshift for analysis. (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Collect the data from Amazon Kinesis Data Streams. Use Amazon Kinesis Data Firehose to transmit the data to an Amazon S3 data lake. Load the data in Amazon Redshift for analysis.

Explanation

Amazon S3 provides durable, scalable object storage that is fully managed. Amazon Redshift is a managed petabyte-scale data warehouse for complex analytical queries. Kinesis Data Firehose delivers streaming data to destinations like S3/Redshift with no servers to manage.

Topic 1 Β· Question 60

A company has a website hosted on AWS. The website is behind an Application Load Balancer (ALB) that is configured to handle HTTP and HTTPS separately. The company wants to forward all requests to the website so that the requests will use HTTPS. What should a solutions architect do to meet this requirement?

  • AUpdate the ALB's network ACL to accept only HTTPS traffic.
  • BCreate a rule that replaces the HTTP in the URL with HTTPS.
  • CCreate a listener rule on the ALB to redirect HTTP traffic to HTTPS. (correct answer)
  • DReplace the ALB with a Network Load Balancer configured to use Server Name Indication (SNI).
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: Create a listener rule on the ALB to redirect HTTP traffic to HTTPS.

Showing questions 41–60 of 1019 Β· Page 3 of 51