1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteDevicePool`](crate::operation::delete_device_pool::builders::DeleteDevicePoolFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`arn(impl Into<String>)`](crate::operation::delete_device_pool::builders::DeleteDevicePoolFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::delete_device_pool::builders::DeleteDevicePoolFluentBuilder::set_arn): <p>Represents the Amazon Resource Name (ARN) of the Device Farm device pool to delete.</p>
    /// - On success, responds with [`DeleteDevicePoolOutput`](crate::operation::delete_device_pool::DeleteDevicePoolOutput)
    /// - On failure, responds with [`SdkError<DeleteDevicePoolError>`](crate::operation::delete_device_pool::DeleteDevicePoolError)
    pub fn delete_device_pool(
        &self,
    ) -> crate::operation::delete_device_pool::builders::DeleteDevicePoolFluentBuilder {
        crate::operation::delete_device_pool::builders::DeleteDevicePoolFluentBuilder::new(
            self.handle.clone(),
        )
    }
}