Struct aws_sdk_sagemaker::input::ListAutoMlJobsInput
source · #[non_exhaustive]pub struct ListAutoMlJobsInput { /* private fields */ }
Implementations§
source§impl ListAutoMlJobsInput
impl ListAutoMlJobsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAutoMLJobs, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAutoMLJobs, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListAutoMLJobs
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListAutoMlJobsInput
.
source§impl ListAutoMlJobsInput
impl ListAutoMlJobsInput
sourcepub fn creation_time_after(&self) -> Option<&DateTime>
pub fn creation_time_after(&self) -> Option<&DateTime>
Request a list of jobs, using a filter for time.
sourcepub fn creation_time_before(&self) -> Option<&DateTime>
pub fn creation_time_before(&self) -> Option<&DateTime>
Request a list of jobs, using a filter for time.
sourcepub fn last_modified_time_after(&self) -> Option<&DateTime>
pub fn last_modified_time_after(&self) -> Option<&DateTime>
Request a list of jobs, using a filter for time.
sourcepub fn last_modified_time_before(&self) -> Option<&DateTime>
pub fn last_modified_time_before(&self) -> Option<&DateTime>
Request a list of jobs, using a filter for time.
sourcepub fn name_contains(&self) -> Option<&str>
pub fn name_contains(&self) -> Option<&str>
Request a list of jobs, using a search filter for name.
sourcepub fn status_equals(&self) -> Option<&AutoMlJobStatus>
pub fn status_equals(&self) -> Option<&AutoMlJobStatus>
Request a list of jobs, using a filter for status.
sourcepub fn sort_order(&self) -> Option<&AutoMlSortOrder>
pub fn sort_order(&self) -> Option<&AutoMlSortOrder>
The sort order for the results. The default is Descending
.
sourcepub fn sort_by(&self) -> Option<&AutoMlSortBy>
pub fn sort_by(&self) -> Option<&AutoMlSortBy>
The parameter by which to sort the results. The default is Name
.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Request a list of jobs 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 ListAutoMlJobsInput
impl Clone for ListAutoMlJobsInput
source§fn clone(&self) -> ListAutoMlJobsInput
fn clone(&self) -> ListAutoMlJobsInput
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 Debug for ListAutoMlJobsInput
impl Debug for ListAutoMlJobsInput
source§impl PartialEq<ListAutoMlJobsInput> for ListAutoMlJobsInput
impl PartialEq<ListAutoMlJobsInput> for ListAutoMlJobsInput
source§fn eq(&self, other: &ListAutoMlJobsInput) -> bool
fn eq(&self, other: &ListAutoMlJobsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.