aws_sdk_guardduty/client/delete_malware_protection_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 [`DeleteMalwareProtectionPlan`](crate::operation::delete_malware_protection_plan::builders::DeleteMalwareProtectionPlanFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`malware_protection_plan_id(impl Into<String>)`](crate::operation::delete_malware_protection_plan::builders::DeleteMalwareProtectionPlanFluentBuilder::malware_protection_plan_id) / [`set_malware_protection_plan_id(Option<String>)`](crate::operation::delete_malware_protection_plan::builders::DeleteMalwareProtectionPlanFluentBuilder::set_malware_protection_plan_id):<br>required: **true**<br><p>A unique identifier associated with Malware Protection plan resource.</p><br>
7 /// - On success, responds with [`DeleteMalwareProtectionPlanOutput`](crate::operation::delete_malware_protection_plan::DeleteMalwareProtectionPlanOutput)
8 /// - On failure, responds with [`SdkError<DeleteMalwareProtectionPlanError>`](crate::operation::delete_malware_protection_plan::DeleteMalwareProtectionPlanError)
9 pub fn delete_malware_protection_plan(
10 &self,
11 ) -> crate::operation::delete_malware_protection_plan::builders::DeleteMalwareProtectionPlanFluentBuilder {
12 crate::operation::delete_malware_protection_plan::builders::DeleteMalwareProtectionPlanFluentBuilder::new(self.handle.clone())
13 }
14}