Class: Aws::EC2::Waiters::ImageExists
- Inherits:
-
Object
- Object
- Aws::EC2::Waiters::ImageExists
- Defined in:
- lib/aws-sdk-ec2/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ ImageExists
constructor
A new instance of ImageExists.
-
#wait(params = {}) ⇒ Types::DescribeImagesResult
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ ImageExists
Returns a new instance of ImageExists.
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 451 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 15, poller: Aws::Waiters::Poller.new( operation_name: :describe_images, acceptors: [ { "matcher" => "path", "expected" => true, "argument" => "length(images[]) > `0`", "state" => "success" }, { "matcher" => "error", "expected" => "InvalidAMIID.NotFound", "state" => "retry" } ] ) }.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.
482 483 484 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 482 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeImagesResult
Returns a response object which responds to the following methods:
-
#next_token => String
-
#images => Array<Types::Image>
477 478 479 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 477 def wait(params = {}) @waiter.wait(client: @client, params: params) end |