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.
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 |
# File 'lib/aws-sdk-opsworks/waiters.rb', line 432 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.
511 512 513 |
# File 'lib/aws-sdk-opsworks/waiters.rb', line 511 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>
506 507 508 |
# File 'lib/aws-sdk-opsworks/waiters.rb', line 506 def wait(params = {}) @waiter.wait(client: @client, params: params) end |