Free SAP-C01 Exam Braindumps (page: 41)

Page 41 of 134

A company is running an application that uses an Amazon ElastiCache for Redis cluster as a caching layer. A recent security audit revealed that the company has configured encryption at rest for ElastiCache. However, the company did not configure ElastiCache to use encryption in transit. Additionally, users can access the cache without authentication.

A solutions architect must make changes to require user authentication and to ensure that the company is using end-to-end encryption.

Which solution will meet these requirements?

  1. Create an AUTH token. Store the token in AWS System Manager Parameter Store, as an encrypted parameter. Create a new cluster with AUTH, and configure encryption in transit. Update the application to retrieve the AUTH token from Parameter Store when necessary and to use the AUTH token for authentication.
  2. Create an AUTH token. Store the token in AWS Secrets Manager. Configure the existing cluster to use the AUTH token, and configure encryption in transit. Update the application to retrieve the AUTH token from Secrets Manager when necessary and to use the AUTH token for authentication.
  3. Create an SSL certificate. Store the certificate in AWS Secrets Manager. Create a new cluster, and configure encryption in transit. Update the application to retrieve the SSL certificate from Secrets Manager when necessary and to use the certificate for authentication.
  4. Create an SSL certificate. Store the certificate in AWS Systems Manager Parameter Store, as an encrypted advanced parameter. Update the existing cluster to configure encryption in transit. Update the application to retrieve the SSL certificate from Parameter Store when necessary and to use the certificate for authentication.

Answer(s): B

Explanation:

The selected solution is:
B) Create an AUTH token. Store the token in AWS Secrets Manager. Configure the existing cluster to use the AUTH token, and configure encryption in transit. Update the application to retrieve the AUTH token from Secrets Manager when necessary and to use the AUTH token for authentication.
Reasoning:
1.Authentication: By creating an AUTH token, the solution implements user authentication for accessing the Amazon ElastiCache for Redis cluster, which addresses the audit finding of allowing access without authentication.
2.Storing the AUTH Token Securely: Using AWS Secrets Manager to store the AUTH token ensures that it is kept secure and encrypted, which is a best practice for managing sensitive information. Secrets Manager provides easy retrieval and management of the AUTH token.
3.Configuring Encryption in Transit: Configuring the existing ElastiCache cluster to use encryption in transit ensures that data exchanged between the client application and the Redis cluster is secure from eavesdropping or tampering.
4.Least Operational Overhead: This approach allows the company to make necessary changes to the existing setup with minimal disruption while effectively meeting both the authentication and encryption requirements.
Overall, this solution addresses both security audit concerns effectively while ensuring ease of management and implementation.



A company is running a compute workload by using Amazon EC2 Spot Instances that are in an Auto Scaling group. The launch template uses two placement groups and a single instance type.

Recently, a monitoring system reported Auto Scaling instance launch failures that correlated with longer wait times for system users. The company needs to improve the overall reliability of the workload.

Which solution will meet this requirement?

  1. Replace the launch template with a launch configuration to use an Auto Scaling group that uses attribute-based instance type selection.
  2. Create a new launch template version that uses attribute-based instance type selection. Configure the Auto Scaling group to use the new launch template version.
  3. Update the launch template Auto Scaling group to increase the number of placement groups.
  4. Update the launch template to use a larger instance type.

Answer(s): B

Explanation:

B) Create a new launch template version that uses attribute-based instance type selection. Configure the Auto Scaling group to use the new launch template version.
1.Attribute-Based Instance Type Selection: This allows the Auto Scaling group to automatically select from multiple instance types, increasing the chances of successfully launching instances.
2.Improving Reliability: Using multiple instance types helps mitigate launch failures, especially during Spot Instance unavailability, enhancing overall reliability.
3.Flexibility: This method optimizes resource allocation and usage across different instance types, maintaining compute capacity without excessive costs.
4.Minimal Changes Required: Updating to a new launch template version is straightforward and maintains existing configurations.
This solution effectively addresses the need for improved workload reliability while leveraging the cost benefits of Spot Instances.



A company is migrating a document processing workload to AWS. The company has updated many applications to natively use the Amazon S3 API to store, retrieve, and modify documents that a processing server generates at a rate of approximately 5 documents every second. After the document processing is finished, customers can download the documents directly from Amazon S3.

During the migration, the company discovered that it could not immediately update the processing server that generates many documents to support the S3 API. The server runs on Linux and requires fast local access to the files that the server generates and modifies. When the server finishes processing, the files must be available to the public for download within 30 minutes.

Which solution will meet these requirements with the LEAST amount of effort?

  1. Migrate the application to an AWS Lambda function. Use the AWS SDK for Java to generate, modify, and access the files that the company stores directly in Amazon S3.
  2. Set up an Amazon S3 File Gateway and configure a file share that is linked to the document store. Mount the file share on an Amazon EC2 instance by using NFS. When changes occur in Amazon S3, initiate a RefreshCache API call to update the S3 File Gateway.
  3. Configure Amazon FSx for Lustre with an import and export policy. Link the new file system to an S3 bucket. Install the Lustre client and mount the document store to an Amazon EC2 instance by using NFS.
  4. Configure AWS DataSync to connect to an Amazon EC2 instance. Configure a task to synchronize the generated files to and from Amazon S3.

Answer(s): B

Explanation:

