Class: Aws::Lambda::Waiters::PublishedVersionActive

Inherits:
Object
  • Object
show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/waiters.rb

Overview

Waits for the published version's State to be Active. This waiter uses GetFunctionConfiguration API. This should be used after new version is published.

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ PublishedVersionActive

Returns a new instance of PublishedVersionActive.

Parameters:

  • options (Hash)

Options Hash (options):

  • :client (required, Client)
  • :max_attempts (Integer) — default: 312
  • :delay (Integer) — default: 5
  • :before_attempt (Proc)
  • :before_wait (Proc)


336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/waiters.rb', line 336

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 312,
    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

Instance Method Details

#wait(params = {}) ⇒ Types::FunctionConfiguration

Returns a response object which responds to the following methods:

Parameters:

  • params (Hash) (defaults to: {})

    a customizable set of options

Options Hash (params):

  • :function_name (required, String)

    The name or ARN of the Lambda function, version, or alias.

    Name formats

    • Function namemy-function (name-only), my-function:v1 (with alias).

    • Function ARNarn:aws:lambda:us-west-2:123456789012:function:my-function.

    • Partial ARN123456789012:function:my-function.

    You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.

  • :qualifier (String)

    Specify a version or alias to get details about a published version of the function.

Returns:



369
370
371
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/waiters.rb', line 369

def wait(params = {})
  @waiter.wait(client: @client, params: params)
end