aws_sdk_customerprofiles/client/
list_identity_resolution_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 [`ListIdentityResolutionJobs`](crate::operation::list_identity_resolution_jobs::builders::ListIdentityResolutionJobsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`domain_name(impl Into<String>)`](crate::operation::list_identity_resolution_jobs::builders::ListIdentityResolutionJobsFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::list_identity_resolution_jobs::builders::ListIdentityResolutionJobsFluentBuilder::set_domain_name):<br>required: **true**<br><p>The unique name of the domain.</p><br>
7    ///   - [`next_token(impl Into<String>)`](crate::operation::list_identity_resolution_jobs::builders::ListIdentityResolutionJobsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_identity_resolution_jobs::builders::ListIdentityResolutionJobsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.</p><br>
8    ///   - [`max_results(i32)`](crate::operation::list_identity_resolution_jobs::builders::ListIdentityResolutionJobsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_identity_resolution_jobs::builders::ListIdentityResolutionJobsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return per page.</p><br>
9    /// - On success, responds with [`ListIdentityResolutionJobsOutput`](crate::operation::list_identity_resolution_jobs::ListIdentityResolutionJobsOutput) with field(s):
10    ///   - [`identity_resolution_jobs_list(Option<Vec::<IdentityResolutionJob>>)`](crate::operation::list_identity_resolution_jobs::ListIdentityResolutionJobsOutput::identity_resolution_jobs_list): <p>A list of Identity Resolution Jobs.</p>
11    ///   - [`next_token(Option<String>)`](crate::operation::list_identity_resolution_jobs::ListIdentityResolutionJobsOutput::next_token): <p>If there are additional results, this is the token for the next set of results.</p>
12    /// - On failure, responds with [`SdkError<ListIdentityResolutionJobsError>`](crate::operation::list_identity_resolution_jobs::ListIdentityResolutionJobsError)
13    pub fn list_identity_resolution_jobs(
14        &self,
15    ) -> crate::operation::list_identity_resolution_jobs::builders::ListIdentityResolutionJobsFluentBuilder {
16        crate::operation::list_identity_resolution_jobs::builders::ListIdentityResolutionJobsFluentBuilder::new(self.handle.clone())
17    }
18}