class Aws::EKS::Waiters::ClusterDeleted
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 (30) @option options [Proc] :before_attempt @option options [Proc] :before_wait
# File lib/aws-sdk-eks/waiters.rb, line 234 def initialize(options) @client = options.fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 30, poller: Aws::Waiters::Poller.new( operation_name: :describe_cluster, acceptors: [ { "expected" => "ACTIVE", "matcher" => "path", "state" => "failure", "argument" => "cluster.status" }, { "expected" => "CREATING", "matcher" => "path", "state" => "failure", "argument" => "cluster.status" }, { "expected" => "PENDING", "matcher" => "path", "state" => "failure", "argument" => "cluster.status" }, { "expected" => "ResourceNotFoundException", "matcher" => "error", "state" => "success" } ] ) }.merge(options)) end
Public Instance Methods
wait(params = {})
click to toggle source
@option (see Client#describe_cluster
) @return (see Client#describe_cluster
)
# File lib/aws-sdk-eks/waiters.rb, line 272 def wait(params = {}) @waiter.wait(client: @client, params: params) end