aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/aws/aws-sdk-go/service/s3/doc_custom.go
diff options
context:
space:
mode:
authorAlex Pilon <apilon@hashicorp.com>2019-02-22 18:24:37 -0500
committerAlex Pilon <apilon@hashicorp.com>2019-02-22 18:24:37 -0500
commit15c0b25d011f37e7c20aeca9eaf461f78285b8d9 (patch)
tree255c250a5c9d4801c74092d33b7337d8c14438ff /vendor/github.com/aws/aws-sdk-go/service/s3/doc_custom.go
parent07971ca38143c5faf951d152fba370ddcbe26ad5 (diff)
downloadterraform-provider-statuscake-15c0b25d011f37e7c20aeca9eaf461f78285b8d9.tar.gz
terraform-provider-statuscake-15c0b25d011f37e7c20aeca9eaf461f78285b8d9.tar.zst
terraform-provider-statuscake-15c0b25d011f37e7c20aeca9eaf461f78285b8d9.zip
deps: github.com/hashicorp/terraform@sdk-v0.11-with-go-modules
Updated via: go get github.com/hashicorp/terraform@sdk-v0.11-with-go-modules and go mod tidy
Diffstat (limited to 'vendor/github.com/aws/aws-sdk-go/service/s3/doc_custom.go')
-rw-r--r--vendor/github.com/aws/aws-sdk-go/service/s3/doc_custom.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/doc_custom.go b/vendor/github.com/aws/aws-sdk-go/service/s3/doc_custom.go
index b794a63..39b912c 100644
--- a/vendor/github.com/aws/aws-sdk-go/service/s3/doc_custom.go
+++ b/vendor/github.com/aws/aws-sdk-go/service/s3/doc_custom.go
@@ -35,7 +35,7 @@
35// 35//
36// The s3manager package's Downloader provides concurrently downloading of Objects 36// The s3manager package's Downloader provides concurrently downloading of Objects
37// from S3. The Downloader will write S3 Object content with an io.WriterAt. 37// from S3. The Downloader will write S3 Object content with an io.WriterAt.
38// Once the Downloader instance is created you can call Upload concurrently from 38// Once the Downloader instance is created you can call Download concurrently from
39// multiple goroutines safely. 39// multiple goroutines safely.
40// 40//
41// // The session the S3 Downloader will use 41// // The session the S3 Downloader will use
@@ -56,7 +56,7 @@
56// Key: aws.String(myString), 56// Key: aws.String(myString),
57// }) 57// })
58// if err != nil { 58// if err != nil {
59// return fmt.Errorf("failed to upload file, %v", err) 59// return fmt.Errorf("failed to download file, %v", err)
60// } 60// }
61// fmt.Printf("file downloaded, %d bytes\n", n) 61// fmt.Printf("file downloaded, %d bytes\n", n)
62// 62//