aws_sdk_opsworks/client/
delete_app.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 [`DeleteApp`](crate::operation::delete_app::builders::DeleteAppFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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: **true**<br><p>The app ID.</p><br>
7    /// - On success, responds with [`DeleteAppOutput`](crate::operation::delete_app::DeleteAppOutput)
8    /// - On failure, responds with [`SdkError<DeleteAppError>`](crate::operation::delete_app::DeleteAppError)
9    pub fn delete_app(&self) -> crate::operation::delete_app::builders::DeleteAppFluentBuilder {
10        crate::operation::delete_app::builders::DeleteAppFluentBuilder::new(self.handle.clone())
11    }
12}