Class: Aws::SageMaker::Waiters::TransformJobCompletedOrStopped
- Inherits:
-
Object
- Object
- Aws::SageMaker::Waiters::TransformJobCompletedOrStopped
- Defined in:
- lib/aws-sdk-sagemaker/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ TransformJobCompletedOrStopped
constructor
A new instance of TransformJobCompletedOrStopped.
-
#wait(params = {}) ⇒ Types::DescribeTransformJobResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ TransformJobCompletedOrStopped
Returns a new instance of TransformJobCompletedOrStopped.
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() @client = .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()) end |
Instance Attribute Details
#waiter ⇒ Object (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:
-
#transform_job_name => String
-
#transform_job_arn => String
-
#transform_job_status => String
-
#failure_reason => String
-
#model_name => String
-
#max_concurrent_transforms => Integer
-
#max_payload_in_mb => Integer
-
#batch_strategy => String
-
#environment => Hash<String,String>
-
#transform_input => Types::TransformInput
-
#transform_output => Types::TransformOutput
-
#transform_resources => Types::TransformResources
-
#creation_time => Time
-
#transform_start_time => Time
-
#transform_end_time => Time
-
#labeling_job_arn => String
-
#auto_ml_job_arn => String
-
#data_processing => Types::DataProcessing
-
#experiment_config => Types::ExperimentConfig
392 393 394 |
# File 'lib/aws-sdk-sagemaker/waiters.rb', line 392 def wait(params = {}) @waiter.wait(client: @client, params: params) end |