#[non_exhaustive]pub struct UpdateDeviceFleetInput {
pub device_fleet_name: Option<String>,
pub role_arn: Option<String>,
pub description: Option<String>,
pub output_config: Option<EdgeOutputConfig>,
pub enable_iot_role_alias: Option<bool>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.device_fleet_name: Option<String>
The name of the fleet.
role_arn: Option<String>
The Amazon Resource Name (ARN) of the device.
description: Option<String>
Description of the fleet.
output_config: Option<EdgeOutputConfig>
Output configuration for storing sample data collected by the fleet.
enable_iot_role_alias: Option<bool>
Whether to create an Amazon Web Services IoT Role Alias during device fleet creation. The name of the role alias generated will match this pattern: "SageMakerEdge-{DeviceFleetName}".
For example, if your device fleet is called "demo-fleet", the name of the role alias will be "SageMakerEdge-demo-fleet".
Implementations§
source§impl UpdateDeviceFleetInput
impl UpdateDeviceFleetInput
sourcepub fn device_fleet_name(&self) -> Option<&str>
pub fn device_fleet_name(&self) -> Option<&str>
The name of the fleet.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Description of the fleet.
sourcepub fn output_config(&self) -> Option<&EdgeOutputConfig>
pub fn output_config(&self) -> Option<&EdgeOutputConfig>
Output configuration for storing sample data collected by the fleet.
sourcepub fn enable_iot_role_alias(&self) -> Option<bool>
pub fn enable_iot_role_alias(&self) -> Option<bool>
Whether to create an Amazon Web Services IoT Role Alias during device fleet creation. The name of the role alias generated will match this pattern: "SageMakerEdge-{DeviceFleetName}".
For example, if your device fleet is called "demo-fleet", the name of the role alias will be "SageMakerEdge-demo-fleet".
source§impl UpdateDeviceFleetInput
impl UpdateDeviceFleetInput
sourcepub fn builder() -> UpdateDeviceFleetInputBuilder
pub fn builder() -> UpdateDeviceFleetInputBuilder
Creates a new builder-style object to manufacture UpdateDeviceFleetInput
.
Trait Implementations§
source§impl Clone for UpdateDeviceFleetInput
impl Clone for UpdateDeviceFleetInput
source§fn clone(&self) -> UpdateDeviceFleetInput
fn clone(&self) -> UpdateDeviceFleetInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateDeviceFleetInput
impl Debug for UpdateDeviceFleetInput
source§impl PartialEq for UpdateDeviceFleetInput
impl PartialEq for UpdateDeviceFleetInput
source§fn eq(&self, other: &UpdateDeviceFleetInput) -> bool
fn eq(&self, other: &UpdateDeviceFleetInput) -> bool
self
and other
values to be equal, and is used
by ==
.