1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteTapePool`](crate::operation::delete_tape_pool::builders::DeleteTapePoolFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`pool_arn(impl ::std::convert::Into<String>)`](crate::operation::delete_tape_pool::builders::DeleteTapePoolFluentBuilder::pool_arn) / [`set_pool_arn(Option<String>)`](crate::operation::delete_tape_pool::builders::DeleteTapePoolFluentBuilder::set_pool_arn): <p>The Amazon Resource Name (ARN) of the custom tape pool to delete.</p>
    /// - On success, responds with [`DeleteTapePoolOutput`](crate::operation::delete_tape_pool::DeleteTapePoolOutput) with field(s):
    ///   - [`pool_arn(Option<String>)`](crate::operation::delete_tape_pool::DeleteTapePoolOutput::pool_arn): <p>The Amazon Resource Name (ARN) of the custom tape pool being deleted.</p>
    /// - On failure, responds with [`SdkError<DeleteTapePoolError>`](crate::operation::delete_tape_pool::DeleteTapePoolError)
    pub fn delete_tape_pool(
        &self,
    ) -> crate::operation::delete_tape_pool::builders::DeleteTapePoolFluentBuilder {
        crate::operation::delete_tape_pool::builders::DeleteTapePoolFluentBuilder::new(
            self.handle.clone(),
        )
    }
}