Class: Aws::EKS::Waiters::NodegroupDeleted
- Inherits:
-
Object
- Object
- Aws::EKS::Waiters::NodegroupDeleted
- Defined in:
- lib/aws-sdk-eks/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ NodegroupDeleted
constructor
A new instance of NodegroupDeleted.
-
#wait(params = {}) ⇒ Types::DescribeNodegroupResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ NodegroupDeleted
Returns a new instance of NodegroupDeleted.
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 |
# File 'lib/aws-sdk-eks/waiters.rb', line 420 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 30, poller: Aws::Waiters::Poller.new( operation_name: :describe_nodegroup, acceptors: [ { "expected" => "DELETE_FAILED", "matcher" => "path", "state" => "failure", "argument" => "nodegroup.status" }, { "expected" => "ResourceNotFoundException", "matcher" => "error", "state" => "success" } ] ) }.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.
451 452 453 |
# File 'lib/aws-sdk-eks/waiters.rb', line 451 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeNodegroupResponse
Returns a response object which responds to the following methods:
-
#nodegroup => Types::Nodegroup
446 447 448 |
# File 'lib/aws-sdk-eks/waiters.rb', line 446 def wait(params = {}) @waiter.wait(client: @client, params: params) end |