You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SageMaker::Types::ListModelsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListModelsInput
- Defined in:
- (unknown)
Overview
When passing ListModelsInput as input to an Aws::Client method, you can use a vanilla Hash:
{
sort_by: "Name", # accepts Name, CreationTime
sort_order: "Ascending", # accepts Ascending, Descending
next_token: "PaginationToken",
max_results: 1,
name_contains: "ModelNameContains",
creation_time_before: Time.now,
creation_time_after: Time.now,
}
Instance Attribute Summary collapse
-
#creation_time_after ⇒ Time
A filter that returns only models with a creation time greater than or equal to the specified time (timestamp).
-
#creation_time_before ⇒ Time
A filter that returns only models created before the specified time (timestamp).
-
#max_results ⇒ Integer
The maximum number of models to return in the response.
-
#name_contains ⇒ String
A string in the training job name.
-
#next_token ⇒ String
If the response to a previous
ListModels
request was truncated, the response includes aNextToken
. -
#sort_by ⇒ String
Sorts the list of results.
-
#sort_order ⇒ String
The sort order for results.
Instance Attribute Details
#creation_time_after ⇒ Time
A filter that returns only models with a creation time greater than or equal to the specified time (timestamp).
#creation_time_before ⇒ Time
A filter that returns only models created before the specified time (timestamp).
#max_results ⇒ Integer
The maximum number of models to return in the response.
#name_contains ⇒ String
A string in the training job name. This filter returns only models in the training job whose name contains the specified string.
#next_token ⇒ String
If the response to a previous ListModels
request was truncated, the
response includes a NextToken
. To retrieve the next set of models, use
the token in the next request.
#sort_by ⇒ String
Sorts the list of results. The default is CreationTime
.
Possible values:
- Name
- CreationTime
#sort_order ⇒ String
The sort order for results. The default is Descending
.
Possible values:
- Ascending
- Descending