Class: Aws::EC2::Waiters::InstanceStatusOk
- Inherits:
-
Object
- Object
- Aws::EC2::Waiters::InstanceStatusOk
- Defined in:
- lib/aws-sdk-ec2/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ InstanceStatusOk
constructor
A new instance of InstanceStatusOk.
-
#wait(params = {}) ⇒ Types::DescribeInstanceStatusResult
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ InstanceStatusOk
Returns a new instance of InstanceStatusOk.
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 598 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 15, poller: Aws::Waiters::Poller.new( operation_name: :describe_instance_status, acceptors: [ { "state" => "success", "matcher" => "pathAll", "argument" => "instance_statuses[].instance_status.status", "expected" => "ok" }, { "matcher" => "error", "expected" => "InvalidInstanceID.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.
629 630 631 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 629 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeInstanceStatusResult
Returns a response object which responds to the following methods:
-
#instance_statuses => Array<Types::InstanceStatus>
-
#next_token => String
624 625 626 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 624 def wait(params = {}) @waiter.wait(client: @client, params: params) end |