pub struct ListNotebookInstancesOutput {
pub next_token: Option<String>,
pub notebook_instances: Option<Vec<NotebookInstanceSummary>>,
}
Fields§
§next_token: Option<String>
If the response to the previous ListNotebookInstances
request was truncated, Amazon SageMaker returns this token. To retrieve the next set of notebook instances, use the token in the next request.
notebook_instances: Option<Vec<NotebookInstanceSummary>>
An array of NotebookInstanceSummary
objects, one for each notebook instance.
Trait Implementations§
Source§impl Clone for ListNotebookInstancesOutput
impl Clone for ListNotebookInstancesOutput
Source§fn clone(&self) -> ListNotebookInstancesOutput
fn clone(&self) -> ListNotebookInstancesOutput
Returns a duplicate 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 ListNotebookInstancesOutput
impl Debug for ListNotebookInstancesOutput
Source§impl Default for ListNotebookInstancesOutput
impl Default for ListNotebookInstancesOutput
Source§fn default() -> ListNotebookInstancesOutput
fn default() -> ListNotebookInstancesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListNotebookInstancesOutput
impl<'de> Deserialize<'de> for ListNotebookInstancesOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ListNotebookInstancesOutput
Auto Trait Implementations§
impl Freeze for ListNotebookInstancesOutput
impl RefUnwindSafe for ListNotebookInstancesOutput
impl Send for ListNotebookInstancesOutput
impl Sync for ListNotebookInstancesOutput
impl Unpin for ListNotebookInstancesOutput
impl UnwindSafe for ListNotebookInstancesOutput
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