1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateAppImageConfig`](crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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): <p>The name of the AppImageConfig to update.</p>
    ///   - [`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): <p>The new KernelGateway app to run on the image.</p>
    /// - On success, responds with [`UpdateAppImageConfigOutput`](crate::operation::update_app_image_config::UpdateAppImageConfigOutput) with field(s):
    ///   - [`app_image_config_arn(Option<String>)`](crate::operation::update_app_image_config::UpdateAppImageConfigOutput::app_image_config_arn): <p>The Amazon Resource Name (ARN) for the AppImageConfig.</p>
    /// - On failure, responds with [`SdkError<UpdateAppImageConfigError>`](crate::operation::update_app_image_config::UpdateAppImageConfigError)
    pub fn update_app_image_config(
        &self,
    ) -> crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder
    {
        crate::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder::new(
            self.handle.clone(),
        )
    }
}