1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UnclaimDevice`](crate::operation::unclaim_device::builders::UnclaimDeviceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`device_id(impl Into<String>)`](crate::operation::unclaim_device::builders::UnclaimDeviceFluentBuilder::device_id) / [`set_device_id(Option<String>)`](crate::operation::unclaim_device::builders::UnclaimDeviceFluentBuilder::set_device_id): <p>The unique identifier of the device.</p>
    /// - On success, responds with [`UnclaimDeviceOutput`](crate::operation::unclaim_device::UnclaimDeviceOutput) with field(s):
    ///   - [`state(Option<String>)`](crate::operation::unclaim_device::UnclaimDeviceOutput::state): <p>The device's final claim state.</p>
    /// - On failure, responds with [`SdkError<UnclaimDeviceError>`](crate::operation::unclaim_device::UnclaimDeviceError)
    pub fn unclaim_device(&self) -> crate::operation::unclaim_device::builders::UnclaimDeviceFluentBuilder {
        crate::operation::unclaim_device::builders::UnclaimDeviceFluentBuilder::new(self.handle.clone())
    }
}