• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..06-May-2021-

README.mdH A D06-May-2021421 159

putObjWithProcess.goH A D06-May-20212.1 KiB10180

README.md

1# Example
2
3This is an example using the AWS SDK for Go to upload object with progress.
4We use CustomReader to implement it
5
6
7# Usage
8
9The example uses the bucket name provided, one key for object, and output the progress to stdout.
10The Object size should larger than 5M or your will not see the progress
11
12```sh
13AWS_REGION=<region> go run -tags example putObjWithProcess.go <bucket> <key for object> <local file name>
14```
15