Class: Aws::EKS::Waiters::NodegroupActive
- Inherits:
 - 
      Object
      
        
- Object
 - Aws::EKS::Waiters::NodegroupActive
 
 
- Defined in:
 - lib/aws-sdk-eks/waiters.rb
 
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
 
Instance Method Summary collapse
- 
  
    
      #initialize(options)  ⇒ NodegroupActive 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of NodegroupActive.
 - 
  
    
      #wait(params = {})  ⇒ Types::DescribeNodegroupResponse 
    
    
  
  
  
  
  
  
  
  
  
    
Returns a response object which responds to the following methods:.
 
Constructor Details
#initialize(options) ⇒ NodegroupActive
Returns a new instance of NodegroupActive.
      376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399  | 
    
      # File 'lib/aws-sdk-eks/waiters.rb', line 376 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 80, delay: 30, poller: Aws::Waiters::Poller.new( operation_name: :describe_nodegroup, acceptors: [ { "expected" => "CREATE_FAILED", "matcher" => "path", "state" => "failure", "argument" => "nodegroup.status" }, { "expected" => "ACTIVE", "matcher" => "path", "state" => "success", "argument" => "nodegroup.status" } ] ) }.merge()) end  | 
  
Instance Attribute Details
#waiter ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
      408 409 410  | 
    
      # File 'lib/aws-sdk-eks/waiters.rb', line 408 def waiter @waiter end  | 
  
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeNodegroupResponse
Returns a response object which responds to the following methods:
- 
#nodegroup => Types::Nodegroup
 
      403 404 405  | 
    
      # File 'lib/aws-sdk-eks/waiters.rb', line 403 def wait(params = {}) @waiter.wait(client: @client, params: params) end  |