B) Set up an Amazon S3 File Gateway and configure a file share that is linked to the document store. Mount the file share on an Amazon EC2 instance by using NFS. When changes occur in Amazon S3, initiate a RefreshCache API call to update the S3 File Gateway.
1.Immediate Access: The S3 File Gateway provides fast local access to files while still leveraging Amazon S3 for storage, allowing the processing server to operate without immediate changes.
2.Seamless Integration: By mounting the file share on the EC2 instance using NFS, the server can interact with files in a familiar manner while they are stored in S3.
3.Public Accessibility: Once the documents are processed, they can be made available in Amazon S3 for public download within the required timeframe.
4.Minimal Effort: This solution requires minimal changes to the existing infrastructure and avoids the complexities of modifying the processing server to natively use the S3 API.



A delivery company is running a serverless solution in the AWS Cloud. The solution manages user data, delivery information, and past purchase details. The solution consists of several microservices. The central user service stores sensitive data in an Amazon DynamoDB table. Several of the other microservices store a copy of parts of the sensitive data in different storage services.

The company needs the ability to delete user information upon request. As soon as the central user service deletes a user, every other microservice must also delete its copy of the data immediately.

Which solution will meet these requirements?

  1. Activate DynamoDB Streams on the DynamoDB table. Create an AWS Lambda trigger for the DynamoDB stream that will post events about user deletion in an Amazon Simple Queue Service (Amazon SQS) queue. Configure each microservice to poll the queue and delete the user from the DynamoDB table.
  2. Set up DynamoDB event notifications on the DynamoDB table. Create an Amazon Simple Notification Service (Amazon SNS) topic as a target for the DynamoDB event notification. Configure each microservice to subscribe to the SNS topic and to delete the user from the DynamoDB table.
  3. Configure the central user service to post an event on a custom Amazon EventBridge event bus when the company deletes a user. Create an EventBridge rule for each microservice to match the user deletion event pattern and invoke logic in the microservice to delete the user from the DynamoDB table.
  4. Configure the central user service to post a message on an Amazon Simple Queue Service (Amazon SQS) queue when the company deletes a user. Configure each microservice to create an event filter on the SQS queue and to delete the user from the DynamoDB table.

Answer(s): C

Explanation:

C) Configure the central user service to post an event on a custom Amazon EventBridge event bus when the company deletes a user. Create an EventBridge rule for each microservice to match the user deletion event pattern and invoke logic in the microservice to delete the user from the DynamoDB table.
1.Event-Driven Architecture: Using Amazon EventBridge allows for a decoupled architecture where microservices can react to specific events (in this case, user deletions) without needing direct coupling to the central user service.
2.Immediate Action: When the central user service deletes a user, it triggers an event that is published to EventBridge. Each microservice can subscribe to these events, allowing them to take immediate action in response to the deletion.
3.Scalability and Flexibility: This solution scales well with the addition of new microservices since they can simply subscribe to the EventBridge event bus without any changes to the central user service.
4.Reduced Complexity: It simplifies the workflow as each microservice only needs to implement logic to handle deletion events rather than managing its own polling or direct notifications.



Page 41 of 134



Post your Comments and Discuss Amazon SAP-C01 exam with other Community members:

Mike commented on October 08, 2024
Not bad at all
CANADA
upvote

Petro UA commented on October 01, 2024
hate DNS questions. So need to practice more
UNITED STATES
upvote

Gilbert commented on September 14, 2024
Cant wait to pass mine
Anonymous
upvote

Paresh commented on April 19, 2023
There were only 3 new questions that I did not see in this exam dumps. There rest of the questions were all word by word from this dump.
UNITED STATES
upvote

Matthew commented on October 18, 2022
An extremely helpful study package. I highly recommend.
UNITED STATES
upvote

Peter commented on June 23, 2022
I thought these were practice exam questions but they turned out to be real questoins from the actual exam.
NETHERLANDS
upvote

Henry commented on September 29, 2021
I do not have the words to thank you guys. Passing this exam was creting many scary thoughts. I am gold I used your braindumps and passed. I can get a beer and relax now.
AUSTRALIA
upvote

Nik commented on April 12, 2021
I would not be able to pass my exam without your help. You guys rock!
SINGAPOR
upvote

Rohit commented on January 09, 2021
Thank you for the 50% sale. I really appreicate this price cut during this extra ordinary time where everyone is having financial problem.
INDIA
upvote

Roger-That commented on December 23, 2020
The 20% holiday discount is a sweet deal. Thank you for the discount code.
UNITED STATES
upvote

Duke commented on October 23, 2020
It is helpful. Questions are real. Purcahse is easy but the only problem, there is no option to pay in Euro. Only USD.
GERMANY
upvote

Tan Jin commented on September 09, 2020
The questions from this exam dumps is valid. I got 88% in my exam today.
SINGAPORE
upvote

Dave commented on November 05, 2019
Useful practice questions to get a feel of the actual exam. Some of the answers are not correct so please exercise caution.
EUROPEAN UNION
upvote

Je commented on October 02, 2018
Great
UNITED STATES
upvote

Invisible Angel commented on January 11, 2018
Have yet to try. But most recommend it
NEW ZEALAND
upvote

Mic commented on December 26, 2017
Nice dumps, site is secure and checkout process is a breeze.
UNITED STATES
upvote