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)


672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
# File 'lib/aws-sdk-sagemaker/waiters.rb', line 672

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.



715
716
717
# File 'lib/aws-sdk-sagemaker/waiters.rb', line 715

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:



710
711
712
# File 'lib/aws-sdk-sagemaker/waiters.rb', line 710

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