Class: Aws::SageMaker::Types::ProcessingStoppingCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProcessingStoppingCondition
- 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
-
#max_runtime_in_seconds ⇒ Integer
Specifies the maximum runtime in seconds.
Instance Attribute Details
#max_runtime_in_seconds ⇒ Integer
Specifies the maximum runtime in seconds.
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 |