1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`AssociateWirelessDeviceWithThing`](crate::operation::associate_wireless_device_with_thing::builders::AssociateWirelessDeviceWithThingFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::associate_wireless_device_with_thing::builders::AssociateWirelessDeviceWithThingFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::associate_wireless_device_with_thing::builders::AssociateWirelessDeviceWithThingFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the resource to update.</p><br>
    ///   - [`thing_arn(impl Into<String>)`](crate::operation::associate_wireless_device_with_thing::builders::AssociateWirelessDeviceWithThingFluentBuilder::thing_arn) / [`set_thing_arn(Option<String>)`](crate::operation::associate_wireless_device_with_thing::builders::AssociateWirelessDeviceWithThingFluentBuilder::set_thing_arn):<br>required: **true**<br><p>The ARN of the thing to associate with the wireless device.</p><br>
    /// - On success, responds with [`AssociateWirelessDeviceWithThingOutput`](crate::operation::associate_wireless_device_with_thing::AssociateWirelessDeviceWithThingOutput)
    /// - On failure, responds with [`SdkError<AssociateWirelessDeviceWithThingError>`](crate::operation::associate_wireless_device_with_thing::AssociateWirelessDeviceWithThingError)
    pub fn associate_wireless_device_with_thing(
        &self,
    ) -> crate::operation::associate_wireless_device_with_thing::builders::AssociateWirelessDeviceWithThingFluentBuilder {
        crate::operation::associate_wireless_device_with_thing::builders::AssociateWirelessDeviceWithThingFluentBuilder::new(self.handle.clone())
    }
}