aws_sdk_workspacesweb/client/delete_data_protection_settings.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 [`DeleteDataProtectionSettings`](crate::operation::delete_data_protection_settings::builders::DeleteDataProtectionSettingsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`data_protection_settings_arn(impl Into<String>)`](crate::operation::delete_data_protection_settings::builders::DeleteDataProtectionSettingsFluentBuilder::data_protection_settings_arn) / [`set_data_protection_settings_arn(Option<String>)`](crate::operation::delete_data_protection_settings::builders::DeleteDataProtectionSettingsFluentBuilder::set_data_protection_settings_arn):<br>required: **true**<br><p>The ARN of the data protection settings.</p><br>
7 /// - On success, responds with [`DeleteDataProtectionSettingsOutput`](crate::operation::delete_data_protection_settings::DeleteDataProtectionSettingsOutput)
8 /// - On failure, responds with [`SdkError<DeleteDataProtectionSettingsError>`](crate::operation::delete_data_protection_settings::DeleteDataProtectionSettingsError)
9 pub fn delete_data_protection_settings(
10 &self,
11 ) -> crate::operation::delete_data_protection_settings::builders::DeleteDataProtectionSettingsFluentBuilder {
12 crate::operation::delete_data_protection_settings::builders::DeleteDataProtectionSettingsFluentBuilder::new(self.handle.clone())
13 }
14}