1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteAppImageConfig`](crate::operation::delete_app_image_config::builders::DeleteAppImageConfigFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`app_image_config_name(impl Into<String>)`](crate::operation::delete_app_image_config::builders::DeleteAppImageConfigFluentBuilder::app_image_config_name) / [`set_app_image_config_name(Option<String>)`](crate::operation::delete_app_image_config::builders::DeleteAppImageConfigFluentBuilder::set_app_image_config_name): <p>The name of the AppImageConfig to delete.</p>
    /// - On success, responds with [`DeleteAppImageConfigOutput`](crate::operation::delete_app_image_config::DeleteAppImageConfigOutput)
    /// - On failure, responds with [`SdkError<DeleteAppImageConfigError>`](crate::operation::delete_app_image_config::DeleteAppImageConfigError)
    pub fn delete_app_image_config(
        &self,
    ) -> crate::operation::delete_app_image_config::builders::DeleteAppImageConfigFluentBuilder
    {
        crate::operation::delete_app_image_config::builders::DeleteAppImageConfigFluentBuilder::new(
            self.handle.clone(),
        )
    }
}