Class: Aws::NeptuneGraph::Waiters::ImportTaskSuccessful

Inherits:
Object
  • Object
show all
Defined in:
gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/waiters.rb

Overview

Wait until Import Task is Successful

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ ImportTaskSuccessful

Returns a new instance of ImportTaskSuccessful.

Parameters:

  • options (Hash)

Options Hash (options):

  • :client (required, Client)
  • :max_attempts (Integer) — default: 480
  • :delay (Integer) — default: 60
  • :before_attempt (Proc)
  • :before_wait (Proc)


327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/waiters.rb', line 327

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 480,
    delay: 60,
    poller: Aws::Waiters::Poller.new(
      operation_name: :get_import_task,
      acceptors: [
        {
          "matcher" => "path",
          "argument" => "status",
          "state" => "failure",
          "expected" => "CANCELLING"
        },
        {
          "matcher" => "path",
          "argument" => "status",
          "state" => "failure",
          "expected" => "CANCELLED"
        },
        {
          "matcher" => "path",
          "argument" => "status",
          "state" => "failure",
          "expected" => "ROLLING_BACK"
        },
        {
          "matcher" => "path",
          "argument" => "status",
          "state" => "failure",
          "expected" => "FAILED"
        },
        {
          "matcher" => "path",
          "argument" => "status",
          "state" => "success",
          "expected" => "SUCCEEDED"
        }
      ]
    )
  }.merge(options))
end

Instance Method Details

#wait(params = {}) ⇒ Types::GetImportTaskOutput

Returns a response object which responds to the following methods:

Parameters:

  • params (Hash) (defaults to: {})

    a customizable set of options

Options Hash (params):

  • :task_identifier (required, String)

    The unique identifier of the import task.

Returns:



372
373
374
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/waiters.rb', line 372

def wait(params = {})
  @waiter.wait(client: @client, params: params)
end