Struct aws_sdk_sagemaker::model::edge_model_stat::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for EdgeModelStat
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn model_name(self, input: impl Into<String>) -> Self
pub fn model_name(self, input: impl Into<String>) -> Self
The name of the model.
sourcepub fn set_model_name(self, input: Option<String>) -> Self
pub fn set_model_name(self, input: Option<String>) -> Self
The name of the model.
sourcepub fn model_version(self, input: impl Into<String>) -> Self
pub fn model_version(self, input: impl Into<String>) -> Self
The model version.
sourcepub fn set_model_version(self, input: Option<String>) -> Self
pub fn set_model_version(self, input: Option<String>) -> Self
The model version.
sourcepub fn offline_device_count(self, input: i64) -> Self
pub fn offline_device_count(self, input: i64) -> Self
The number of devices that have this model version and do not have a heart beat.
sourcepub fn set_offline_device_count(self, input: Option<i64>) -> Self
pub fn set_offline_device_count(self, input: Option<i64>) -> Self
The number of devices that have this model version and do not have a heart beat.
sourcepub fn connected_device_count(self, input: i64) -> Self
pub fn connected_device_count(self, input: i64) -> Self
The number of devices that have this model version and have a heart beat.
sourcepub fn set_connected_device_count(self, input: Option<i64>) -> Self
pub fn set_connected_device_count(self, input: Option<i64>) -> Self
The number of devices that have this model version and have a heart beat.
sourcepub fn active_device_count(self, input: i64) -> Self
pub fn active_device_count(self, input: i64) -> Self
The number of devices that have this model version, a heart beat, and are currently running.
sourcepub fn set_active_device_count(self, input: Option<i64>) -> Self
pub fn set_active_device_count(self, input: Option<i64>) -> Self
The number of devices that have this model version, a heart beat, and are currently running.
sourcepub fn sampling_device_count(self, input: i64) -> Self
pub fn sampling_device_count(self, input: i64) -> Self
The number of devices with this model version and are producing sample data.
sourcepub fn set_sampling_device_count(self, input: Option<i64>) -> Self
pub fn set_sampling_device_count(self, input: Option<i64>) -> Self
The number of devices with this model version and are producing sample data.
sourcepub fn build(self) -> EdgeModelStat
pub fn build(self) -> EdgeModelStat
Consumes the builder and constructs a EdgeModelStat
.