#[non_exhaustive]pub struct ListCandidatesForAutoMlJobInput { /* private fields */ }
Implementations§
source§impl ListCandidatesForAutoMlJobInput
impl ListCandidatesForAutoMlJobInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCandidatesForAutoMLJob, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCandidatesForAutoMLJob, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListCandidatesForAutoMLJob
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListCandidatesForAutoMlJobInput
.
source§impl ListCandidatesForAutoMlJobInput
impl ListCandidatesForAutoMlJobInput
sourcepub fn auto_ml_job_name(&self) -> Option<&str>
pub fn auto_ml_job_name(&self) -> Option<&str>
List the candidates created for the job by providing the job's name.
sourcepub fn status_equals(&self) -> Option<&CandidateStatus>
pub fn status_equals(&self) -> Option<&CandidateStatus>
List the candidates for the job and filter by status.
sourcepub fn candidate_name_equals(&self) -> Option<&str>
pub fn candidate_name_equals(&self) -> Option<&str>
List the candidates for the job and filter by candidate name.
sourcepub fn sort_order(&self) -> Option<&AutoMlSortOrder>
pub fn sort_order(&self) -> Option<&AutoMlSortOrder>
The sort order for the results. The default is Ascending
.
sourcepub fn sort_by(&self) -> Option<&CandidateSortBy>
pub fn sort_by(&self) -> Option<&CandidateSortBy>
The parameter by which to sort the results. The default is Descending
.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
List the job's candidates up to a specified limit.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.
Trait Implementations§
source§impl Clone for ListCandidatesForAutoMlJobInput
impl Clone for ListCandidatesForAutoMlJobInput
source§fn clone(&self) -> ListCandidatesForAutoMlJobInput
fn clone(&self) -> ListCandidatesForAutoMlJobInput
Returns a copy 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 PartialEq<ListCandidatesForAutoMlJobInput> for ListCandidatesForAutoMlJobInput
impl PartialEq<ListCandidatesForAutoMlJobInput> for ListCandidatesForAutoMlJobInput
source§fn eq(&self, other: &ListCandidatesForAutoMlJobInput) -> bool
fn eq(&self, other: &ListCandidatesForAutoMlJobInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.