You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SageMaker::Types::AutoMLJobCompletionCriteria

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AutoMLJobCompletionCriteria as input to an Aws::Client method, you can use a vanilla Hash:

{
  max_candidates: 1,
  max_runtime_per_training_job_in_seconds: 1,
  max_auto_ml_job_runtime_in_seconds: 1,
}

How long a job is allowed to run, or how many candidates a job is allowed to generate.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#max_auto_ml_job_runtime_in_secondsInteger

The maximum time, in seconds, an AutoML job is allowed to wait for a trial to complete. It must be equal to or greater than MaxRuntimePerTrainingJobInSeconds.

Returns:

  • (Integer)

    The maximum time, in seconds, an AutoML job is allowed to wait for a trial to complete.

#max_candidatesInteger

The maximum number of times a training job is allowed to run.

Returns:

  • (Integer)

    The maximum number of times a training job is allowed to run.

#max_runtime_per_training_job_in_secondsInteger

The maximum time, in seconds, a job is allowed to run.

Returns:

  • (Integer)

    The maximum time, in seconds, a job is allowed to run.