aws_sdk_workspacesweb/client/
delete_data_protection_settings.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteDataProtectionSettings`](crate::operation::delete_data_protection_settings::builders::DeleteDataProtectionSettingsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    /// - On success, responds with [`DeleteDataProtectionSettingsOutput`](crate::operation::delete_data_protection_settings::DeleteDataProtectionSettingsOutput)
    /// - On failure, responds with [`SdkError<DeleteDataProtectionSettingsError>`](crate::operation::delete_data_protection_settings::DeleteDataProtectionSettingsError)
    pub fn delete_data_protection_settings(
        &self,
    ) -> crate::operation::delete_data_protection_settings::builders::DeleteDataProtectionSettingsFluentBuilder {
        crate::operation::delete_data_protection_settings::builders::DeleteDataProtectionSettingsFluentBuilder::new(self.handle.clone())
    }
}