Class: Aws::EKS::Waiters::FargateProfileDeleted
- Inherits:
-
Object
- Object
- Aws::EKS::Waiters::FargateProfileDeleted
- Defined in:
- lib/aws-sdk-eks/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ FargateProfileDeleted
constructor
A new instance of FargateProfileDeleted.
-
#wait(params = {}) ⇒ Types::DescribeFargateProfileResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ FargateProfileDeleted
Returns a new instance of FargateProfileDeleted.
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 |
# File 'lib/aws-sdk-eks/waiters.rb', line 333 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 60, delay: 30, poller: Aws::Waiters::Poller.new( operation_name: :describe_fargate_profile, acceptors: [ { "expected" => "DELETE_FAILED", "matcher" => "path", "state" => "failure", "argument" => "fargate_profile.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.
364 365 366 |
# File 'lib/aws-sdk-eks/waiters.rb', line 364 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeFargateProfileResponse
Returns a response object which responds to the following methods:
-
#fargate_profile => Types::FargateProfile
359 360 361 |
# File 'lib/aws-sdk-eks/waiters.rb', line 359 def wait(params = {}) @waiter.wait(client: @client, params: params) end |