Free AWS-SOLUTIONS-ARCHITECT-PROFESSIONAL Exam Braindumps (page: 76)

Page 76 of 134

An online survey company runs its application in the AWS Cloud. The application is distributed and consists of microservices that run in an automatically scaled Amazon Elastic Container Service (Amazon ECS) cluster. The ECS cluster is a target for an Application Load Balancer (ALB). The ALB is a custom origin for an Amazon CloudFront distribution.

The company has a survey that contains sensitive data. The sensitive data must be encrypted when it moves through the application. The application's data-handling microservice is the only microservice that should be able to decrypt the data

Which solution will meet these requirements?

  1. Create a symmetric AWS Key Management Service (AWS KMS) key that is dedicated to the data-handling microservice. Create a field-level encryption profile and a configuration. Associate the KMS key and the configuration with the CloudFront cache behavior.
  2. Create an RSA key pair that is dedicated to the data-handing microservice. Upload the public key to the CloudFront distribution. Create a field-level encryption profile and a configuration. Add the configuration to the CloudFront cache behavior.
  3. Create a symmetric AWS Key Management Service (AWS KMS) key that is dedicated to the data-handling microservice. Create a Lambda@Edge function. Program the function to use the KMS key to encrypt the sensitive data.
  4. Create an RSA key pair that is dedicated to the data-handling microservice. Create a Lambda@Edge function. Program the function to use the private key of the RSA key pair to encrypt the sensitive data.

Answer(s): B

Explanation:

B) is the correct solution. Here's why:
-Field-level encryption in Amazon CloudFront is designed for protecting sensitive information in web requests by encrypting the data at the field level before the data is sent to the origin. It ensures that only specific parts of the sensitive data are encrypted.
-The RSA key pair approach is ideal in this scenario. The public key is uploaded to CloudFront, and CloudFront uses it to encrypt sensitive data fields in the request.
-The data-handling microservice is the only microservice that has access to the private key of the RSA key pair. This ensures that only this microservice can decrypt the data.
Other options like using symmetric AWS KMS keys or Lambda@Edge do not directly apply to this field-level encryption requirement. CloudFront with RSA encryption is purpose-built for this type of sensitive data protection in transit.



A solutions architect is determining the DNS strategy for an existing VPC. The VPC is provisioned to use the 10.24.34.0/24 CIDR block. The VPC also uses Amazon Route 53 Resolver for DNS. New requirements mandate that DNS queries must use private hosted zones. Additionally instances that have public IP addresses must receive corresponding public hostnames

Which solution will meet these requirements to ensure that the domain names are correctly resolved within the VPC?

  1. Create a private hosted zone. Activate the enableDnsSupport attribute and the enableDnsHostnames attribute for the VPC. Update the VPC DHCP options set to include domain-name-servers=10.24.34.2.
  2. Create a private hosted zone Associate the private hosted zone with the VPC. Activate the enableDnsSupport attribute and the enableDnsHostnames attribute for the VPC. Create a new VPC DHCP options set, and configure domain-name-servers=AmazonProvidedDNS. Associate the new DHCP options set with the VPC.
  3. Deactivate the enableDnsSupport attribute for the VPActivate the enableDnsHostnames attribute for the VPCreate a new VPC DHCP options set, and configure doman-name-servers=10.24.34.2. Associate the new DHCP options set with the VP
  4. Create a private hosted zone. Associate the private hosted zone with the VPC. Activate the enableDnsSupport attribute for the VPC. Deactivate the enableDnsHostnames attribute for the VPC. Update the VPC DHCP options set to include domain-name-servers=AmazonProvidedDNS.

Answer(s): B

Explanation:

B) is the correct solution. Here's why:
1.Private Hosted Zone: To meet the requirement that DNS queries must use private hosted zones, you need to create a private hosted zone and associate it with the VPC.
2.DNS Support and Hostnames:
oThe enableDnsSupport attribute must be activated to ensure that instances in the VPC can communicate with the Amazon-provided DNS server.
oThe enableDnsHostnames attribute must also be activated to ensure that instances with public IP addresses can receive corresponding public DNS hostnames.
3.VPC DHCP Options Set: To ensure the domain names are correctly resolved and that Amazon-provided DNS servers are used, you need to create a new VPC DHCP options set. The domain-name-servers should be set to AmazonProvidedDNS, which ensures the correct DNS resolution for public and private addresses within the VPC.
Other options either deactivate necessary attributes or provide incorrect DNS settings, which would not meet the requirements for both public hostnames and private hosted zones.



A data analytics company has an Amazon Redshift cluster that consists of several reserved nodes. The cluster is experiencing unexpected bursts of usage because a team of employees is compiling a deep audit analysis report. The queries to generate the report are complex read queries and are CPU intensive.

Business requirements dictate that the cluster must be able to service read and write queries at all times. A solutions architect must devise a solution that accommodates the bursts of usage.

Which solution meets these requirements MOST cost-effectively?

  1. Provision an Amazon EMR cluster Offload the complex data processing tasks.
  2. Deploy an AWS Lambda function to add capacity to the Amazon Redshift cluster by using a classic resize operation when the cluster’s CPU metrics in Amazon CloudWatch reach 80%.
  3. Deploy an AWS Lambda function to add capacity to the Amazon Redshift cluster by using an elastic resize operation when the cluster’s CPU metrics in Amazon CloudWatch reach 80%.
  4. Turn on the Concurrency Scaling feature for the Amazon Redshift cluster.

