Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .doc_gen/metadata/s3_metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,19 @@ s3_CreateBucket:
- aws-cli.bash-linux.s3.CreateBucket
services:
s3: {CreateBucket}
s3_UploadPartCopy:
languages:
Java:
versions:
- sdk_version: 2
github: javav2/example_code/s3
sdkguide:
excerpts:
- description:
snippet_tags:
- s3.java2.multi_copy.main
services:
s3: {UploadPartCopy}
s3_CopyObject:
languages:
.NET:
Expand Down
1 change: 1 addition & 0 deletions javav2/example_code/s3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ Code excerpts that show you how to call individual service functions.
- [PutObjectRetention](src/main/java/com/example/s3/lockscenario/S3LockActions.java#L61)
- [RestoreObject](src/main/java/com/example/s3/RestoreObject.java#L6)
- [SelectObjectContent](src/main/java/com/example/s3/async/SelectObjectContentExample.java#L5)
- [UploadPartCopy](src/main/java/com/example/s3/scenario/S3Actions.java#L379)

### Scenarios

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@
* 4. Uploads an object using multipart upload.
* 5. List all objects located in the Amazon S3 bucket.
* 6. Copies the object to another Amazon S3 bucket.
* 7. Deletes the object from the Amazon S3 bucket.
* 8. Deletes the Amazon S3 bucket.
* 7. Copy the object to another Amazon S3 bucket using multi copy.
* 8. Deletes the object from the Amazon S3 bucket.
* 9. Deletes the Amazon S3 bucket.
*/

public class S3Scenario {
Expand Down
Loading