1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetWirelessDevice`](crate::operation::get_wireless_device::builders::GetWirelessDeviceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`identifier(impl Into<String>)`](crate::operation::get_wireless_device::builders::GetWirelessDeviceFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_wireless_device::builders::GetWirelessDeviceFluentBuilder::set_identifier):<br>required: **true**<br><p>The identifier of the wireless device to get.</p><br>
    ///   - [`identifier_type(WirelessDeviceIdType)`](crate::operation::get_wireless_device::builders::GetWirelessDeviceFluentBuilder::identifier_type) / [`set_identifier_type(Option<WirelessDeviceIdType>)`](crate::operation::get_wireless_device::builders::GetWirelessDeviceFluentBuilder::set_identifier_type):<br>required: **true**<br><p>The type of identifier used in <code>identifier</code>.</p><br>
    /// - On success, responds with [`GetWirelessDeviceOutput`](crate::operation::get_wireless_device::GetWirelessDeviceOutput) with field(s):
    ///   - [`r#type(Option<WirelessDeviceType>)`](crate::operation::get_wireless_device::GetWirelessDeviceOutput::type): <p>The wireless device type.</p>
    ///   - [`name(Option<String>)`](crate::operation::get_wireless_device::GetWirelessDeviceOutput::name): <p>The name of the resource.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_wireless_device::GetWirelessDeviceOutput::description): <p>The description of the resource.</p>
    ///   - [`destination_name(Option<String>)`](crate::operation::get_wireless_device::GetWirelessDeviceOutput::destination_name): <p>The name of the destination to which the device is assigned.</p>
    ///   - [`id(Option<String>)`](crate::operation::get_wireless_device::GetWirelessDeviceOutput::id): <p>The ID of the wireless device.</p>
    ///   - [`arn(Option<String>)`](crate::operation::get_wireless_device::GetWirelessDeviceOutput::arn): <p>The Amazon Resource Name of the resource.</p>
    ///   - [`thing_name(Option<String>)`](crate::operation::get_wireless_device::GetWirelessDeviceOutput::thing_name): <p>The name of the thing associated with the wireless device. The value is empty if a thing isn't associated with the device.</p>
    ///   - [`thing_arn(Option<String>)`](crate::operation::get_wireless_device::GetWirelessDeviceOutput::thing_arn): <p>The ARN of the thing associated with the wireless device.</p>
    ///   - [`lo_ra_wan(Option<LoRaWanDevice>)`](crate::operation::get_wireless_device::GetWirelessDeviceOutput::lo_ra_wan): <p>Information about the wireless device.</p>
    ///   - [`sidewalk(Option<SidewalkDevice>)`](crate::operation::get_wireless_device::GetWirelessDeviceOutput::sidewalk): <p>Sidewalk device object.</p>
    ///   - [`positioning(Option<PositioningConfigStatus>)`](crate::operation::get_wireless_device::GetWirelessDeviceOutput::positioning): <p>FPort values for the GNSS, stream, and ClockSync functions of the positioning information.</p>
    /// - On failure, responds with [`SdkError<GetWirelessDeviceError>`](crate::operation::get_wireless_device::GetWirelessDeviceError)
    pub fn get_wireless_device(&self) -> crate::operation::get_wireless_device::builders::GetWirelessDeviceFluentBuilder {
        crate::operation::get_wireless_device::builders::GetWirelessDeviceFluentBuilder::new(self.handle.clone())
    }
}