aws_sdk_datasync/client/
remove_storage_system.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`RemoveStorageSystem`](crate::operation::remove_storage_system::builders::RemoveStorageSystemFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`storage_system_arn(impl Into<String>)`](crate::operation::remove_storage_system::builders::RemoveStorageSystemFluentBuilder::storage_system_arn) / [`set_storage_system_arn(Option<String>)`](crate::operation::remove_storage_system::builders::RemoveStorageSystemFluentBuilder::set_storage_system_arn):<br>required: **true**<br><p>Specifies the Amazon Resource Name (ARN) of the storage system that you want to permanently remove from DataSync Discovery.</p><br>
    /// - On success, responds with [`RemoveStorageSystemOutput`](crate::operation::remove_storage_system::RemoveStorageSystemOutput)
    /// - On failure, responds with [`SdkError<RemoveStorageSystemError>`](crate::operation::remove_storage_system::RemoveStorageSystemError)
    pub fn remove_storage_system(&self) -> crate::operation::remove_storage_system::builders::RemoveStorageSystemFluentBuilder {
        crate::operation::remove_storage_system::builders::RemoveStorageSystemFluentBuilder::new(self.handle.clone())
    }
}