Class: Aws::SageMaker::Waiters::ProcessingJobCompletedOrStopped
- Inherits:
-
Object
- Object
- Aws::SageMaker::Waiters::ProcessingJobCompletedOrStopped
- Defined in:
- lib/aws-sdk-sagemaker/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ ProcessingJobCompletedOrStopped
constructor
A new instance of ProcessingJobCompletedOrStopped.
-
#wait(params = {}) ⇒ Types::DescribeProcessingJobResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ ProcessingJobCompletedOrStopped
Returns a new instance of ProcessingJobCompletedOrStopped.
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
# File 'lib/aws-sdk-sagemaker/waiters.rb', line 244 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 60, delay: 60, poller: Aws::Waiters::Poller.new( operation_name: :describe_processing_job, acceptors: [ { "expected" => "Completed", "matcher" => "path", "state" => "success", "argument" => "processing_job_status" }, { "expected" => "Stopped", "matcher" => "path", "state" => "success", "argument" => "processing_job_status" }, { "expected" => "Failed", "matcher" => "path", "state" => "failure", "argument" => "processing_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.
287 288 289 |
# File 'lib/aws-sdk-sagemaker/waiters.rb', line 287 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeProcessingJobResponse
Returns a response object which responds to the following methods:
-
#processing_inputs => Array<Types::ProcessingInput>
-
#processing_output_config => Types::ProcessingOutputConfig
-
#processing_job_name => String
-
#processing_resources => Types::ProcessingResources
-
#stopping_condition => Types::ProcessingStoppingCondition
-
#app_specification => Types::AppSpecification
-
#environment => Hash<String,String>
-
#network_config => Types::NetworkConfig
-
#role_arn => String
-
#experiment_config => Types::ExperimentConfig
-
#processing_job_arn => String
-
#processing_job_status => String
-
#exit_message => String
-
#failure_reason => String
-
#processing_end_time => Time
-
#processing_start_time => Time
-
#last_modified_time => Time
-
#creation_time => Time
-
#monitoring_schedule_arn => String
-
#auto_ml_job_arn => String
-
#training_job_arn => String
282 283 284 |
# File 'lib/aws-sdk-sagemaker/waiters.rb', line 282 def wait(params = {}) @waiter.wait(client: @client, params: params) end |