Class: Aws::EC2::Waiters::SystemStatusOk
- Inherits:
-
Object
- Object
- Aws::EC2::Waiters::SystemStatusOk
- Defined in:
- lib/aws-sdk-ec2/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
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.
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 1300 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 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.
1324 1325 1326 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 1324 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
1319 1320 1321 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 1319 def wait(params = {}) @waiter.wait(client: @client, params: params) end |