// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListBackendJobs`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`app_id(impl Into<String>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::app_id) / [`set_app_id(Option<String>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::set_app_id):<br>required: **true**<br><p>The app ID.</p><br>
/// - [`backend_environment_name(impl Into<String>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::backend_environment_name) / [`set_backend_environment_name(Option<String>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::set_backend_environment_name):<br>required: **true**<br><p>The name of the backend environment.</p><br>
/// - [`job_id(impl Into<String>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::job_id) / [`set_job_id(Option<String>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::set_job_id):<br>required: **false**<br><p>The ID for the job.</p><br>
/// - [`max_results(i32)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results that you want in the response.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results.</p><br>
/// - [`operation(impl Into<String>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::operation) / [`set_operation(Option<String>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::set_operation):<br>required: **false**<br><p>Filters the list of response objects to include only those with the specified operation name.</p><br>
/// - [`status(impl Into<String>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::status) / [`set_status(Option<String>)`](crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::set_status):<br>required: **false**<br><p>Filters the list of response objects to include only those with the specified status.</p><br>
/// - On success, responds with [`ListBackendJobsOutput`](crate::operation::list_backend_jobs::ListBackendJobsOutput) with field(s):
/// - [`jobs(Option<Vec::<BackendJobRespObj>>)`](crate::operation::list_backend_jobs::ListBackendJobsOutput::jobs): <p>An array of jobs and their properties.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_backend_jobs::ListBackendJobsOutput::next_token): <p>The token for the next set of results.</p>
/// - On failure, responds with [`SdkError<ListBackendJobsError>`](crate::operation::list_backend_jobs::ListBackendJobsError)
pub fn list_backend_jobs(&self) -> crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder {
crate::operation::list_backend_jobs::builders::ListBackendJobsFluentBuilder::new(self.handle.clone())
}
}