class Aws::LexModelsV2::Waiters::BotLocaleExpressTestingAvailable
Wait until a bot locale build is ready for express testing
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 (35) @option options [Integer] :delay (10) @option options [Proc] :before_attempt @option options [Proc] :before_wait
# File 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
Public Instance Methods
wait(params = {})
click to toggle source
@option (see Client#describe_bot_locale
) @return (see Client#describe_bot_locale
)
# File lib/aws-sdk-lexmodelsv2/waiters.rb, line 467 def wait(params = {}) @waiter.wait(client: @client, params: params) end