aws_sdk_sagemaker/client/
update_app_image_config.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`UpdateAppImageConfig`](crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`app_image_config_name(impl Into<String>)`](crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder::app_image_config_name) / [`set_app_image_config_name(Option<String>)`](crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder::set_app_image_config_name):<br>required: **true**<br><p>The name of the AppImageConfig to update.</p><br>
7    ///   - [`kernel_gateway_image_config(KernelGatewayImageConfig)`](crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder::kernel_gateway_image_config) / [`set_kernel_gateway_image_config(Option<KernelGatewayImageConfig>)`](crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder::set_kernel_gateway_image_config):<br>required: **false**<br><p>The new KernelGateway app to run on the image.</p><br>
8    ///   - [`jupyter_lab_app_image_config(JupyterLabAppImageConfig)`](crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder::jupyter_lab_app_image_config) / [`set_jupyter_lab_app_image_config(Option<JupyterLabAppImageConfig>)`](crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder::set_jupyter_lab_app_image_config):<br>required: **false**<br><p>The JupyterLab app running on the image.</p><br>
9    ///   - [`code_editor_app_image_config(CodeEditorAppImageConfig)`](crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder::code_editor_app_image_config) / [`set_code_editor_app_image_config(Option<CodeEditorAppImageConfig>)`](crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder::set_code_editor_app_image_config):<br>required: **false**<br><p>The Code Editor app running on the image.</p><br>
10    /// - On success, responds with [`UpdateAppImageConfigOutput`](crate::operation::update_app_image_config::UpdateAppImageConfigOutput) with field(s):
11    ///   - [`app_image_config_arn(Option<String>)`](crate::operation::update_app_image_config::UpdateAppImageConfigOutput::app_image_config_arn): <p>The ARN for the AppImageConfig.</p>
12    /// - On failure, responds with [`SdkError<UpdateAppImageConfigError>`](crate::operation::update_app_image_config::UpdateAppImageConfigError)
13    pub fn update_app_image_config(&self) -> crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder {
14        crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder::new(self.handle.clone())
15    }
16}