31 lines
621 B
Go
31 lines
621 B
Go
|
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
|
||
|
|
||
|
package ses
|
||
|
|
||
|
import (
|
||
|
"github.com/aws/aws-sdk-go/private/waiter"
|
||
|
)
|
||
|
|
||
|
func (c *SES) WaitUntilIdentityExists(input *GetIdentityVerificationAttributesInput) error {
|
||
|
waiterCfg := waiter.Config{
|
||
|
Operation: "GetIdentityVerificationAttributes",
|
||
|
Delay: 3,
|
||
|
MaxAttempts: 20,
|
||
|
Acceptors: []waiter.WaitAcceptor{
|
||
|
{
|
||
|
State: "success",
|
||
|
Matcher: "pathAll",
|
||
|
Argument: "VerificationAttributes.*.VerificationStatus",
|
||
|
Expected: "Success",
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
w := waiter.Waiter{
|
||
|
Client: c,
|
||
|
Input: input,
|
||
|
Config: waiterCfg,
|
||
|
}
|
||
|
return w.Wait()
|
||
|
}
|