Class: Aws::SageMaker::Types::ProcessingStoppingCondition

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass ProcessingStoppingCondition data as a hash:

{
  max_runtime_in_seconds: 1, # required
}

Specifies a time limit for how long the processing job is allowed to run.

Instance Attribute Summary collapse

Instance Attribute Details

#max_runtime_in_secondsInteger

Specifies the maximum runtime in seconds.

Returns:

  • (Integer)


16186
16187
16188
16189
# File 'lib/aws-sdk-sagemaker/types.rb', line 16186

class ProcessingStoppingCondition < Struct.new(
  :max_runtime_in_seconds)
  include Aws::Structure
end