Struct aws_sdk_sagemaker::input::ListAutoMlJobsInput
source · [−]#[non_exhaustive]pub struct ListAutoMlJobsInput {
pub creation_time_after: Option<DateTime>,
pub creation_time_before: Option<DateTime>,
pub last_modified_time_after: Option<DateTime>,
pub last_modified_time_before: Option<DateTime>,
pub name_contains: Option<String>,
pub status_equals: Option<AutoMlJobStatus>,
pub sort_order: Option<AutoMlSortOrder>,
pub sort_by: Option<AutoMlSortBy>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.creation_time_after: Option<DateTime>
Request a list of jobs, using a filter for time.
creation_time_before: Option<DateTime>
Request a list of jobs, using a filter for time.
last_modified_time_after: Option<DateTime>
Request a list of jobs, using a filter for time.
last_modified_time_before: Option<DateTime>
Request a list of jobs, using a filter for time.
name_contains: Option<String>
Request a list of jobs, using a search filter for name.
status_equals: Option<AutoMlJobStatus>
Request a list of jobs, using a filter for status.
sort_order: Option<AutoMlSortOrder>
The sort order for the results. The default is Descending
.
sort_by: Option<AutoMlSortBy>
The parameter by which to sort the results. The default is Name
.
max_results: Option<i32>
Request a list of jobs 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.
Implementations
sourceimpl ListAutoMlJobsInput
impl ListAutoMlJobsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAutoMLJobs, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAutoMLJobs, AwsErrorRetryPolicy>, 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
sourceimpl 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
sourceimpl Clone for ListAutoMlJobsInput
impl Clone for ListAutoMlJobsInput
sourcefn clone(&self) -> ListAutoMlJobsInput
fn clone(&self) -> ListAutoMlJobsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ListAutoMlJobsInput
impl Debug for ListAutoMlJobsInput
sourceimpl PartialEq<ListAutoMlJobsInput> for ListAutoMlJobsInput
impl PartialEq<ListAutoMlJobsInput> for ListAutoMlJobsInput
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &ListAutoMlJobsInput) -> bool
fn ne(&self, other: &ListAutoMlJobsInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for ListAutoMlJobsInput
Auto Trait Implementations
impl RefUnwindSafe for ListAutoMlJobsInput
impl Send for ListAutoMlJobsInput
impl Sync for ListAutoMlJobsInput
impl Unpin for ListAutoMlJobsInput
impl UnwindSafe for ListAutoMlJobsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more