Class: Aws::Omics::Waiters::ReadSetActivationJobCompleted
- Inherits:
-
Object
- Object
- Aws::Omics::Waiters::ReadSetActivationJobCompleted
- Defined in:
- lib/aws-sdk-omics/waiters.rb
Overview
Wait until a job is completed.
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ ReadSetActivationJobCompleted
constructor
A new instance of ReadSetActivationJobCompleted.
-
#wait(params = {}) ⇒ Types::GetReadSetActivationJobResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ ReadSetActivationJobCompleted
Returns a new instance of ReadSetActivationJobCompleted.
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 |
# File 'lib/aws-sdk-omics/waiters.rb', line 378 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 20, delay: 30, poller: Aws::Waiters::Poller.new( operation_name: :get_read_set_activation_job, acceptors: [ { "matcher" => "path", "argument" => "status", "state" => "success", "expected" => "COMPLETED" }, { "matcher" => "path", "argument" => "status", "state" => "retry", "expected" => "SUBMITTED" }, { "matcher" => "path", "argument" => "status", "state" => "retry", "expected" => "IN_PROGRESS" }, { "matcher" => "path", "argument" => "status", "state" => "retry", "expected" => "CANCELLING" }, { "matcher" => "path", "argument" => "status", "state" => "failure", "expected" => "CANCELLED" }, { "matcher" => "path", "argument" => "status", "state" => "failure", "expected" => "FAILED" }, { "matcher" => "path", "argument" => "status", "state" => "failure", "expected" => "COMPLETED_WITH_FAILURES" } ] ) }.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.
440 441 442 |
# File 'lib/aws-sdk-omics/waiters.rb', line 440 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::GetReadSetActivationJobResponse
Returns a response object which responds to the following methods:
-
#id => String
-
#sequence_store_id => String
-
#status => String
-
#status_message => String
-
#creation_time => Time
-
#completion_time => Time
-
#sources => Array<Types::ActivateReadSetSourceItem>
435 436 437 |
# File 'lib/aws-sdk-omics/waiters.rb', line 435 def wait(params = {}) @waiter.wait(client: @client, params: params) end |