#[non_exhaustive]pub struct ListNotebookSessionsOutput {
pub notebook_sessions_list: Option<Vec<NotebookSessionSummary>>,
pub next_token: Option<String>,
/* 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.notebook_sessions_list: Option<Vec<NotebookSessionSummary>>A list of the sessions belonging to the notebook.
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.
Implementations§
source§impl ListNotebookSessionsOutput
impl ListNotebookSessionsOutput
sourcepub fn notebook_sessions_list(&self) -> Option<&[NotebookSessionSummary]>
pub fn notebook_sessions_list(&self) -> Option<&[NotebookSessionSummary]>
A list of the sessions belonging to the notebook.
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.
source§impl ListNotebookSessionsOutput
impl ListNotebookSessionsOutput
sourcepub fn builder() -> ListNotebookSessionsOutputBuilder
pub fn builder() -> ListNotebookSessionsOutputBuilder
Creates a new builder-style object to manufacture ListNotebookSessionsOutput.
Trait Implementations§
source§impl Clone for ListNotebookSessionsOutput
impl Clone for ListNotebookSessionsOutput
source§fn clone(&self) -> ListNotebookSessionsOutput
fn clone(&self) -> ListNotebookSessionsOutput
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 ListNotebookSessionsOutput
impl Debug for ListNotebookSessionsOutput
source§impl PartialEq<ListNotebookSessionsOutput> for ListNotebookSessionsOutput
impl PartialEq<ListNotebookSessionsOutput> for ListNotebookSessionsOutput
source§fn eq(&self, other: &ListNotebookSessionsOutput) -> bool
fn eq(&self, other: &ListNotebookSessionsOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ListNotebookSessionsOutput
impl RequestId for ListNotebookSessionsOutput
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 ListNotebookSessionsOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListNotebookSessionsOutput
impl Send for ListNotebookSessionsOutput
impl Sync for ListNotebookSessionsOutput
impl Unpin for ListNotebookSessionsOutput
impl UnwindSafe for ListNotebookSessionsOutput
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