Class: Aws::LexModelsV2::Waiters::BotLocaleExpressTestingAvailable

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

Overview

Wait until a bot locale build is ready for express testing

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ BotLocaleExpressTestingAvailable

Returns a new instance of BotLocaleExpressTestingAvailable.

Parameters:

  • options (Hash)

Options Hash (options):

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


422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/waiters.rb', line 422

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_locale,
      acceptors: [
        {
          "expected" => "Built",
          "matcher" => "path",
          "state" => "success",
          "argument" => "bot_locale_status"
        },
        {
          "expected" => "ReadyExpressTesting",
          "matcher" => "path",
          "state" => "success",
          "argument" => "bot_locale_status"
        },
        {
          "expected" => "Deleting",
          "matcher" => "path",
          "state" => "failure",
          "argument" => "bot_locale_status"
        },
        {
          "expected" => "Failed",
          "matcher" => "path",
          "state" => "failure",
          "argument" => "bot_locale_status"
        },
        {
          "expected" => "NotBuilt",
          "matcher" => "path",
          "state" => "failure",
          "argument" => "bot_locale_status"
        }
      ]
    )
  }.merge(options))
end

Instance Method Details

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

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 associated with the locale.

  • :bot_version (required, String)

    The version of the bot associated with the locale.

  • :locale_id (required, String)

    The unique identifier of the locale to describe. The string must match one of the supported locales. For more information, see Supported languages.

Returns:



467
468
469
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/waiters.rb', line 467

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