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