Class: Aws::LexModelsV2::Waiters::BotVersionAvailable

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

Overview

Wait until a bot version is available

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ BotVersionAvailable

Returns a new instance of BotVersionAvailable.

Parameters:

  • options (Hash)

Options Hash (options):

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


485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/waiters.rb', line 485

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 35,
    delay: 10,
    poller: Aws::Waiters::Poller.new(
      operation_name: :describe_bot_version,
      acceptors: [
        {
          "expected" => "Available",
          "matcher" => "path",
          "state" => "success",
          "argument" => "bot_status"
        },
        {
          "expected" => "Deleting",
          "matcher" => "path",
          "state" => "failure",
          "argument" => "bot_status"
        },
        {
          "expected" => "Failed",
          "matcher" => "path",
          "state" => "failure",
          "argument" => "bot_status"
        },
        {
          "state" => "retry",
          "matcher" => "status",
          "expected" => 404
        }
      ]
    )
  }.merge(options))
end

Instance Method Details

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

Returns a response object which responds to the following methods:

Parameters:

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

    a customizable set of options

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot containing the version to return metadata for.

  • :bot_version (required, String)

    The version of the bot to return metadata for.

Returns:



523
524
525
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/waiters.rb', line 523

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