class Aws::SSMIncidents::Waiters::WaitForReplicationSetDeleted
Wait for a replication set to be deleted
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 (5) @option options [Integer] :delay (30) @option options [Proc] :before_attempt @option options [Proc] :before_wait
# File lib/aws-sdk-ssmincidents/waiters.rb, line 143 def initialize(options) @client = options.fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 5, delay: 30, poller: Aws::Waiters::Poller.new( operation_name: :get_replication_set, acceptors: [ { "matcher" => "error", "state" => "success", "expected" => "ResourceNotFoundException" }, { "matcher" => "path", "argument" => "replication_set.status", "state" => "retry", "expected" => "DELETING" }, { "matcher" => "path", "argument" => "replication_set.status", "state" => "failure", "expected" => "FAILED" } ] ) }.merge(options)) end
Public Instance Methods
wait(params = {})
click to toggle source
@option (see Client#get_replication_set
) @return (see Client#get_replication_set
)
# File lib/aws-sdk-ssmincidents/waiters.rb, line 175 def wait(params = {}) @waiter.wait(client: @client, params: params) end