class Aws::ElasticLoadBalancingV2::Waiters::TargetInService
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 (40) @option options [Integer] :delay (15) @option options [Proc] :before_attempt @option options [Proc] :before_wait
# File lib/aws-sdk-elasticloadbalancingv2/waiters.rb, line 265 def initialize(options) @client = options.fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 15, poller: Aws::Waiters::Poller.new( operation_name: :describe_target_health, acceptors: [ { "argument" => "target_health_descriptions[].target_health.state", "expected" => "healthy", "matcher" => "pathAll", "state" => "success" }, { "matcher" => "error", "expected" => "InvalidInstance", "state" => "retry" } ] ) }.merge(options)) end
Public Instance Methods
wait(params = {})
click to toggle source
@option (see Client#describe_target_health
) @return (see Client#describe_target_health
)
# File lib/aws-sdk-elasticloadbalancingv2/waiters.rb, line 291 def wait(params = {}) @waiter.wait(client: @client, params: params) end