class Aws::RDS::Waiters::DBSnapshotDeleted
Attributes
waiter[R]
@api private
Public Class Methods
new(options)
click to toggle source
@param [Hash] options @option options [required, Client] :client @option options [Integer] :max_attempts (60) @option options [Integer] :delay (30) @option options [Proc] :before_attempt @option options [Proc] :before_wait
# File lib/aws-sdk-rds/waiters.rb, line 427 def initialize(options) @client = options.fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 60, delay: 30, poller: Aws::Waiters::Poller.new( operation_name: :describe_db_snapshots, acceptors: [ { "expected" => true, "matcher" => "path", "state" => "success", "argument" => "length(db_snapshots) == `0`" }, { "expected" => "DBSnapshotNotFound", "matcher" => "error", "state" => "success" }, { "expected" => "creating", "matcher" => "pathAny", "state" => "failure", "argument" => "db_snapshots[].status" }, { "expected" => "modifying", "matcher" => "pathAny", "state" => "failure", "argument" => "db_snapshots[].status" }, { "expected" => "rebooting", "matcher" => "pathAny", "state" => "failure", "argument" => "db_snapshots[].status" }, { "expected" => "resetting-master-credentials", "matcher" => "pathAny", "state" => "failure", "argument" => "db_snapshots[].status" } ] ) }.merge(options)) end
Public Instance Methods
wait(params = {})
click to toggle source
@option (see Client#describe_db_snapshots
) @return (see Client#describe_db_snapshots
)
# File lib/aws-sdk-rds/waiters.rb, line 477 def wait(params = {}) @waiter.wait(client: @client, params: params) end