class Aws::IAM::Waiters::PolicyExists

Attributes

waiter[R]

@api private

Public Class Methods

new(options) click to toggle source

@param [Hash] options @option options [required, Client] :client @option options [Integer] :max_attempts (20) @option options [Integer] :delay (1) @option options [Proc] :before_attempt @option options [Proc] :before_wait

# File lib/aws-sdk-iam/waiters.rb, line 129
def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 20,
    delay: 1,
    poller: Aws::Waiters::Poller.new(
      operation_name: :get_policy,
      acceptors: [
        {
          "state" => "success",
          "matcher" => "status",
          "expected" => 200
        },
        {
          "state" => "retry",
          "matcher" => "error",
          "expected" => "NoSuchEntity"
        }
      ]
    )
  }.merge(options))
end

Public Instance Methods

wait(params = {}) click to toggle source

@option (see Client#get_policy) @return (see Client#get_policy)

# File lib/aws-sdk-iam/waiters.rb, line 154
def wait(params = {})
  @waiter.wait(client: @client, params: params)
end