pub struct NotebookInstanceLifecycleConfigSummary {
pub creation_time: Option<f64>,
pub last_modified_time: Option<f64>,
pub notebook_instance_lifecycle_config_arn: String,
pub notebook_instance_lifecycle_config_name: String,
}
Expand description
Provides a summary of a notebook instance lifecycle configuration.
Fields§
§creation_time: Option<f64>
A timestamp that tells when the lifecycle configuration was created.
last_modified_time: Option<f64>
A timestamp that tells when the lifecycle configuration was last modified.
notebook_instance_lifecycle_config_arn: String
The Amazon Resource Name (ARN) of the lifecycle configuration.
notebook_instance_lifecycle_config_name: String
The name of the lifecycle configuration.
Trait Implementations§
Source§impl Clone for NotebookInstanceLifecycleConfigSummary
impl Clone for NotebookInstanceLifecycleConfigSummary
Source§fn clone(&self) -> NotebookInstanceLifecycleConfigSummary
fn clone(&self) -> NotebookInstanceLifecycleConfigSummary
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 Default for NotebookInstanceLifecycleConfigSummary
impl Default for NotebookInstanceLifecycleConfigSummary
Source§fn default() -> NotebookInstanceLifecycleConfigSummary
fn default() -> NotebookInstanceLifecycleConfigSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotebookInstanceLifecycleConfigSummary
impl<'de> Deserialize<'de> for NotebookInstanceLifecycleConfigSummary
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
Source§impl PartialEq for NotebookInstanceLifecycleConfigSummary
impl PartialEq for NotebookInstanceLifecycleConfigSummary
Source§fn eq(&self, other: &NotebookInstanceLifecycleConfigSummary) -> bool
fn eq(&self, other: &NotebookInstanceLifecycleConfigSummary) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for NotebookInstanceLifecycleConfigSummary
Auto Trait Implementations§
impl Freeze for NotebookInstanceLifecycleConfigSummary
impl RefUnwindSafe for NotebookInstanceLifecycleConfigSummary
impl Send for NotebookInstanceLifecycleConfigSummary
impl Sync for NotebookInstanceLifecycleConfigSummary
impl Unpin for NotebookInstanceLifecycleConfigSummary
impl UnwindSafe for NotebookInstanceLifecycleConfigSummary
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