Class: Aws::RDS::Waiters::DBInstanceAvailable
- Inherits:
-
Object
- Object
- Aws::RDS::Waiters::DBInstanceAvailable
- Defined in:
- lib/aws-sdk-rds/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ DBInstanceAvailable
constructor
A new instance of DBInstanceAvailable.
-
#wait(params = {}) ⇒ Types::DBInstanceMessage
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ DBInstanceAvailable
Returns a new instance of DBInstanceAvailable.
363 364 365 366 367 368 369 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 |
# File 'lib/aws-sdk-rds/waiters.rb', line 363 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 60, delay: 30, poller: Aws::Waiters::Poller.new( operation_name: :describe_db_instances, acceptors: [ { "expected" => "available", "matcher" => "pathAll", "state" => "success", "argument" => "db_instances[].db_instance_status" }, { "expected" => "deleted", "matcher" => "pathAny", "state" => "failure", "argument" => "db_instances[].db_instance_status" }, { "expected" => "deleting", "matcher" => "pathAny", "state" => "failure", "argument" => "db_instances[].db_instance_status" }, { "expected" => "failed", "matcher" => "pathAny", "state" => "failure", "argument" => "db_instances[].db_instance_status" }, { "expected" => "incompatible-restore", "matcher" => "pathAny", "state" => "failure", "argument" => "db_instances[].db_instance_status" }, { "expected" => "incompatible-parameters", "matcher" => "pathAny", "state" => "failure", "argument" => "db_instances[].db_instance_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.
419 420 421 |
# File 'lib/aws-sdk-rds/waiters.rb', line 419 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DBInstanceMessage
Returns a response object which responds to the following methods:
-
#marker => String
-
#db_instances => Array<Types::DBInstance>
414 415 416 |
# File 'lib/aws-sdk-rds/waiters.rb', line 414 def wait(params = {}) @waiter.wait(client: @client, params: params) end |