-
Notifications
You must be signed in to change notification settings - Fork 168
Closed
Description
In version 3.0.0, S3MessageHandler
depends on Base64
and Md5Utils
:
Lines 25 to 26 in 2e27339
import com.amazonaws.util.Base64; | |
import com.amazonaws.util.Md5Utils; |
These classes come from aws-java-sdk-core
v1, which is a transitive dependency of the (optional) kinesis client.
com.amazonaws.util.Md5Utils
should be replaced with software.amazon.awssdk.utils.Md5Utils
, and com.amazonaws.util.Base64#encodeAsString
should be replaced with software.amazon.awssdk.utils.BinaryUtils#toBase64
.