aws_sdk_backup/client/delete_report_plan.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 [`DeleteReportPlan`](crate::operation::delete_report_plan::builders::DeleteReportPlanFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`report_plan_name(impl Into<String>)`](crate::operation::delete_report_plan::builders::DeleteReportPlanFluentBuilder::report_plan_name) / [`set_report_plan_name(Option<String>)`](crate::operation::delete_report_plan::builders::DeleteReportPlanFluentBuilder::set_report_plan_name):<br>required: **true**<br><p>The unique name of a report plan.</p><br>
7 /// - On success, responds with [`DeleteReportPlanOutput`](crate::operation::delete_report_plan::DeleteReportPlanOutput)
8 /// - On failure, responds with [`SdkError<DeleteReportPlanError>`](crate::operation::delete_report_plan::DeleteReportPlanError)
9 pub fn delete_report_plan(&self) -> crate::operation::delete_report_plan::builders::DeleteReportPlanFluentBuilder {
10 crate::operation::delete_report_plan::builders::DeleteReportPlanFluentBuilder::new(self.handle.clone())
11 }
12}