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 [`UpdateDevices`](crate::operation::update_devices::builders::UpdateDevicesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`device_fleet_name(impl Into<String>)`](crate::operation::update_devices::builders::UpdateDevicesFluentBuilder::device_fleet_name) / [`set_device_fleet_name(Option<String>)`](crate::operation::update_devices::builders::UpdateDevicesFluentBuilder::set_device_fleet_name):<br>required: **true**<br><p>The name of the fleet the devices belong to.</p><br>
    ///   - [`devices(Device)`](crate::operation::update_devices::builders::UpdateDevicesFluentBuilder::devices) / [`set_devices(Option<Vec::<Device>>)`](crate::operation::update_devices::builders::UpdateDevicesFluentBuilder::set_devices):<br>required: **true**<br><p>List of devices to register with Edge Manager agent.</p><br>
    /// - On success, responds with [`UpdateDevicesOutput`](crate::operation::update_devices::UpdateDevicesOutput)
    /// - On failure, responds with [`SdkError<UpdateDevicesError>`](crate::operation::update_devices::UpdateDevicesError)
    pub fn update_devices(&self) -> crate::operation::update_devices::builders::UpdateDevicesFluentBuilder {
        crate::operation::update_devices::builders::UpdateDevicesFluentBuilder::new(self.handle.clone())
    }
}