aws-doc-sdk-examples
aws-doc-sdk-examples copied to clipboard
Epic: S3 MVP examples
Implement this scenario across all SDKs and use the service action calls to create API examples.
Scenario
Getting started
How to create a bucket and move objects into and out of it. Follows the actions in S3 Getting started.
- Create a bucket.
- Upload a local file to the bucket.
- Download the object to a local file.
- Copy the object to a different "folder" in the bucket.
- List objects in the bucket.
- Delete all objects in the bucket.
- Delete the bucket.
Service actions
These actions are used in the above scenario and must also be included as single-API examples.
CreateBucket UploadFile (or PutObject) DownloadFile (or GetObject) CopyObject ListObjects DeleteObjects DeleteBucket
User stories
- [x] #2655
- [x] #2656
- [x] #2657
- [x] #2658
- [x] #2659
- [x] #2660
- [x] #2661
- [x] #2662
- [x] #2663
- [x] #2664
- [x] #3094