class Aws::MediaConnect::Waiters::FlowStandby

Wait until a flow is in standby mode

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 (40) @option options [Integer] :delay (3) @option options [Proc] :before_attempt @option options [Proc] :before_wait

# File lib/aws-sdk-mediaconnect/waiters.rb, line 214
def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 40,
    delay: 3,
    poller: Aws::Waiters::Poller.new(
      operation_name: :describe_flow,
      acceptors: [
        {
          "state" => "success",
          "matcher" => "path",
          "argument" => "flow.status",
          "expected" => "STANDBY"
        },
        {
          "state" => "retry",
          "matcher" => "path",
          "argument" => "flow.status",
          "expected" => "STOPPING"
        },
        {
          "state" => "retry",
          "matcher" => "status",
          "expected" => 500
        },
        {
          "state" => "retry",
          "matcher" => "status",
          "expected" => 503
        },
        {
          "state" => "failure",
          "matcher" => "path",
          "argument" => "flow.status",
          "expected" => "ERROR"
        }
      ]
    )
  }.merge(options))
end

Public Instance Methods

wait(params = {}) click to toggle source

@option (see Client#describe_flow) @return (see Client#describe_flow)

# File lib/aws-sdk-mediaconnect/waiters.rb, line 257
def wait(params = {})
  @waiter.wait(client: @client, params: params)
end