Class: Aws::EC2::Waiters::SystemStatusOk
- Inherits:
-
Object
- Object
- Aws::EC2::Waiters::SystemStatusOk
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/waiters.rb
Instance Method Summary collapse
-
#initialize(options) ⇒ SystemStatusOk
constructor
A new instance of SystemStatusOk.
-
#wait(params = {}) ⇒ Types::DescribeInstanceStatusResult
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ SystemStatusOk
Returns a new instance of SystemStatusOk.
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/waiters.rb', line 1453 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[].system_status.status", "expected" => "ok" }] ) }.merge()) 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
1472 1473 1474 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/waiters.rb', line 1472 def wait(params = {}) @waiter.wait(client: @client, params: params) end |