terraform/vendor/github.com/aws/aws-sdk-go/service/glacier/waiters.go

74 lines
1.6 KiB
Go
Raw Normal View History

// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
package glacier
import (
"github.com/aws/aws-sdk-go/private/waiter"
)
2016-10-17 23:21:08 +02:00
// WaitUntilVaultExists uses the Amazon Glacier API operation
// DescribeVault to wait for a condition to be met before returning.
// If the condition is not meet within the max attempt window an error will
// be returned.
func (c *Glacier) WaitUntilVaultExists(input *DescribeVaultInput) error {
waiterCfg := waiter.Config{
Operation: "DescribeVault",
Delay: 3,
MaxAttempts: 15,
Acceptors: []waiter.WaitAcceptor{
{
State: "success",
Matcher: "status",
Argument: "",
Expected: 200,
},
{
State: "retry",
Matcher: "error",
Argument: "",
Expected: "ResourceNotFoundException",
},
},
}
w := waiter.Waiter{
Client: c,
Input: input,
Config: waiterCfg,
}
return w.Wait()
}
2016-10-17 23:21:08 +02:00
// WaitUntilVaultNotExists uses the Amazon Glacier API operation
// DescribeVault to wait for a condition to be met before returning.
// If the condition is not meet within the max attempt window an error will
// be returned.
func (c *Glacier) WaitUntilVaultNotExists(input *DescribeVaultInput) error {
waiterCfg := waiter.Config{
Operation: "DescribeVault",
Delay: 3,
MaxAttempts: 15,
Acceptors: []waiter.WaitAcceptor{
{
State: "retry",
Matcher: "status",
Argument: "",
Expected: 200,
},
{
State: "success",
Matcher: "error",
Argument: "",
Expected: "ResourceNotFoundException",
},
},
}
w := waiter.Waiter{
Client: c,
Input: input,
Config: waiterCfg,
}
return w.Wait()
}