Struct aws_sdk_sagemaker::operation::list_notebook_instance_lifecycle_configs::ListNotebookInstanceLifecycleConfigsOutput
source · #[non_exhaustive]pub struct ListNotebookInstanceLifecycleConfigsOutput {
pub next_token: Option<String>,
pub notebook_instance_lifecycle_configs: Option<Vec<NotebookInstanceLifecycleConfigSummary>>,
/* 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>
If the response is truncated, SageMaker returns this token. To get the next set of lifecycle configurations, use it in the next request.
notebook_instance_lifecycle_configs: Option<Vec<NotebookInstanceLifecycleConfigSummary>>
An array of NotebookInstanceLifecycleConfiguration
objects, each listing a lifecycle configuration.
Implementations§
source§impl ListNotebookInstanceLifecycleConfigsOutput
impl ListNotebookInstanceLifecycleConfigsOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the response is truncated, SageMaker returns this token. To get the next set of lifecycle configurations, use it in the next request.
sourcepub fn notebook_instance_lifecycle_configs(
&self
) -> Option<&[NotebookInstanceLifecycleConfigSummary]>
pub fn notebook_instance_lifecycle_configs( &self ) -> Option<&[NotebookInstanceLifecycleConfigSummary]>
An array of NotebookInstanceLifecycleConfiguration
objects, each listing a lifecycle configuration.
source§impl ListNotebookInstanceLifecycleConfigsOutput
impl ListNotebookInstanceLifecycleConfigsOutput
sourcepub fn builder() -> ListNotebookInstanceLifecycleConfigsOutputBuilder
pub fn builder() -> ListNotebookInstanceLifecycleConfigsOutputBuilder
Creates a new builder-style object to manufacture ListNotebookInstanceLifecycleConfigsOutput
.
Trait Implementations§
source§impl Clone for ListNotebookInstanceLifecycleConfigsOutput
impl Clone for ListNotebookInstanceLifecycleConfigsOutput
source§fn clone(&self) -> ListNotebookInstanceLifecycleConfigsOutput
fn clone(&self) -> ListNotebookInstanceLifecycleConfigsOutput
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 PartialEq<ListNotebookInstanceLifecycleConfigsOutput> for ListNotebookInstanceLifecycleConfigsOutput
impl PartialEq<ListNotebookInstanceLifecycleConfigsOutput> for ListNotebookInstanceLifecycleConfigsOutput
source§fn eq(&self, other: &ListNotebookInstanceLifecycleConfigsOutput) -> bool
fn eq(&self, other: &ListNotebookInstanceLifecycleConfigsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListNotebookInstanceLifecycleConfigsOutput
impl RequestId for ListNotebookInstanceLifecycleConfigsOutput
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 ListNotebookInstanceLifecycleConfigsOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListNotebookInstanceLifecycleConfigsOutput
impl Send for ListNotebookInstanceLifecycleConfigsOutput
impl Sync for ListNotebookInstanceLifecycleConfigsOutput
impl Unpin for ListNotebookInstanceLifecycleConfigsOutput
impl UnwindSafe for ListNotebookInstanceLifecycleConfigsOutput
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