#[non_exhaustive]pub struct ListNotebookMetadataOutput {
pub next_token: Option<String>,
pub notebook_metadata_list: Option<Vec<NotebookMetadata>>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.next_token: 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.
notebook_metadata_list: Option<Vec<NotebookMetadata>>The list of notebook metadata for the specified workgroup.
Implementations§
source§impl ListNotebookMetadataOutput
impl ListNotebookMetadataOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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) -> Option<&[NotebookMetadata]>
pub fn notebook_metadata_list(&self) -> Option<&[NotebookMetadata]>
The list of notebook metadata for the specified workgroup.
source§impl ListNotebookMetadataOutput
impl ListNotebookMetadataOutput
sourcepub fn builder() -> ListNotebookMetadataOutputBuilder
pub fn builder() -> ListNotebookMetadataOutputBuilder
Creates a new builder-style object to manufacture ListNotebookMetadataOutput.
Trait Implementations§
source§impl Clone for ListNotebookMetadataOutput
impl Clone for ListNotebookMetadataOutput
source§fn clone(&self) -> ListNotebookMetadataOutput
fn clone(&self) -> ListNotebookMetadataOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ListNotebookMetadataOutput
impl Debug for ListNotebookMetadataOutput
source§impl PartialEq<ListNotebookMetadataOutput> for ListNotebookMetadataOutput
impl PartialEq<ListNotebookMetadataOutput> for ListNotebookMetadataOutput
source§fn eq(&self, other: &ListNotebookMetadataOutput) -> bool
fn eq(&self, other: &ListNotebookMetadataOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ListNotebookMetadataOutput
impl RequestId for ListNotebookMetadataOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for ListNotebookMetadataOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListNotebookMetadataOutput
impl Send for ListNotebookMetadataOutput
impl Sync for ListNotebookMetadataOutput
impl Unpin for ListNotebookMetadataOutput
impl UnwindSafe for ListNotebookMetadataOutput
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
Mutably borrows from an owned value. Read more