pub struct Builder { /* private fields */ }
Expand description
A builder for ListNotebookInstancesOutput
.
Implementations§
source§impl Builder
impl Builder
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 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 build(self) -> ListNotebookInstancesOutput
pub fn build(self) -> ListNotebookInstancesOutput
Consumes the builder and constructs a ListNotebookInstancesOutput
.