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

Class: Aws::SageMaker::Types::ListAutoMLJobsRequest

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

Overview

Note:

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

{
  creation_time_after: Time.now,
  creation_time_before: Time.now,
  last_modified_time_after: Time.now,
  last_modified_time_before: Time.now,
  name_contains: "AutoMLNameContains",
  status_equals: "Completed", # accepts Completed, InProgress, Failed, Stopped, Stopping
  sort_order: "Ascending", # accepts Ascending, Descending
  sort_by: "Name", # accepts Name, CreationTime, Status
  max_results: 1,
  next_token: "NextToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#creation_time_afterTime

Request a list of jobs, using a filter for time.

Returns:

  • (Time)

    Request a list of jobs, using a filter for time.

#creation_time_beforeTime

Request a list of jobs, using a filter for time.

Returns:

  • (Time)

    Request a list of jobs, using a filter for time.

#last_modified_time_afterTime

Request a list of jobs, using a filter for time.

Returns:

  • (Time)

    Request a list of jobs, using a filter for time.

#last_modified_time_beforeTime

Request a list of jobs, using a filter for time.

Returns:

  • (Time)

    Request a list of jobs, using a filter for time.

#max_resultsInteger

Request a list of jobs up to a specified limit.

Returns:

  • (Integer)

    Request a list of jobs up to a specified limit.

#name_containsString

Request a list of jobs, using a search filter for name.

Returns:

  • (String)

    Request a list of jobs, using a search filter for name.

#next_tokenString

If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.

Returns:

  • (String)

    If the previous response was truncated, you receive this token.

#sort_byString

The parameter by which to sort the results. The default is AutoMLJobName.

Possible values:

  • Name
  • CreationTime
  • Status

Returns:

  • (String)

    The parameter by which to sort the results.

#sort_orderString

The sort order for the results. The default is Descending.

Possible values:

  • Ascending
  • Descending

Returns:

  • (String)

    The sort order for the results.

#status_equalsString

Request a list of jobs, using a filter for status.

Possible values:

  • Completed
  • InProgress
  • Failed
  • Stopped
  • Stopping

Returns:

  • (String)

    Request a list of jobs, using a filter for status.