// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateNotebookInstanceLifecycleConfig`](crate::operation::update_notebook_instance_lifecycle_config::builders::UpdateNotebookInstanceLifecycleConfigFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`notebook_instance_lifecycle_config_name(impl Into<String>)`](crate::operation::update_notebook_instance_lifecycle_config::builders::UpdateNotebookInstanceLifecycleConfigFluentBuilder::notebook_instance_lifecycle_config_name) / [`set_notebook_instance_lifecycle_config_name(Option<String>)`](crate::operation::update_notebook_instance_lifecycle_config::builders::UpdateNotebookInstanceLifecycleConfigFluentBuilder::set_notebook_instance_lifecycle_config_name):<br>required: **true**<br><p>The name of the lifecycle configuration.</p><br>
/// - [`on_create(NotebookInstanceLifecycleHook)`](crate::operation::update_notebook_instance_lifecycle_config::builders::UpdateNotebookInstanceLifecycleConfigFluentBuilder::on_create) / [`set_on_create(Option<Vec::<NotebookInstanceLifecycleHook>>)`](crate::operation::update_notebook_instance_lifecycle_config::builders::UpdateNotebookInstanceLifecycleConfigFluentBuilder::set_on_create):<br>required: **false**<br><p>The shell script that runs only once, when you create a notebook instance. The shell script must be a base64-encoded string.</p><br>
/// - [`on_start(NotebookInstanceLifecycleHook)`](crate::operation::update_notebook_instance_lifecycle_config::builders::UpdateNotebookInstanceLifecycleConfigFluentBuilder::on_start) / [`set_on_start(Option<Vec::<NotebookInstanceLifecycleHook>>)`](crate::operation::update_notebook_instance_lifecycle_config::builders::UpdateNotebookInstanceLifecycleConfigFluentBuilder::set_on_start):<br>required: **false**<br><p>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.</p><br>
/// - On success, responds with [`UpdateNotebookInstanceLifecycleConfigOutput`](crate::operation::update_notebook_instance_lifecycle_config::UpdateNotebookInstanceLifecycleConfigOutput)
/// - On failure, responds with [`SdkError<UpdateNotebookInstanceLifecycleConfigError>`](crate::operation::update_notebook_instance_lifecycle_config::UpdateNotebookInstanceLifecycleConfigError)
pub fn update_notebook_instance_lifecycle_config(
&self,
) -> crate::operation::update_notebook_instance_lifecycle_config::builders::UpdateNotebookInstanceLifecycleConfigFluentBuilder {
crate::operation::update_notebook_instance_lifecycle_config::builders::UpdateNotebookInstanceLifecycleConfigFluentBuilder::new(
self.handle.clone(),
)
}
}