Your company requires that all data sent to external storage be encrypted before being sent. Which Amazon Simple Storage Service (Amazon S3) encryption solution will meet this requirement?

A. Server-Side Encryption (SSE) with AWS-managed keys (SSE-S3)
B. SSE with customer-provided keys (SSE-C)
C. Client-side encryption with customer-managed keys
D. Server-side encryption with AWS Key Management Service (AWS KMS) keys (SSEKMS)

Answer: C. Client-side encryption with customer-managed keys

Computer Science & Information Technology

You might also like to view...

A presentation ________ can be customized by changing the colors, fonts, and effects applied to a presentation

Fill in the blank(s) with correct word

Computer Science & Information Technology

Which of the following statements is false?

Consider the statement: ``` throw new ArgumentOutOfRangeException(0); ``` a) For values outside proper ranges, an app can throw an exception of type ArgumentOutOfRangeException (namespace System), which notifies the client code that an invalid argument was passed to the method. b) This throw statement creates a new object of type ArgumentOutOfRangeException. c) The parentheses following the class name indicate a call to the ArgumentOutOfRangeException constructor. d) After the exception object is created, the statement after the throw statement is executed—this is called the resumption model of exception handling.

Computer Science & Information Technology