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 [`ListLabelingJobs`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`creation_time_after(DateTime)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::creation_time_after) / [`set_creation_time_after(Option<DateTime>)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::set_creation_time_after): <p>A filter that returns only labeling jobs created after the specified time (timestamp).</p>
    ///   - [`creation_time_before(DateTime)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::creation_time_before) / [`set_creation_time_before(Option<DateTime>)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::set_creation_time_before): <p>A filter that returns only labeling jobs created before the specified time (timestamp).</p>
    ///   - [`last_modified_time_after(DateTime)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::last_modified_time_after) / [`set_last_modified_time_after(Option<DateTime>)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::set_last_modified_time_after): <p>A filter that returns only labeling jobs modified after the specified time (timestamp).</p>
    ///   - [`last_modified_time_before(DateTime)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::last_modified_time_before) / [`set_last_modified_time_before(Option<DateTime>)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::set_last_modified_time_before): <p>A filter that returns only labeling jobs modified before the specified time (timestamp).</p>
    ///   - [`max_results(i32)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::set_max_results): <p>The maximum number of labeling jobs to return in each page of the response.</p>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::set_next_token): <p>If the result of the previous <code>ListLabelingJobs</code> request was truncated, the response includes a <code>NextToken</code>. To retrieve the next set of labeling jobs, use the token in the next request.</p>
    ///   - [`name_contains(impl Into<String>)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::name_contains) / [`set_name_contains(Option<String>)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::set_name_contains): <p>A string in the labeling job name. This filter returns only labeling jobs whose name contains the specified string.</p>
    ///   - [`sort_by(SortBy)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::sort_by) / [`set_sort_by(Option<SortBy>)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::set_sort_by): <p>The field to sort results by. The default is <code>CreationTime</code>.</p>
    ///   - [`sort_order(SortOrder)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::sort_order) / [`set_sort_order(Option<SortOrder>)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::set_sort_order): <p>The sort order for results. The default is <code>Ascending</code>.</p>
    ///   - [`status_equals(LabelingJobStatus)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::status_equals) / [`set_status_equals(Option<LabelingJobStatus>)`](crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::set_status_equals): <p>A filter that retrieves only labeling jobs with a specific status.</p>
    /// - On success, responds with [`ListLabelingJobsOutput`](crate::operation::list_labeling_jobs::ListLabelingJobsOutput) with field(s):
    ///   - [`labeling_job_summary_list(Option<Vec<LabelingJobSummary>>)`](crate::operation::list_labeling_jobs::ListLabelingJobsOutput::labeling_job_summary_list): <p>An array of <code>LabelingJobSummary</code> objects, each describing a labeling job.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_labeling_jobs::ListLabelingJobsOutput::next_token): <p>If the response is truncated, SageMaker returns this token. To retrieve the next set of labeling jobs, use it in the subsequent request.</p>
    /// - On failure, responds with [`SdkError<ListLabelingJobsError>`](crate::operation::list_labeling_jobs::ListLabelingJobsError)
    pub fn list_labeling_jobs(&self) -> crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder {
        crate::operation::list_labeling_jobs::builders::ListLabelingJobsFluentBuilder::new(self.handle.clone())
    }
}