aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go
diff options
context:
space:
mode:
authorappilon <apilon@hashicorp.com>2019-02-27 16:43:31 -0500
committerGitHub <noreply@github.com>2019-02-27 16:43:31 -0500
commit844b5a68d8af4791755b8f0ad293cc99f5959183 (patch)
tree255c250a5c9d4801c74092d33b7337d8c14438ff /vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go
parent303b299eeb6b06e939e35905e4b34cb410dd9dc3 (diff)
parent15c0b25d011f37e7c20aeca9eaf461f78285b8d9 (diff)
downloadterraform-provider-statuscake-844b5a68d8af4791755b8f0ad293cc99f5959183.tar.gz
terraform-provider-statuscake-844b5a68d8af4791755b8f0ad293cc99f5959183.tar.zst
terraform-provider-statuscake-844b5a68d8af4791755b8f0ad293cc99f5959183.zip
Merge pull request #27 from terraform-providers/go-modules-2019-02-22
[MODULES] Switch to Go Modules
Diffstat (limited to 'vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go')
-rw-r--r--vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go b/vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go
index cccfa8c..2596c69 100644
--- a/vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go
+++ b/vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go
@@ -11,7 +11,7 @@ import (
11 11
12// WaitUntilBucketExists uses the Amazon S3 API operation 12// WaitUntilBucketExists uses the Amazon S3 API operation
13// HeadBucket to wait for a condition to be met before returning. 13// HeadBucket to wait for a condition to be met before returning.
14// If the condition is not meet within the max attempt window an error will 14// If the condition is not met within the max attempt window, an error will
15// be returned. 15// be returned.
16func (c *S3) WaitUntilBucketExists(input *HeadBucketInput) error { 16func (c *S3) WaitUntilBucketExists(input *HeadBucketInput) error {
17 return c.WaitUntilBucketExistsWithContext(aws.BackgroundContext(), input) 17 return c.WaitUntilBucketExistsWithContext(aws.BackgroundContext(), input)
@@ -72,7 +72,7 @@ func (c *S3) WaitUntilBucketExistsWithContext(ctx aws.Context, input *HeadBucket
72 72
73// WaitUntilBucketNotExists uses the Amazon S3 API operation 73// WaitUntilBucketNotExists uses the Amazon S3 API operation
74// HeadBucket to wait for a condition to be met before returning. 74// HeadBucket to wait for a condition to be met before returning.
75// If the condition is not meet within the max attempt window an error will 75// If the condition is not met within the max attempt window, an error will
76// be returned. 76// be returned.
77func (c *S3) WaitUntilBucketNotExists(input *HeadBucketInput) error { 77func (c *S3) WaitUntilBucketNotExists(input *HeadBucketInput) error {
78 return c.WaitUntilBucketNotExistsWithContext(aws.BackgroundContext(), input) 78 return c.WaitUntilBucketNotExistsWithContext(aws.BackgroundContext(), input)
@@ -118,7 +118,7 @@ func (c *S3) WaitUntilBucketNotExistsWithContext(ctx aws.Context, input *HeadBuc
118 118
119// WaitUntilObjectExists uses the Amazon S3 API operation 119// WaitUntilObjectExists uses the Amazon S3 API operation
120// HeadObject to wait for a condition to be met before returning. 120// HeadObject to wait for a condition to be met before returning.
121// If the condition is not meet within the max attempt window an error will 121// If the condition is not met within the max attempt window, an error will
122// be returned. 122// be returned.
123func (c *S3) WaitUntilObjectExists(input *HeadObjectInput) error { 123func (c *S3) WaitUntilObjectExists(input *HeadObjectInput) error {
124 return c.WaitUntilObjectExistsWithContext(aws.BackgroundContext(), input) 124 return c.WaitUntilObjectExistsWithContext(aws.BackgroundContext(), input)
@@ -169,7 +169,7 @@ func (c *S3) WaitUntilObjectExistsWithContext(ctx aws.Context, input *HeadObject
169 169
170// WaitUntilObjectNotExists uses the Amazon S3 API operation 170// WaitUntilObjectNotExists uses the Amazon S3 API operation
171// HeadObject to wait for a condition to be met before returning. 171// HeadObject to wait for a condition to be met before returning.
172// If the condition is not meet within the max attempt window an error will 172// If the condition is not met within the max attempt window, an error will
173// be returned. 173// be returned.
174func (c *S3) WaitUntilObjectNotExists(input *HeadObjectInput) error { 174func (c *S3) WaitUntilObjectNotExists(input *HeadObjectInput) error {
175 return c.WaitUntilObjectNotExistsWithContext(aws.BackgroundContext(), input) 175 return c.WaitUntilObjectNotExistsWithContext(aws.BackgroundContext(), input)