Struct aws_sdk_sagemaker::operation::list_notebook_instances::builders::ListNotebookInstancesOutputBuilder
source · #[non_exhaustive]pub struct ListNotebookInstancesOutputBuilder { /* private fields */ }
Expand description
A builder for ListNotebookInstancesOutput
.
Implementations§
source§impl ListNotebookInstancesOutputBuilder
impl ListNotebookInstancesOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the response to the previous ListNotebookInstances
request was truncated, SageMaker returns this token. To retrieve the next set of notebook instances, use the token in the next request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the response to the previous ListNotebookInstances
request was truncated, SageMaker returns this token. To retrieve the next set of notebook instances, use the token in the next request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the response to the previous ListNotebookInstances
request was truncated, SageMaker returns this token. To retrieve the next set of notebook instances, use the token in the next request.
sourcepub fn notebook_instances(self, input: NotebookInstanceSummary) -> Self
pub fn notebook_instances(self, input: NotebookInstanceSummary) -> Self
Appends an item to notebook_instances
.
To override the contents of this collection use set_notebook_instances
.
An array of NotebookInstanceSummary
objects, one for each notebook instance.
sourcepub fn set_notebook_instances(
self,
input: Option<Vec<NotebookInstanceSummary>>,
) -> Self
pub fn set_notebook_instances( self, input: Option<Vec<NotebookInstanceSummary>>, ) -> Self
An array of NotebookInstanceSummary
objects, one for each notebook instance.
sourcepub fn get_notebook_instances(&self) -> &Option<Vec<NotebookInstanceSummary>>
pub fn get_notebook_instances(&self) -> &Option<Vec<NotebookInstanceSummary>>
An array of NotebookInstanceSummary
objects, one for each notebook instance.
sourcepub fn build(self) -> ListNotebookInstancesOutput
pub fn build(self) -> ListNotebookInstancesOutput
Consumes the builder and constructs a ListNotebookInstancesOutput
.
Trait Implementations§
source§impl Clone for ListNotebookInstancesOutputBuilder
impl Clone for ListNotebookInstancesOutputBuilder
source§fn clone(&self) -> ListNotebookInstancesOutputBuilder
fn clone(&self) -> ListNotebookInstancesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListNotebookInstancesOutputBuilder
impl Default for ListNotebookInstancesOutputBuilder
source§fn default() -> ListNotebookInstancesOutputBuilder
fn default() -> ListNotebookInstancesOutputBuilder
source§impl PartialEq for ListNotebookInstancesOutputBuilder
impl PartialEq for ListNotebookInstancesOutputBuilder
source§fn eq(&self, other: &ListNotebookInstancesOutputBuilder) -> bool
fn eq(&self, other: &ListNotebookInstancesOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListNotebookInstancesOutputBuilder
Auto Trait Implementations§
impl Freeze for ListNotebookInstancesOutputBuilder
impl RefUnwindSafe for ListNotebookInstancesOutputBuilder
impl Send for ListNotebookInstancesOutputBuilder
impl Sync for ListNotebookInstancesOutputBuilder
impl Unpin for ListNotebookInstancesOutputBuilder
impl UnwindSafe for ListNotebookInstancesOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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