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 [`AssociateWirelessGatewayWithThing`](crate::operation::associate_wireless_gateway_with_thing::builders::AssociateWirelessGatewayWithThingFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::associate_wireless_gateway_with_thing::builders::AssociateWirelessGatewayWithThingFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::associate_wireless_gateway_with_thing::builders::AssociateWirelessGatewayWithThingFluentBuilder::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_gateway_with_thing::builders::AssociateWirelessGatewayWithThingFluentBuilder::thing_arn) / [`set_thing_arn(Option<String>)`](crate::operation::associate_wireless_gateway_with_thing::builders::AssociateWirelessGatewayWithThingFluentBuilder::set_thing_arn):<br>required: **true**<br><p>The ARN of the thing to associate with the wireless gateway.</p><br>
    /// - On success, responds with [`AssociateWirelessGatewayWithThingOutput`](crate::operation::associate_wireless_gateway_with_thing::AssociateWirelessGatewayWithThingOutput)
    /// - On failure, responds with [`SdkError<AssociateWirelessGatewayWithThingError>`](crate::operation::associate_wireless_gateway_with_thing::AssociateWirelessGatewayWithThingError)
    pub fn associate_wireless_gateway_with_thing(
        &self,
    ) -> crate::operation::associate_wireless_gateway_with_thing::builders::AssociateWirelessGatewayWithThingFluentBuilder {
        crate::operation::associate_wireless_gateway_with_thing::builders::AssociateWirelessGatewayWithThingFluentBuilder::new(self.handle.clone())
    }
}