| 123456789101112131415161718192021222324252627282930 |
- // 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()
- }
|