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.
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 |
# File 'lib/aws-sdk-eks/waiters.rb', line 319 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.
350 351 352 |
# File 'lib/aws-sdk-eks/waiters.rb', line 350 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeNodegroupResponse
Returns a response object which responds to the following methods:
-
#nodegroup => Types::Nodegroup
345 346 347 |
# File 'lib/aws-sdk-eks/waiters.rb', line 345 def wait(params = {}) @waiter.wait(client: @client, params: params) end |