| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- // THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
- package s3
- import (
- "github.com/aws/aws-sdk-go/private/waiter"
- )
- func (c *S3) WaitUntilBucketExists(input *HeadBucketInput) error {
- waiterCfg := waiter.Config{
- Operation: "HeadBucket",
- Delay: 5,
- MaxAttempts: 20,
- Acceptors: []waiter.WaitAcceptor{
- {
- State: "success",
- Matcher: "status",
- Argument: "",
- Expected: 200,
- },
- {
- State: "success",
- Matcher: "status",
- Argument: "",
- Expected: 301,
- },
- {
- State: "success",
- Matcher: "status",
- Argument: "",
- Expected: 403,
- },
- {
- State: "retry",
- Matcher: "status",
- Argument: "",
- Expected: 404,
- },
- },
- }
- w := waiter.Waiter{
- Client: c,
- Input: input,
- Config: waiterCfg,
- }
- return w.Wait()
- }
- func (c *S3) WaitUntilBucketNotExists(input *HeadBucketInput) error {
- waiterCfg := waiter.Config{
- Operation: "HeadBucket",
- Delay: 5,
- MaxAttempts: 20,
- Acceptors: []waiter.WaitAcceptor{
- {
- State: "success",
- Matcher: "status",
- Argument: "",
- Expected: 404,
- },
- },
- }
- w := waiter.Waiter{
- Client: c,
- Input: input,
- Config: waiterCfg,
- }
- return w.Wait()
- }
- func (c *S3) WaitUntilObjectExists(input *HeadObjectInput) error {
- waiterCfg := waiter.Config{
- Operation: "HeadObject",
- Delay: 5,
- MaxAttempts: 20,
- Acceptors: []waiter.WaitAcceptor{
- {
- State: "success",
- Matcher: "status",
- Argument: "",
- Expected: 200,
- },
- {
- State: "retry",
- Matcher: "status",
- Argument: "",
- Expected: 404,
- },
- },
- }
- w := waiter.Waiter{
- Client: c,
- Input: input,
- Config: waiterCfg,
- }
- return w.Wait()
- }
- func (c *S3) WaitUntilObjectNotExists(input *HeadObjectInput) error {
- waiterCfg := waiter.Config{
- Operation: "HeadObject",
- Delay: 5,
- MaxAttempts: 20,
- Acceptors: []waiter.WaitAcceptor{
- {
- State: "success",
- Matcher: "status",
- Argument: "",
- Expected: 404,
- },
- },
- }
- w := waiter.Waiter{
- Client: c,
- Input: input,
- Config: waiterCfg,
- }
- return w.Wait()
- }
|