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
- Struct
- Aws::SageMaker::Types::ListAutoMLJobsRequest
- Defined in:
- (unknown)
Overview
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
-
#creation_time_after ⇒ Time
Request a list of jobs, using a filter for time.
-
#creation_time_before ⇒ Time
Request a list of jobs, using a filter for time.
-
#last_modified_time_after ⇒ Time
Request a list of jobs, using a filter for time.
-
#last_modified_time_before ⇒ Time
Request a list of jobs, using a filter for time.
-
#max_results ⇒ Integer
Request a list of jobs up to a specified limit.
-
#name_contains ⇒ String
Request a list of jobs, using a search filter for name.
-
#next_token ⇒ String
If the previous response was truncated, you receive this token.
-
#sort_by ⇒ String
The parameter by which to sort the results.
-
#sort_order ⇒ String
The sort order for the results.
-
#status_equals ⇒ String
Request a list of jobs, using a filter for status.
Instance Attribute Details
#creation_time_after ⇒ Time
Request a list of jobs, using a filter for time.
#creation_time_before ⇒ Time
Request a list of jobs, using a filter for time.
#last_modified_time_after ⇒ Time
Request a list of jobs, using a filter for time.
#last_modified_time_before ⇒ Time
Request a list of jobs, using a filter for time.
#max_results ⇒ Integer
Request a list of jobs up to a specified limit.
#name_contains ⇒ String
Request a list of jobs, using a search filter for name.
#next_token ⇒ String
If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.
#sort_by ⇒ String
The parameter by which to sort the results. The default is AutoMLJobName.
Possible values:
- Name
- CreationTime
- Status
#sort_order ⇒ String
The sort order for the results. The default is Descending.
Possible values:
- Ascending
- Descending
#status_equals ⇒ String
Request a list of jobs, using a filter for status.
Possible values:
- Completed
- InProgress
- Failed
- Stopped
- Stopping