Interface CfnProcessingJob.StoppingConditionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProcessingJob.StoppingConditionProperty.Jsii$Proxy
Enclosing class:
CfnProcessingJob

@Stability(Stable) public static interface CfnProcessingJob.StoppingConditionProperty extends software.amazon.jsii.JsiiSerializable
Configures conditions under which the processing job should be stopped, such as how long the processing job has been running.

After the condition is met, the processing job is stopped.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 StoppingConditionProperty stoppingConditionProperty = StoppingConditionProperty.builder()
         .maxRuntimeInSeconds(123)
         .build();
 

See Also: