aws_sdk_frauddetector/client/
delete_variable.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 [`DeleteVariable`](crate::operation::delete_variable::builders::DeleteVariableFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`name(impl Into<String>)`](crate::operation::delete_variable::builders::DeleteVariableFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_variable::builders::DeleteVariableFluentBuilder::set_name):<br>required: **true**<br><p>The name of the variable to delete.</p><br>
7    /// - On success, responds with [`DeleteVariableOutput`](crate::operation::delete_variable::DeleteVariableOutput)
8    /// - On failure, responds with [`SdkError<DeleteVariableError>`](crate::operation::delete_variable::DeleteVariableError)
9    pub fn delete_variable(&self) -> crate::operation::delete_variable::builders::DeleteVariableFluentBuilder {
10        crate::operation::delete_variable::builders::DeleteVariableFluentBuilder::new(self.handle.clone())
11    }
12}