12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- // THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
- package iam
- import (
- "github.com/aws/aws-sdk-go/private/waiter"
- )
- // WaitUntilInstanceProfileExists uses the IAM API operation
- // GetInstanceProfile 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 *IAM) WaitUntilInstanceProfileExists(input *GetInstanceProfileInput) error {
- waiterCfg := waiter.Config{
- Operation: "GetInstanceProfile",
- Delay: 1,
- MaxAttempts: 40,
- 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()
- }
- // WaitUntilUserExists uses the IAM API operation
- // GetUser 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 *IAM) WaitUntilUserExists(input *GetUserInput) error {
- waiterCfg := waiter.Config{
- Operation: "GetUser",
- Delay: 1,
- MaxAttempts: 20,
- Acceptors: []waiter.WaitAcceptor{
- {
- State: "success",
- Matcher: "status",
- Argument: "",
- Expected: 200,
- },
- {
- State: "retry",
- Matcher: "error",
- Argument: "",
- Expected: "NoSuchEntity",
- },
- },
- }
- w := waiter.Waiter{
- Client: c,
- Input: input,
- Config: waiterCfg,
- }
- return w.Wait()
- }
|