aws_sdk_devicefarm/client/
delete_device_pool.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 [`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):<br>required: **true**<br><p>Represents the Amazon Resource Name (ARN) of the Device Farm device pool to delete.</p><br>
    /// - 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())
    }
}