Uses of Class
com.amazonaws.services.s3.model.SSEAlgorithm
-
Packages that use SSEAlgorithm Package Description com.amazonaws.services.s3.model Classes modeling the various types represented by Amazon S3. -
-
Uses of SSEAlgorithm in com.amazonaws.services.s3.model
Methods in com.amazonaws.services.s3.model that return SSEAlgorithm Modifier and Type Method Description static SSEAlgorithm
SSEAlgorithm. fromString(String algorithm)
Returns the SSEAlgorithm enum corresponding to the given string; or null if and only if the given algorithm is null.static SSEAlgorithm
SSEAlgorithm. getDefault()
Returns the default server side encryption algorithm, which is AES256.static SSEAlgorithm
SSEAlgorithm. valueOf(String name)
Returns the enum constant of this type with the specified name.static SSEAlgorithm[]
SSEAlgorithm. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.amazonaws.services.s3.model with parameters of type SSEAlgorithm Modifier and Type Method Description void
GeneratePresignedUrlRequest. setSSEAlgorithm(SSEAlgorithm sseAlgorithm)
Sets the SSE algorithm for server side encryption.void
GeneratePresignedUrlRequest. setSSECustomerKeyAlgorithm(SSEAlgorithm sseAlgorithm)
Sets the use of SSE-C (Server Side Encryption with Customer Key) using the given encryption algorithm.GeneratePresignedUrlRequest
GeneratePresignedUrlRequest. withSSEAlgorithm(SSEAlgorithm sseAlgorithm)
Fluent API forGeneratePresignedUrlRequest.setSSEAlgorithm(SSEAlgorithm)
GeneratePresignedUrlRequest
GeneratePresignedUrlRequest. withSSECustomerKeyAlgorithm(SSEAlgorithm algorithm)
Fluent method forGeneratePresignedUrlRequest.setSSECustomerKeyAlgorithm(SSEAlgorithm)
.
-