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 [`DeleteReport`](crate::operation::delete_report::builders::DeleteReportFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`arn(impl Into<String>)`](crate::operation::delete_report::builders::DeleteReportFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::delete_report::builders::DeleteReportFluentBuilder::set_arn): <p> The ARN of the report to delete. </p>
    /// - On success, responds with [`DeleteReportOutput`](crate::operation::delete_report::DeleteReportOutput)
    /// - On failure, responds with [`SdkError<DeleteReportError>`](crate::operation::delete_report::DeleteReportError)
    pub fn delete_report(
        &self,
    ) -> crate::operation::delete_report::builders::DeleteReportFluentBuilder {
        crate::operation::delete_report::builders::DeleteReportFluentBuilder::new(
            self.handle.clone(),
        )
    }
}