aws_sdk_entityresolution/client/list_matching_jobs.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`ListMatchingJobs`](crate::operation::list_matching_jobs::builders::ListMatchingJobsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_matching_jobs::builders::ListMatchingJobsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`workflow_name(impl Into<String>)`](crate::operation::list_matching_jobs::builders::ListMatchingJobsFluentBuilder::workflow_name) / [`set_workflow_name(Option<String>)`](crate::operation::list_matching_jobs::builders::ListMatchingJobsFluentBuilder::set_workflow_name):<br>required: **true**<br><p>The name of the workflow to be retrieved.</p><br>
8 /// - [`next_token(impl Into<String>)`](crate::operation::list_matching_jobs::builders::ListMatchingJobsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_matching_jobs::builders::ListMatchingJobsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token from the previous API call.</p><br>
9 /// - [`max_results(i32)`](crate::operation::list_matching_jobs::builders::ListMatchingJobsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_matching_jobs::builders::ListMatchingJobsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of objects returned per page.</p><br>
10 /// - On success, responds with [`ListMatchingJobsOutput`](crate::operation::list_matching_jobs::ListMatchingJobsOutput) with field(s):
11 /// - [`jobs(Option<Vec::<JobSummary>>)`](crate::operation::list_matching_jobs::ListMatchingJobsOutput::jobs): <p>A list of <code>JobSummary</code> objects, each of which contain the ID, status, start time, and end time of a job.</p>
12 /// - [`next_token(Option<String>)`](crate::operation::list_matching_jobs::ListMatchingJobsOutput::next_token): <p>The pagination token from the previous API call.</p>
13 /// - On failure, responds with [`SdkError<ListMatchingJobsError>`](crate::operation::list_matching_jobs::ListMatchingJobsError)
14 pub fn list_matching_jobs(&self) -> crate::operation::list_matching_jobs::builders::ListMatchingJobsFluentBuilder {
15 crate::operation::list_matching_jobs::builders::ListMatchingJobsFluentBuilder::new(self.handle.clone())
16 }
17}