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