You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SageMaker::Types::ListTrialsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListTrialsRequest
- Defined in:
- (unknown)
Overview
When passing ListTrialsRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
experiment_name: "ExperimentEntityName",
trial_component_name: "ExperimentEntityName",
created_after: Time.now,
created_before: Time.now,
sort_by: "Name", # accepts Name, CreationTime
sort_order: "Ascending", # accepts Ascending, Descending
max_results: 1,
next_token: "NextToken",
}
Instance Attribute Summary collapse
-
#created_after ⇒ Time
A filter that returns only trials created after the specified time.
-
#created_before ⇒ Time
A filter that returns only trials created before the specified time.
-
#experiment_name ⇒ String
A filter that returns only trials that are part of the specified experiment.
-
#max_results ⇒ Integer
The maximum number of trials to return in the response.
-
#next_token ⇒ String
If the previous call to
ListTrials
didn\'t return the full set of trials, the call returns a token for getting the next set of trials. -
#sort_by ⇒ String
The property used to sort results.
-
#sort_order ⇒ String
The sort order.
-
#trial_component_name ⇒ String
A filter that returns only trials that are associated with the specified trial component.
Instance Attribute Details
#created_after ⇒ Time
A filter that returns only trials created after the specified time.
#created_before ⇒ Time
A filter that returns only trials created before the specified time.
#experiment_name ⇒ String
A filter that returns only trials that are part of the specified experiment.
#max_results ⇒ Integer
The maximum number of trials to return in the response. The default value is 10.
#next_token ⇒ String
If the previous call to ListTrials
didn\'t return the full set of
trials, the call returns a token for getting the next set of trials.
#sort_by ⇒ String
The property used to sort results. The default value is CreationTime
.
Possible values:
- Name
- CreationTime
#sort_order ⇒ String
The sort order. The default value is Descending
.
Possible values:
- Ascending
- Descending
#trial_component_name ⇒ String
A filter that returns only trials that are associated with the specified trial component.