Struct aws_sdk_sagemaker::input::CreateNotebookInstanceLifecycleConfigInput [−][src]
#[non_exhaustive]pub struct CreateNotebookInstanceLifecycleConfigInput {
pub notebook_instance_lifecycle_config_name: Option<String>,
pub on_create: Option<Vec<NotebookInstanceLifecycleHook>>,
pub on_start: Option<Vec<NotebookInstanceLifecycleHook>>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.notebook_instance_lifecycle_config_name: Option<String>The name of the lifecycle configuration.
on_create: Option<Vec<NotebookInstanceLifecycleHook>>A 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>>A 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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateNotebookInstanceLifecycleConfig, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateNotebookInstanceLifecycleConfig, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateNotebookInstanceLifecycleConfig>
Creates a new builder-style object to manufacture CreateNotebookInstanceLifecycleConfigInput
The name of the lifecycle configuration.
A shell script that runs only once, when you create a notebook instance. The shell script must be a base64-encoded string.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more