Class: Aws::ElasticLoadBalancingV2::Waiters::TargetDeregistered

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

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ TargetDeregistered

Returns a new instance of TargetDeregistered.

Parameters:

  • options (Hash)

Options Hash (options):

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


222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/waiters.rb', line 222

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: [
        {
          "matcher" => "error",
          "expected" => "InvalidTarget",
          "state" => "success"
        },
        {
          "argument" => "target_health_descriptions[].target_health.state",
          "expected" => "unused",
          "matcher" => "pathAll",
          "state" => "success"
        }
      ]
    )
  }.merge(options))
end

Instance Method Details

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

Returns a response object which responds to the following methods:

Parameters:

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

    a customizable set of options

Options Hash (params):

  • :target_group_arn (required, String)

    The Amazon Resource Name (ARN) of the target group.

  • :targets (Array<Types::TargetDescription>)

    The targets.

  • :include (Array<String>)

    Used to inclue anomaly detection information.

Returns:



248
249
250
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/waiters.rb', line 248

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