1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteApp`](crate::operation::delete_app::builders::DeleteAppFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`app_id(impl Into<String>)`](crate::operation::delete_app::builders::DeleteAppFluentBuilder::app_id) / [`set_app_id(Option<String>)`](crate::operation::delete_app::builders::DeleteAppFluentBuilder::set_app_id):<br>required: **false**<br><p>The ID of the application.</p><br>
    ///   - [`force_stop_app_replication(bool)`](crate::operation::delete_app::builders::DeleteAppFluentBuilder::force_stop_app_replication) / [`set_force_stop_app_replication(Option<bool>)`](crate::operation::delete_app::builders::DeleteAppFluentBuilder::set_force_stop_app_replication):<br>required: **false**<br><p>Indicates whether to stop all replication jobs corresponding to the servers in the application while deleting the application.</p><br>
    ///   - [`force_terminate_app(bool)`](crate::operation::delete_app::builders::DeleteAppFluentBuilder::force_terminate_app) / [`set_force_terminate_app(Option<bool>)`](crate::operation::delete_app::builders::DeleteAppFluentBuilder::set_force_terminate_app):<br>required: **false**<br><p>Indicates whether to terminate the stack corresponding to the application while deleting the application.</p><br>
    /// - On success, responds with [`DeleteAppOutput`](crate::operation::delete_app::DeleteAppOutput)
    /// - On failure, responds with [`SdkError<DeleteAppError>`](crate::operation::delete_app::DeleteAppError)
    pub fn delete_app(&self) -> crate::operation::delete_app::builders::DeleteAppFluentBuilder {
        crate::operation::delete_app::builders::DeleteAppFluentBuilder::new(self.handle.clone())
    }
}