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