aws_sdk_customerprofiles/client/list_identity_resolution_jobs.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListIdentityResolutionJobs`](crate::operation::list_identity_resolution_jobs::builders::ListIdentityResolutionJobsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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>
/// - [`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>
/// - [`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>
/// - On success, responds with [`ListIdentityResolutionJobsOutput`](crate::operation::list_identity_resolution_jobs::ListIdentityResolutionJobsOutput) with field(s):
/// - [`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>
/// - [`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>
/// - On failure, responds with [`SdkError<ListIdentityResolutionJobsError>`](crate::operation::list_identity_resolution_jobs::ListIdentityResolutionJobsError)
pub fn list_identity_resolution_jobs(
&self,
) -> crate::operation::list_identity_resolution_jobs::builders::ListIdentityResolutionJobsFluentBuilder {
crate::operation::list_identity_resolution_jobs::builders::ListIdentityResolutionJobsFluentBuilder::new(self.handle.clone())
}
}