aws_sdk_sagemaker/client/
update_devices.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`UpdateDevices`](crate::operation::update_devices::builders::UpdateDevicesFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    /// - On success, responds with [`UpdateDevicesOutput`](crate::operation::update_devices::UpdateDevicesOutput)
9    /// - On failure, responds with [`SdkError<UpdateDevicesError>`](crate::operation::update_devices::UpdateDevicesError)
10    pub fn update_devices(&self) -> crate::operation::update_devices::builders::UpdateDevicesFluentBuilder {
11        crate::operation::update_devices::builders::UpdateDevicesFluentBuilder::new(self.handle.clone())
12    }
13}