Class: Aws::EC2::Waiters::ExportTaskCompleted
- Inherits:
-
Object
- Object
- Aws::EC2::Waiters::ExportTaskCompleted
- Defined in:
- lib/aws-sdk-ec2/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ ExportTaskCompleted
constructor
A new instance of ExportTaskCompleted.
-
#wait(params = {}) ⇒ Types::DescribeExportTasksResult
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ ExportTaskCompleted
Returns a new instance of ExportTaskCompleted.
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 371 def initialize() @client = .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()) 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.
395 396 397 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 395 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeExportTasksResult
Returns a response object which responds to the following methods:
-
#export_tasks => Array<Types::ExportTask>
390 391 392 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 390 def wait(params = {}) @waiter.wait(client: @client, params: params) end |