// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListNotebookRuns`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The identifier of the Amazon DataZone domain in which to list notebook runs.</p><br>
/// - [`owning_project_identifier(impl Into<String>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::owning_project_identifier) / [`set_owning_project_identifier(Option<String>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::set_owning_project_identifier):<br>required: **true**<br><p>The identifier of the project that owns the notebook runs.</p><br>
/// - [`notebook_identifier(impl Into<String>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::notebook_identifier) / [`set_notebook_identifier(Option<String>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::set_notebook_identifier):<br>required: **false**<br><p>The identifier of the notebook to filter runs by.</p><br>
/// - [`status(NotebookRunStatus)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::status) / [`set_status(Option<NotebookRunStatus>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::set_status):<br>required: **false**<br><p>The status to filter notebook runs by.</p><br>
/// - [`schedule_identifier(impl Into<String>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::schedule_identifier) / [`set_schedule_identifier(Option<String>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::set_schedule_identifier):<br>required: **false**<br><p>The identifier of the schedule to filter notebook runs by.</p><br>
/// - [`max_results(i32)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of notebook runs to return in a single call. When the number of notebook runs exceeds the value of <code>MaxResults</code>, the response contains a <code>NextToken</code> value.</p><br>
/// - [`sort_order(SortOrder)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::sort_order) / [`set_sort_order(Option<SortOrder>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::set_sort_order):<br>required: **false**<br><p>The sort order for the results.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::set_next_token):<br>required: **false**<br><p>When the number of notebook runs is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of notebook runs, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListNotebookRuns</code> to list the next set of notebook runs.</p><br>
/// - On success, responds with [`ListNotebookRunsOutput`](crate::operation::list_notebook_runs::ListNotebookRunsOutput) with field(s):
/// - [`items(Option<Vec::<NotebookRunSummary>>)`](crate::operation::list_notebook_runs::ListNotebookRunsOutput::items): <p>The results of the <code>ListNotebookRuns</code> action.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_notebook_runs::ListNotebookRunsOutput::next_token): <p>When the number of notebook runs is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of notebook runs, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListNotebookRuns</code> to list the next set of notebook runs.</p>
/// - On failure, responds with [`SdkError<ListNotebookRunsError>`](crate::operation::list_notebook_runs::ListNotebookRunsError)
pub fn list_notebook_runs(&self) -> crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder {
crate::operation::list_notebook_runs::builders::ListNotebookRunsFluentBuilder::new(self.handle.clone())
}
}