Class: Aws::EC2::Waiters::ExportTaskCompleted

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

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ ExportTaskCompleted

Returns a new instance of ExportTaskCompleted.

Parameters:

  • options (Hash)

Options Hash (options):

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


371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/waiters.rb', line 371

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 40,
    delay: 15,
    poller: Aws::Waiters::Poller.new(
      operation_name: :describe_export_tasks,
      acceptors: [{
        "expected" => "completed",
        "matcher" => "pathAll",
        "state" => "success",
        "argument" => "export_tasks[].state"
      }]
    )
  }.merge(options))
end

Instance Method Details

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

Returns a response object which responds to the following methods:

Parameters:

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

    a customizable set of options

Options Hash (params):

  • :export_task_ids (Array<String>)

    The export task IDs.

  • :filters (Array<Types::Filter>)

    the filters for the export tasks.

Returns:



390
391
392
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/waiters.rb', line 390

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