pub struct DescribeNotebookInstanceLifecycleConfigOutput {
pub creation_time: Option<f64>,
pub last_modified_time: Option<f64>,
pub notebook_instance_lifecycle_config_arn: Option<String>,
pub notebook_instance_lifecycle_config_name: Option<String>,
pub on_create: Option<Vec<NotebookInstanceLifecycleHook>>,
pub on_start: Option<Vec<NotebookInstanceLifecycleHook>>,
}
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: Option<String>
The Amazon Resource Name (ARN) of the lifecycle configuration.
notebook_instance_lifecycle_config_name: Option<String>
The name of the lifecycle configuration.
on_create: Option<Vec<NotebookInstanceLifecycleHook>>
The shell script that runs only once, when you create a notebook instance.
on_start: Option<Vec<NotebookInstanceLifecycleHook>>
The shell script that runs every time you start a notebook instance, including when you create the notebook instance.
Trait Implementations§
Source§impl Clone for DescribeNotebookInstanceLifecycleConfigOutput
impl Clone for DescribeNotebookInstanceLifecycleConfigOutput
Source§fn clone(&self) -> DescribeNotebookInstanceLifecycleConfigOutput
fn clone(&self) -> DescribeNotebookInstanceLifecycleConfigOutput
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 DescribeNotebookInstanceLifecycleConfigOutput
impl Default for DescribeNotebookInstanceLifecycleConfigOutput
Source§fn default() -> DescribeNotebookInstanceLifecycleConfigOutput
fn default() -> DescribeNotebookInstanceLifecycleConfigOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeNotebookInstanceLifecycleConfigOutput
impl<'de> Deserialize<'de> for DescribeNotebookInstanceLifecycleConfigOutput
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 DescribeNotebookInstanceLifecycleConfigOutput
impl PartialEq for DescribeNotebookInstanceLifecycleConfigOutput
Source§fn eq(&self, other: &DescribeNotebookInstanceLifecycleConfigOutput) -> bool
fn eq(&self, other: &DescribeNotebookInstanceLifecycleConfigOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeNotebookInstanceLifecycleConfigOutput
Auto Trait Implementations§
impl Freeze for DescribeNotebookInstanceLifecycleConfigOutput
impl RefUnwindSafe for DescribeNotebookInstanceLifecycleConfigOutput
impl Send for DescribeNotebookInstanceLifecycleConfigOutput
impl Sync for DescribeNotebookInstanceLifecycleConfigOutput
impl Unpin for DescribeNotebookInstanceLifecycleConfigOutput
impl UnwindSafe for DescribeNotebookInstanceLifecycleConfigOutput
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