pub struct ListTrainingJobsForHyperParameterTuningJobRequest {
pub hyper_parameter_tuning_job_name: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub sort_by: Option<String>,
pub sort_order: Option<String>,
pub status_equals: Option<String>,
}Fields§
§hyper_parameter_tuning_job_name: StringThe name of the tuning job whose training jobs you want to list.
max_results: Option<i64>The maximum number of training jobs to return. The default value is 10.
next_token: Option<String>If the result of the previous ListTrainingJobsForHyperParameterTuningJob request was truncated, the response includes a NextToken. To retrieve the next set of training jobs, use the token in the next request.
sort_by: Option<String>The field to sort results by. The default is Name.
If the value of this field is FinalObjectiveMetricValue, any training jobs that did not return an objective metric are not listed.
sort_order: Option<String>The sort order for results. The default is Ascending.
status_equals: Option<String>A filter that returns only training jobs with the specified status.
Trait Implementations§
Source§impl Clone for ListTrainingJobsForHyperParameterTuningJobRequest
impl Clone for ListTrainingJobsForHyperParameterTuningJobRequest
Source§fn clone(&self) -> ListTrainingJobsForHyperParameterTuningJobRequest
fn clone(&self) -> ListTrainingJobsForHyperParameterTuningJobRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for ListTrainingJobsForHyperParameterTuningJobRequest
impl Default for ListTrainingJobsForHyperParameterTuningJobRequest
Source§fn default() -> ListTrainingJobsForHyperParameterTuningJobRequest
fn default() -> ListTrainingJobsForHyperParameterTuningJobRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListTrainingJobsForHyperParameterTuningJobRequest
impl PartialEq for ListTrainingJobsForHyperParameterTuningJobRequest
Source§fn eq(&self, other: &ListTrainingJobsForHyperParameterTuningJobRequest) -> bool
fn eq(&self, other: &ListTrainingJobsForHyperParameterTuningJobRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListTrainingJobsForHyperParameterTuningJobRequest
Auto Trait Implementations§
impl Freeze for ListTrainingJobsForHyperParameterTuningJobRequest
impl RefUnwindSafe for ListTrainingJobsForHyperParameterTuningJobRequest
impl Send for ListTrainingJobsForHyperParameterTuningJobRequest
impl Sync for ListTrainingJobsForHyperParameterTuningJobRequest
impl Unpin for ListTrainingJobsForHyperParameterTuningJobRequest
impl UnwindSafe for ListTrainingJobsForHyperParameterTuningJobRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more