1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteInsight`](crate::operation::delete_insight::builders::DeleteInsightFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::delete_insight::builders::DeleteInsightFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::delete_insight::builders::DeleteInsightFluentBuilder::set_id): <p>The ID of the insight.</p>
    /// - On success, responds with [`DeleteInsightOutput`](crate::operation::delete_insight::DeleteInsightOutput)
    /// - On failure, responds with [`SdkError<DeleteInsightError>`](crate::operation::delete_insight::DeleteInsightError)
    pub fn delete_insight(
        &self,
    ) -> crate::operation::delete_insight::builders::DeleteInsightFluentBuilder {
        crate::operation::delete_insight::builders::DeleteInsightFluentBuilder::new(
            self.handle.clone(),
        )
    }
}