Struct aws_sdk_sagemaker::types::builders::EdgeModelStatBuilder
source · #[non_exhaustive]pub struct EdgeModelStatBuilder { /* private fields */ }
Expand description
A builder for EdgeModelStat
.
Implementations§
source§impl EdgeModelStatBuilder
impl EdgeModelStatBuilder
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 get_model_name(&self) -> &Option<String>
pub fn get_model_name(&self) -> &Option<String>
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 get_model_version(&self) -> &Option<String>
pub fn get_model_version(&self) -> &Option<String>
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 get_offline_device_count(&self) -> &Option<i64>
pub fn get_offline_device_count(&self) -> &Option<i64>
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 get_connected_device_count(&self) -> &Option<i64>
pub fn get_connected_device_count(&self) -> &Option<i64>
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 get_active_device_count(&self) -> &Option<i64>
pub fn get_active_device_count(&self) -> &Option<i64>
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 get_sampling_device_count(&self) -> &Option<i64>
pub fn get_sampling_device_count(&self) -> &Option<i64>
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
.
Trait Implementations§
source§impl Clone for EdgeModelStatBuilder
impl Clone for EdgeModelStatBuilder
source§fn clone(&self) -> EdgeModelStatBuilder
fn clone(&self) -> EdgeModelStatBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EdgeModelStatBuilder
impl Debug for EdgeModelStatBuilder
source§impl Default for EdgeModelStatBuilder
impl Default for EdgeModelStatBuilder
source§fn default() -> EdgeModelStatBuilder
fn default() -> EdgeModelStatBuilder
source§impl PartialEq<EdgeModelStatBuilder> for EdgeModelStatBuilder
impl PartialEq<EdgeModelStatBuilder> for EdgeModelStatBuilder
source§fn eq(&self, other: &EdgeModelStatBuilder) -> bool
fn eq(&self, other: &EdgeModelStatBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.