class Aws::Lambda::Waiters::FunctionActive

Waits for the function's State to be Active.

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 (60) @option options [Integer] :delay (5) @option options [Proc] :before_attempt @option options [Proc] :before_wait

# File lib/aws-sdk-lambda/waiters.rb, line 87
def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 60,
    delay: 5,
    poller: Aws::Waiters::Poller.new(
      operation_name: :get_function_configuration,
      acceptors: [
        {
          "state" => "success",
          "matcher" => "path",
          "argument" => "state",
          "expected" => "Active"
        },
        {
          "state" => "failure",
          "matcher" => "path",
          "argument" => "state",
          "expected" => "Failed"
        },
        {
          "state" => "retry",
          "matcher" => "path",
          "argument" => "state",
          "expected" => "Pending"
        }
      ]
    )
  }.merge(options))
end

Public Instance Methods

wait(params = {}) click to toggle source

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

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