Answer(s): D

Explanation:

D) Turning on the Concurrency Scaling feature for the Amazon Redshift cluster is the most cost-effective and appropriate solution for accommodating bursts in usage.
-Concurrency Scaling automatically adds and removes extra capacity in response to demand spikes, ensuring that your queries are always serviced without affecting ongoing workloads. It allows you to handle sudden spikes in query volume without the need to provision additional nodes manually or scale the cluster, making it a flexible and cost-efficient option.
-This solution meets the requirement of handling both read and write queries at all times without significant changes to the existing infrastructure.
Other options:
-A) Offloading complex queries to Amazon EMR could be more costly and complex than needed.
-B & C) Lambda with a classic or elastic resize operation would introduce delays during resizing, which might not handle the immediate bursts in demand efficiently.



A research center is migrating to the AWS Cloud and has moved its on-premises 1 PB object storage to an Amazon S3 bucket. One hundred scientists are using this object storage to store their work-related documents. Each scientist has a personal folder on the object store. All the scientists are members of a single IAM user group.

The research center's compliance officer is worried that scientists will be able to access each other's work. The research center has a strict obligation to report on which scientist accesses which documents. The team that is responsible for these reports has little AWS experience and wants a ready-to-use solution that minimizes operational overhead.

Which combination of actions should a solutions architect take to meet these requirements? (Choose two.)

  1. Create an identity policy that grants the user read and write access. Add a condition that specifies that the S3 paths must be prefixed with $(aws:username). Apply the policy on the scientists’ IAM user group.
  2. Configure a trail with AWS CloudTrail to capture all object-level events in the S3 bucket. Store the trail output in another S3 bucket. Use Amazon Athena to query the logs and generate reports.
  3. Enable S3 server access logging. Configure another S3 bucket as the target for log delivery. Use Amazon Athena to query the logs and generate reports.
  4. Create an S3 bucket policy that grants read and write access to users in the scientists’ IAM user group.
    E. Configure a trail with AWS CloudTrail to capture all object-level events in the S3 bucket and write the events to Amazon CloudWatch. Use the Amazon Athena CloudWatch connector to query the logs and generate reports.

Answer(s): A,B

Explanation:

To meet the research center's requirement of securing the scientists' work and reporting on access to the documents, the following steps should be taken:
A) Create an identity policy that grants the users access to their own documents. By adding a condition that specifies the S3 paths must be prefixed with $(aws:username), you ensure that each scientist can only access their personal folder. This enforces proper access control so that scientists cannot view or modify each other's work.
B) Configure AWS CloudTrail to capture all object-level events in the S3 bucket. CloudTrail can log details such as which user accessed or modified which objects in S3. Storing the output in another S3 bucket and using Amazon Athena to query the logs provides an easy, ready-to-use solution for generating reports on access activity. This minimizes operational overhead and gives the compliance team visibility into object-level events.
Other options:
-C) S3 server access logging can capture access events, but it lacks the detailed, easy-to-query logging provided by CloudTrail.
-D) A general S3 bucket policy would not restrict access on a per-user basis, so it would not meet the requirement of limiting access to personal folders.
-E) Writing CloudTrail events directly to CloudWatch introduces unnecessary complexity compared to storing them in S3 and querying with Athena.
Thus, A and B provide the best combination to meet both security and reporting requirements with minimal operational overhead.



Page 76 of 134



Post your Comments and Discuss Amazon AWS-SOLUTIONS-ARCHITECT-PROFESSIONAL exam with other Community members:

Zak commented on June 28, 2024
@AppleKid, I manged to pass this exam after failing once. Do not set for your exam without memorizing these questions. These are what you will see in the real exam.
Anonymous
upvote

Apple Kid commented on June 26, 2024
Did anyone gave exam recently and tell if these are good?
Anonymous
upvote

Captain commented on June 26, 2024
This is so helpful
Anonymous
upvote

udaya commented on April 25, 2024
stulll learning and seem to be questions are helpful
Anonymous
upvote

Jerry commented on February 18, 2024
very good for exam !!!!
HONG KONG
upvote

AWS-Guy commented on February 16, 2024
Precise and to the point. I aced this exam and now going for the next exam. Very great full to this site and it's wonderful content.
CANADA
upvote

Jerry commented on February 12, 2024
very good exam stuff
HONG KONG
upvote

travis head commented on November 16, 2023
I gave the Amazon SAP-C02 tests and prepared from this site as it has latest mock tests available which helped me evaluate my performance and score 919/1000
Anonymous
upvote

Weed Flipper commented on October 07, 2020
This is good stuff man.
CANADA
upvote

IT-Guy commented on September 29, 2020
Xengine software is good and free. Too bad it is only in English and no support for French.
FRANCE
upvote

pema commented on August 30, 2019
Can I have the latest version of this exam?
GERMANY
upvote

MrSimha commented on February 23, 2019
Thank you
Anonymous
upvote

Phil C. commented on November 12, 2018
To soon to tell, but I will be back to post a review after my exam.
Anonymous
upvote

MD EJAZ ALI TANWIR commented on August 20, 2017
This is valid dump in US. Thank you guys for providing this.
UNITED STATES
upvote

flypig commented on June 02, 2017
The Braindumps will short my ready time for this exam!
CHINA
upvote