class Aws::ECS::Waiters::TasksRunning

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

# File lib/aws-sdk-ecs/waiters.rb, line 187
def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 100,
    delay: 6,
    poller: Aws::Waiters::Poller.new(
      operation_name: :describe_tasks,
      acceptors: [
        {
          "expected" => "STOPPED",
          "matcher" => "pathAny",
          "state" => "failure",
          "argument" => "tasks[].last_status"
        },
        {
          "expected" => "MISSING",
          "matcher" => "pathAny",
          "state" => "failure",
          "argument" => "failures[].reason"
        },
        {
          "expected" => "RUNNING",
          "matcher" => "pathAll",
          "state" => "success",
          "argument" => "tasks[].last_status"
        }
      ]
    )
  }.merge(options))
end

Public Instance Methods

wait(params = {}) click to toggle source

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

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