[][src]Struct rusoto_sagemaker::UpdateNotebookInstanceLifecycleConfigInput

pub struct UpdateNotebookInstanceLifecycleConfigInput {
    pub notebook_instance_lifecycle_config_name: String,
    pub on_create: Option<Vec<NotebookInstanceLifecycleHook>>,
    pub on_start: Option<Vec<NotebookInstanceLifecycleHook>>,
}

Fields

notebook_instance_lifecycle_config_name: 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. The shell script must be a base64-encoded string.

on_start: Option<Vec<NotebookInstanceLifecycleHook>>

The shell script that runs every time you start a notebook instance, including when you create the notebook instance. The shell script must be a base64-encoded string.

Trait Implementations

impl Clone for UpdateNotebookInstanceLifecycleConfigInput[src]

impl Debug for UpdateNotebookInstanceLifecycleConfigInput[src]

impl Default for UpdateNotebookInstanceLifecycleConfigInput[src]

impl PartialEq<UpdateNotebookInstanceLifecycleConfigInput> for UpdateNotebookInstanceLifecycleConfigInput[src]

impl Serialize for UpdateNotebookInstanceLifecycleConfigInput[src]

impl StructuralPartialEq for UpdateNotebookInstanceLifecycleConfigInput[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> From<T> 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.