class Aws::AutoScaling::Waiters::GroupExists

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 (10) @option options [Integer] :delay (5) @option options [Proc] :before_attempt @option options [Proc] :before_wait

# File lib/aws-sdk-autoscaling/waiters.rb, line 86
def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 10,
    delay: 5,
    poller: Aws::Waiters::Poller.new(
      operation_name: :describe_auto_scaling_groups,
      acceptors: [
        {
          "argument" => "length(auto_scaling_groups) > `0`",
          "expected" => true,
          "matcher" => "path",
          "state" => "success"
        },
        {
          "argument" => "length(auto_scaling_groups) > `0`",
          "expected" => false,
          "matcher" => "path",
          "state" => "retry"
        }
      ]
    )
  }.merge(options))
end

Public Instance Methods

wait(params = {}) click to toggle source

@option (see Client#describe_auto_scaling_groups) @return (see Client#describe_auto_scaling_groups)

# File lib/aws-sdk-autoscaling/waiters.rb, line 113
def wait(params = {})
  @waiter.wait(client: @client, params: params)
end