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 [`DeleteForm`](crate::operation::delete_form::builders::DeleteFormFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`app_id(impl Into<String>)`](crate::operation::delete_form::builders::DeleteFormFluentBuilder::app_id) / [`set_app_id(Option<String>)`](crate::operation::delete_form::builders::DeleteFormFluentBuilder::set_app_id):<br>required: **true**<br><p>The unique ID of the Amplify app associated with the form to delete.</p><br>
    ///   - [`environment_name(impl Into<String>)`](crate::operation::delete_form::builders::DeleteFormFluentBuilder::environment_name) / [`set_environment_name(Option<String>)`](crate::operation::delete_form::builders::DeleteFormFluentBuilder::set_environment_name):<br>required: **true**<br><p>The name of the backend environment that is a part of the Amplify app.</p><br>
    ///   - [`id(impl Into<String>)`](crate::operation::delete_form::builders::DeleteFormFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::delete_form::builders::DeleteFormFluentBuilder::set_id):<br>required: **true**<br><p>The unique ID of the form to delete.</p><br>
    /// - On success, responds with [`DeleteFormOutput`](crate::operation::delete_form::DeleteFormOutput)
    /// - On failure, responds with [`SdkError<DeleteFormError>`](crate::operation::delete_form::DeleteFormError)
    pub fn delete_form(&self) -> crate::operation::delete_form::builders::DeleteFormFluentBuilder {
        crate::operation::delete_form::builders::DeleteFormFluentBuilder::new(self.handle.clone())
    }
}