You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discussed on Discord, the CopyObjectRequest case class doesn't have the sourceBucket and sourceKey fields.
Current workaround for anyone with the same issue is to wrap around the Java class:
importsoftware.amazon.awssdk.services.s3.model.CopyObjectRequest as JCopyObjectRequestimportzio.aws.s3.model.*valreq=CopyObjectRequest.wrap(
JCopyObjectRequest
.builder()
.sourceBucket("foo")
.sourceKey("bar")
// And so on
.build()
).asEditable
The text was updated successfully, but these errors were encountered:
As discussed on Discord, the
CopyObjectRequest
case class doesn't have thesourceBucket
andsourceKey
fields.Current workaround for anyone with the same issue is to wrap around the Java class:
The text was updated successfully, but these errors were encountered: