Class: Aws::RDS::Waiters::DBSnapshotAvailable
- Inherits:
-
Object
- Object
- Aws::RDS::Waiters::DBSnapshotAvailable
- Defined in:
- lib/aws-sdk-rds/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ DBSnapshotAvailable
constructor
A new instance of DBSnapshotAvailable.
-
#wait(params = {}) ⇒ Types::DBSnapshotMessage
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ DBSnapshotAvailable
Returns a new instance of DBSnapshotAvailable.
359 360 361 362 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 |
# File 'lib/aws-sdk-rds/waiters.rb', line 359 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 60, delay: 30, poller: Aws::Waiters::Poller.new( operation_name: :describe_db_snapshots, acceptors: [ { "expected" => "available", "matcher" => "pathAll", "state" => "success", "argument" => "db_snapshots[].status" }, { "expected" => "deleted", "matcher" => "pathAny", "state" => "failure", "argument" => "db_snapshots[].status" }, { "expected" => "deleting", "matcher" => "pathAny", "state" => "failure", "argument" => "db_snapshots[].status" }, { "expected" => "failed", "matcher" => "pathAny", "state" => "failure", "argument" => "db_snapshots[].status" }, { "expected" => "incompatible-restore", "matcher" => "pathAny", "state" => "failure", "argument" => "db_snapshots[].status" }, { "expected" => "incompatible-parameters", "matcher" => "pathAny", "state" => "failure", "argument" => "db_snapshots[].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.
415 416 417 |
# File 'lib/aws-sdk-rds/waiters.rb', line 415 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DBSnapshotMessage
Returns a response object which responds to the following methods:
-
#marker => String
-
#db_snapshots => Array<Types::DBSnapshot>
410 411 412 |
# File 'lib/aws-sdk-rds/waiters.rb', line 410 def wait(params = {}) @waiter.wait(client: @client, params: params) end |