#[non_exhaustive]pub struct ListNotebookMetadataOutputBuilder { /* private fields */ }Expand description
A builder for ListNotebookMetadataOutput.
Implementations§
Source§impl ListNotebookMetadataOutputBuilder
impl ListNotebookMetadataOutputBuilder
Sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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 NextToken from the response object of the previous page call.
Sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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 NextToken from the response object of the previous page call.
Sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
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 NextToken from the response object of the previous page call.
Sourcepub fn notebook_metadata_list(self, input: NotebookMetadata) -> Self
pub fn notebook_metadata_list(self, input: NotebookMetadata) -> Self
Appends an item to notebook_metadata_list.
To override the contents of this collection use set_notebook_metadata_list.
The list of notebook metadata for the specified workgroup.
Sourcepub fn set_notebook_metadata_list(
self,
input: Option<Vec<NotebookMetadata>>,
) -> Self
pub fn set_notebook_metadata_list( self, input: Option<Vec<NotebookMetadata>>, ) -> Self
The list of notebook metadata for the specified workgroup.
Sourcepub fn get_notebook_metadata_list(&self) -> &Option<Vec<NotebookMetadata>>
pub fn get_notebook_metadata_list(&self) -> &Option<Vec<NotebookMetadata>>
The list of notebook metadata for the specified workgroup.
Sourcepub fn build(self) -> ListNotebookMetadataOutput
pub fn build(self) -> ListNotebookMetadataOutput
Consumes the builder and constructs a ListNotebookMetadataOutput.
Trait Implementations§
Source§impl Clone for ListNotebookMetadataOutputBuilder
impl Clone for ListNotebookMetadataOutputBuilder
Source§fn clone(&self) -> ListNotebookMetadataOutputBuilder
fn clone(&self) -> ListNotebookMetadataOutputBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for ListNotebookMetadataOutputBuilder
impl Default for ListNotebookMetadataOutputBuilder
Source§fn default() -> ListNotebookMetadataOutputBuilder
fn default() -> ListNotebookMetadataOutputBuilder
Source§impl PartialEq for ListNotebookMetadataOutputBuilder
impl PartialEq for ListNotebookMetadataOutputBuilder
Source§fn eq(&self, other: &ListNotebookMetadataOutputBuilder) -> bool
fn eq(&self, other: &ListNotebookMetadataOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListNotebookMetadataOutputBuilder
Auto Trait Implementations§
impl Freeze for ListNotebookMetadataOutputBuilder
impl RefUnwindSafe for ListNotebookMetadataOutputBuilder
impl Send for ListNotebookMetadataOutputBuilder
impl Sync for ListNotebookMetadataOutputBuilder
impl Unpin for ListNotebookMetadataOutputBuilder
impl UnsafeUnpin for ListNotebookMetadataOutputBuilder
impl UnwindSafe for ListNotebookMetadataOutputBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more