Class: Aws::OpsWorks::Waiters::InstanceTerminated
- Inherits:
-
Object
- Object
- Aws::OpsWorks::Waiters::InstanceTerminated
- Defined in:
- lib/aws-sdk-opsworks/waiters.rb
Overview
Wait until OpsWorks instance is terminated.
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ InstanceTerminated
constructor
A new instance of InstanceTerminated.
-
#wait(params = {}) ⇒ Types::DescribeInstancesResult
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ InstanceTerminated
Returns a new instance of InstanceTerminated.
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 |
# File 'lib/aws-sdk-opsworks/waiters.rb', line 370 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 15, poller: Aws::Waiters::Poller.new( operation_name: :describe_instances, acceptors: [ { "expected" => "terminated", "matcher" => "pathAll", "state" => "success", "argument" => "instances[].status" }, { "expected" => "ResourceNotFoundException", "matcher" => "error", "state" => "success" }, { "expected" => "booting", "matcher" => "pathAny", "state" => "failure", "argument" => "instances[].status" }, { "expected" => "online", "matcher" => "pathAny", "state" => "failure", "argument" => "instances[].status" }, { "expected" => "pending", "matcher" => "pathAny", "state" => "failure", "argument" => "instances[].status" }, { "expected" => "rebooting", "matcher" => "pathAny", "state" => "failure", "argument" => "instances[].status" }, { "expected" => "requested", "matcher" => "pathAny", "state" => "failure", "argument" => "instances[].status" }, { "expected" => "running_setup", "matcher" => "pathAny", "state" => "failure", "argument" => "instances[].status" }, { "expected" => "setup_failed", "matcher" => "pathAny", "state" => "failure", "argument" => "instances[].status" }, { "expected" => "start_failed", "matcher" => "pathAny", "state" => "failure", "argument" => "instances[].status" } ] ) }.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.
449 450 451 |
# File 'lib/aws-sdk-opsworks/waiters.rb', line 449 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeInstancesResult
Returns a response object which responds to the following methods:
-
#instances => Array<Types::Instance>
444 445 446 |
# File 'lib/aws-sdk-opsworks/waiters.rb', line 444 def wait(params = {}) @waiter.wait(client: @client, params: params) end |