I am working on migrating some DynamoDB code from version 1 of the AWS Java SDK to version 2 of the SDK. I have been unable to find an equivalent code for the DynamoDbMapper.S3Link
in version 2 of the SDK. Does anyone know whether this ability was dropped? or do we need to do this via the S3 SDK now?
I have a few Pojos that look something like the following, so I am trying to figure out how to migrate these
class Pojo{
private S3Link link
}
Thank you!
That functionality is not yet possible using SDK V2 unfortunately. You will have to make the call to S3 first using the S3 client, then store the metadata on DynamoDB.