Class: Aws::SageMaker::Types::MonitoringStoppingCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::MonitoringStoppingCondition
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass MonitoringStoppingCondition data as a hash:
{
max_runtime_in_seconds: 1, # required
}
A time limit for how long the monitoring job is allowed to run before stopping.
Instance Attribute Summary collapse
-
#max_runtime_in_seconds ⇒ Integer
The maximum runtime allowed in seconds.
Instance Attribute Details
#max_runtime_in_seconds ⇒ Integer
The maximum runtime allowed in seconds.
15275 15276 15277 15278 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 15275 class MonitoringStoppingCondition < Struct.new( :max_runtime_in_seconds) include Aws::Structure end |