Struct aws_sdk_sagemaker::input::update_devices_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateDevicesInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn device_fleet_name(self, input: impl Into<String>) -> Self
pub fn device_fleet_name(self, input: impl Into<String>) -> Self
The name of the fleet the devices belong to.
sourcepub fn set_device_fleet_name(self, input: Option<String>) -> Self
pub fn set_device_fleet_name(self, input: Option<String>) -> Self
The name of the fleet the devices belong to.
sourcepub fn devices(self, input: Device) -> Self
pub fn devices(self, input: Device) -> Self
Appends an item to devices
.
To override the contents of this collection use set_devices
.
List of devices to register with Edge Manager agent.
sourcepub fn set_devices(self, input: Option<Vec<Device>>) -> Self
pub fn set_devices(self, input: Option<Vec<Device>>) -> Self
List of devices to register with Edge Manager agent.
sourcepub fn build(self) -> Result<UpdateDevicesInput, BuildError>
pub fn build(self) -> Result<UpdateDevicesInput, BuildError>
Consumes the builder and constructs a UpdateDevicesInput
.