[][src]Struct rusoto_sagemaker::DescribeNotebookInstanceLifecycleConfigOutput

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

impl Clone for DescribeNotebookInstanceLifecycleConfigOutput[src]

impl Debug for DescribeNotebookInstanceLifecycleConfigOutput[src]

impl Default for DescribeNotebookInstanceLifecycleConfigOutput[src]

impl<'de> Deserialize<'de> for DescribeNotebookInstanceLifecycleConfigOutput[src]

impl PartialEq<DescribeNotebookInstanceLifecycleConfigOutput> for DescribeNotebookInstanceLifecycleConfigOutput[src]

impl StructuralPartialEq for DescribeNotebookInstanceLifecycleConfigOutput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.