pub struct ListCandidatesForAutoMLJobRequest {
pub auto_ml_job_name: String,
pub candidate_name_equals: Option<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§
§auto_ml_job_name: String
List the candidates created for the job by providing the job's name.
candidate_name_equals: Option<String>
List the candidates for the job and filter by candidate name.
max_results: Option<i64>
List the job's candidates up to a specified limit.
next_token: Option<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: Option<String>
The parameter by which to sort the results. The default is Descending
.
sort_order: Option<String>
The sort order for the results. The default is Ascending
.
status_equals: Option<String>
List the candidates for the job and filter by status.
Trait Implementations§
Source§impl Clone for ListCandidatesForAutoMLJobRequest
impl Clone for ListCandidatesForAutoMLJobRequest
Source§fn clone(&self) -> ListCandidatesForAutoMLJobRequest
fn clone(&self) -> ListCandidatesForAutoMLJobRequest
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 ListCandidatesForAutoMLJobRequest
impl Default for ListCandidatesForAutoMLJobRequest
Source§fn default() -> ListCandidatesForAutoMLJobRequest
fn default() -> ListCandidatesForAutoMLJobRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListCandidatesForAutoMLJobRequest
impl PartialEq for ListCandidatesForAutoMLJobRequest
Source§fn eq(&self, other: &ListCandidatesForAutoMLJobRequest) -> bool
fn eq(&self, other: &ListCandidatesForAutoMLJobRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListCandidatesForAutoMLJobRequest
Auto Trait Implementations§
impl Freeze for ListCandidatesForAutoMLJobRequest
impl RefUnwindSafe for ListCandidatesForAutoMLJobRequest
impl Send for ListCandidatesForAutoMLJobRequest
impl Sync for ListCandidatesForAutoMLJobRequest
impl Unpin for ListCandidatesForAutoMLJobRequest
impl UnwindSafe for ListCandidatesForAutoMLJobRequest
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