// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListNotebookMetadata`](crate::operation::list_notebook_metadata::builders::ListNotebookMetadataFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`filters(FilterDefinition)`](crate::operation::list_notebook_metadata::builders::ListNotebookMetadataFluentBuilder::filters) / [`set_filters(Option<FilterDefinition>)`](crate::operation::list_notebook_metadata::builders::ListNotebookMetadataFluentBuilder::set_filters):<br>required: **false**<br><p>Search filter string.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_notebook_metadata::builders::ListNotebookMetadataFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_notebook_metadata::builders::ListNotebookMetadataFluentBuilder::set_next_token):<br>required: **false**<br><p>A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.</p><br>
/// - [`max_results(i32)`](crate::operation::list_notebook_metadata::builders::ListNotebookMetadataFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_notebook_metadata::builders::ListNotebookMetadataFluentBuilder::set_max_results):<br>required: **false**<br><p>Specifies the maximum number of results to return.</p><br>
/// - [`work_group(impl Into<String>)`](crate::operation::list_notebook_metadata::builders::ListNotebookMetadataFluentBuilder::work_group) / [`set_work_group(Option<String>)`](crate::operation::list_notebook_metadata::builders::ListNotebookMetadataFluentBuilder::set_work_group):<br>required: **true**<br><p>The name of the Spark enabled workgroup to retrieve notebook metadata for.</p><br>
/// - On success, responds with [`ListNotebookMetadataOutput`](crate::operation::list_notebook_metadata::ListNotebookMetadataOutput) with field(s):
/// - [`next_token(Option<String>)`](crate::operation::list_notebook_metadata::ListNotebookMetadataOutput::next_token): <p>A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the <code>NextToken</code> from the response object of the previous page call.</p>
/// - [`notebook_metadata_list(Option<Vec::<NotebookMetadata>>)`](crate::operation::list_notebook_metadata::ListNotebookMetadataOutput::notebook_metadata_list): <p>The list of notebook metadata for the specified workgroup.</p>
/// - On failure, responds with [`SdkError<ListNotebookMetadataError>`](crate::operation::list_notebook_metadata::ListNotebookMetadataError)
pub fn list_notebook_metadata(&self) -> crate::operation::list_notebook_metadata::builders::ListNotebookMetadataFluentBuilder {
crate::operation::list_notebook_metadata::builders::ListNotebookMetadataFluentBuilder::new(self.handle.clone())
}
}