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

Class: Aws::SageMaker::Types::ListCompilationJobsRequest

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

Overview

Note:

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

{
  next_token: "NextToken",
  max_results: 1,
  creation_time_after: Time.now,
  creation_time_before: Time.now,
  last_modified_time_after: Time.now,
  last_modified_time_before: Time.now,
  name_contains: "NameContains",
  status_equals: "INPROGRESS", # accepts INPROGRESS, COMPLETED, FAILED, STARTING, STOPPING, STOPPED
  sort_by: "Name", # accepts Name, CreationTime, Status
  sort_order: "Ascending", # accepts Ascending, Descending
}

Instance Attribute Summary collapse

Instance Attribute Details

#creation_time_afterTime

A filter that returns the model compilation jobs that were created after a specified time.

Returns:

  • (Time)

    A filter that returns the model compilation jobs that were created after a specified time.

#creation_time_beforeTime

A filter that returns the model compilation jobs that were created before a specified time.

Returns:

  • (Time)

    A filter that returns the model compilation jobs that were created before a specified time.

#last_modified_time_afterTime

A filter that returns the model compilation jobs that were modified after a specified time.

Returns:

  • (Time)

    A filter that returns the model compilation jobs that were modified after a specified time.

#last_modified_time_beforeTime

A filter that returns the model compilation jobs that were modified before a specified time.

Returns:

  • (Time)

    A filter that returns the model compilation jobs that were modified before a specified time.

#max_resultsInteger

The maximum number of model compilation jobs to return in the response.

Returns:

  • (Integer)

    The maximum number of model compilation jobs to return in the response.

#name_containsString

A filter that returns the model compilation jobs whose name contains a specified string.

Returns:

  • (String)

    A filter that returns the model compilation jobs whose name contains a specified string.

#next_tokenString

If the result of the previous ListCompilationJobs request was truncated, the response includes a NextToken. To retrieve the next set of model compilation jobs, use the token in the next request.

Returns:

  • (String)

    If the result of the previous ListCompilationJobs request was truncated, the response includes a NextToken.

#sort_byString

The field by which to sort results. The default is CreationTime.

Possible values:

  • Name
  • CreationTime
  • Status

Returns:

  • (String)

    The field by which to sort results.

#sort_orderString

The sort order for results. The default is Ascending.

Possible values:

  • Ascending
  • Descending

Returns:

  • (String)

    The sort order for results.

#status_equalsString

A filter that retrieves model compilation jobs with a specific DescribeCompilationJobResponse$CompilationJobStatus status.

Possible values:

  • INPROGRESS
  • COMPLETED
  • FAILED
  • STARTING
  • STOPPING
  • STOPPED

Returns: