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
pub 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
>
Creates a new builder-style object to manufacture ListAutoMlJobsInput
Request a list of jobs, using a filter for time.
Request a list of jobs, using a filter for time.
Request a list of jobs, using a filter for time.
Request a list of jobs, using a filter for time.
Request a list of jobs, using a search filter for name.
Request a list of jobs, using a filter for status.
The sort order for the results. The default is Descending
.
The parameter by which to sort the results. The default is Name
.
Request a list of jobs up to a specified limit.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more