aws_sdk_transfer/client/delete_web_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 [`DeleteWebApp`](crate::operation::delete_web_app::builders::DeleteWebAppFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`web_app_id(impl Into<String>)`](crate::operation::delete_web_app::builders::DeleteWebAppFluentBuilder::web_app_id) / [`set_web_app_id(Option<String>)`](crate::operation::delete_web_app::builders::DeleteWebAppFluentBuilder::set_web_app_id):<br>required: **true**<br><p>Provide the unique identifier for the web app that you are deleting.</p><br>
7 /// - On success, responds with [`DeleteWebAppOutput`](crate::operation::delete_web_app::DeleteWebAppOutput)
8 /// - On failure, responds with [`SdkError<DeleteWebAppError>`](crate::operation::delete_web_app::DeleteWebAppError)
9 pub fn delete_web_app(&self) -> crate::operation::delete_web_app::builders::DeleteWebAppFluentBuilder {
10 crate::operation::delete_web_app::builders::DeleteWebAppFluentBuilder::new(self.handle.clone())
11 }
12}