class Aws::CloudControlApi::Waiters::ResourceRequestSuccess
Wait until resource operation request is successful
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 (720) @option options [Integer] :delay (5) @option options [Proc] :before_attempt @option options [Proc] :before_wait
# File lib/aws-sdk-cloudcontrolapi/waiters.rb, line 85 def initialize(options) @client = options.fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 720, delay: 5, poller: Aws::Waiters::Poller.new( operation_name: :get_resource_request_status, acceptors: [ { "state" => "success", "matcher" => "path", "argument" => "progress_event.operation_status", "expected" => "SUCCESS" }, { "state" => "failure", "matcher" => "path", "argument" => "progress_event.operation_status", "expected" => "FAILED" }, { "state" => "failure", "matcher" => "path", "argument" => "progress_event.operation_status", "expected" => "CANCEL_COMPLETE" } ] ) }.merge(options)) end
Public Instance Methods
wait(params = {})
click to toggle source
@option (see Client#get_resource_request_status
) @return (see Client#get_resource_request_status
)
# File lib/aws-sdk-cloudcontrolapi/waiters.rb, line 118 def wait(params = {}) @waiter.wait(client: @client, params: params) end