Class: Aws::SageMaker::Waiters::TransformJobCompletedOrStopped

Inherits:
Object
  • Object
show all
Defined in:
lib/aws-sdk-sagemaker/waiters.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ TransformJobCompletedOrStopped

Returns a new instance of TransformJobCompletedOrStopped.

Parameters:

  • options (Hash)

Options Hash (options):

  • :client (required, Client)
  • :max_attempts (Integer) — default: 60
  • :delay (Integer) — default: 60
  • :before_attempt (Proc)
  • :before_wait (Proc)


354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
# File 'lib/aws-sdk-sagemaker/waiters.rb', line 354

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 60,
    delay: 60,
    poller: Aws::Waiters::Poller.new(
      operation_name: :describe_transform_job,
      acceptors: [
        {
          "expected" => "Completed",
          "matcher" => "path",
          "state" => "success",
          "argument" => "transform_job_status"
        },
        {
          "expected" => "Stopped",
          "matcher" => "path",
          "state" => "success",
          "argument" => "transform_job_status"
        },
        {
          "expected" => "Failed",
          "matcher" => "path",
          "state" => "failure",
          "argument" => "transform_job_status"
        },
        {
          "expected" => "ValidationException",
          "matcher" => "error",
          "state" => "failure"
        }
      ]
    )
  }.merge(options))
end

Instance Attribute Details

#waiterObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



397
398
399
# File 'lib/aws-sdk-sagemaker/waiters.rb', line 397

def waiter
  @waiter
end

Instance Method Details

#wait(params = {}) ⇒ Types::DescribeTransformJobResponse

Returns a response object which responds to the following methods:

Options Hash (params):

  • :transform_job_name (required, String)

    The name of the transform job that you want to view details of.

Returns:



392
393
394
# File 'lib/aws-sdk-sagemaker/waiters.rb', line 392

def wait(params = {})
  @waiter.wait(client: @client, params: params)
end