-
Notifications
You must be signed in to change notification settings - Fork 937
Closed
Labels
closed-for-stalenessguidanceQuestion that needs advice or information.Question that needs advice or information.
Description
Describe the bug
Missing two methods in the builder:
builder.sourceBucket("source-bucket");
builder.sourceKey("test-documents/test.pdf");
I following the documentation from here , I created this:
CopyObjectRequest copyObjectRequest = CopyObjectRequest.builder()
.destinationBucket("destination-bucket")
.destinationKey("documents/test.pdf")
.sourceBucket("source-bucket")
.sourceKey("test-documents/test.pdf")
.build();
Expected behavior
Be able to set source bucket and key
.
Current behavior
missing methods in the version <aws.java.sdk.version>2.15.0</aws.java.sdk.version>
Steps to Reproduce
- Try the version I specified
- Create this code:
CopyObjectRequest copyObjectRequest = CopyObjectRequest.builder()
.destinationBucket("destination-bucket")
.destinationKey("documents/test.pdf")
.sourceBucket("source-bucket")
.sourceKey("test-documents/test.pdf")
.build();
Possible Solution
Add missing methods
Context
No response
AWS Java SDK version used
2.15.0
JDK version used
openjdk 11.0.10 2021-01-19
Operating System and version
MacOs Catalina, 10.15.7
Metadata
Metadata
Assignees
Labels
closed-for-stalenessguidanceQuestion that needs advice or information.Question that needs advice or information.