class Aws::MediaLive::Waiters::ChannelCreated
Wait until a channel has been created
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 (3) @option options [Proc] :before_attempt @option options [Proc] :before_wait
# File lib/aws-sdk-medialive/waiters.rb, line 95 def initialize(options) @client = options.fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 5, delay: 3, poller: Aws::Waiters::Poller.new( operation_name: :describe_channel, acceptors: [ { "state" => "success", "matcher" => "path", "argument" => "state", "expected" => "IDLE" }, { "state" => "retry", "matcher" => "path", "argument" => "state", "expected" => "CREATING" }, { "state" => "retry", "matcher" => "status", "expected" => 500 }, { "state" => "failure", "matcher" => "path", "argument" => "state", "expected" => "CREATE_FAILED" } ] ) }.merge(options)) end
Public Instance Methods
wait(params = {})
click to toggle source
@option (see Client#describe_channel
) @return (see Client#describe_channel
)
# File lib/aws-sdk-medialive/waiters.rb, line 133 def wait(params = {}) @waiter.wait(client: @client, params: params) end