1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListAutoMLJobs`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`creation_time_after(DateTime)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::creation_time_after) / [`set_creation_time_after(Option<DateTime>)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::set_creation_time_after): <p>Request a list of jobs, using a filter for time.</p>
    ///   - [`creation_time_before(DateTime)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::creation_time_before) / [`set_creation_time_before(Option<DateTime>)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::set_creation_time_before): <p>Request a list of jobs, using a filter for time.</p>
    ///   - [`last_modified_time_after(DateTime)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::last_modified_time_after) / [`set_last_modified_time_after(Option<DateTime>)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::set_last_modified_time_after): <p>Request a list of jobs, using a filter for time.</p>
    ///   - [`last_modified_time_before(DateTime)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::last_modified_time_before) / [`set_last_modified_time_before(Option<DateTime>)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::set_last_modified_time_before): <p>Request a list of jobs, using a filter for time.</p>
    ///   - [`name_contains(impl Into<String>)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::name_contains) / [`set_name_contains(Option<String>)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::set_name_contains): <p>Request a list of jobs, using a search filter for name.</p>
    ///   - [`status_equals(AutoMlJobStatus)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::status_equals) / [`set_status_equals(Option<AutoMlJobStatus>)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::set_status_equals): <p>Request a list of jobs, using a filter for status.</p>
    ///   - [`sort_order(AutoMlSortOrder)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::sort_order) / [`set_sort_order(Option<AutoMlSortOrder>)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::set_sort_order): <p>The sort order for the results. The default is <code>Descending</code>.</p>
    ///   - [`sort_by(AutoMlSortBy)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::sort_by) / [`set_sort_by(Option<AutoMlSortBy>)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::set_sort_by): <p>The parameter by which to sort the results. The default is <code>Name</code>.</p>
    ///   - [`max_results(i32)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::set_max_results): <p>Request a list of jobs up to a specified limit.</p>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::set_next_token): <p>If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.</p>
    /// - On success, responds with [`ListAutoMlJobsOutput`](crate::operation::list_auto_ml_jobs::ListAutoMlJobsOutput) with field(s):
    ///   - [`auto_ml_job_summaries(Option<Vec<AutoMlJobSummary>>)`](crate::operation::list_auto_ml_jobs::ListAutoMlJobsOutput::auto_ml_job_summaries): <p>Returns a summary list of jobs.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_auto_ml_jobs::ListAutoMlJobsOutput::next_token): <p>If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.</p>
    /// - On failure, responds with [`SdkError<ListAutoMLJobsError>`](crate::operation::list_auto_ml_jobs::ListAutoMLJobsError)
    pub fn list_auto_ml_jobs(&self) -> crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder {
        crate::operation::list_auto_ml_jobs::builders::ListAutoMLJobsFluentBuilder::new(self.handle.clone())
    }
}