Struct aws_sdk_iot::types::BehaviorModelTrainingSummary
source · #[non_exhaustive]pub struct BehaviorModelTrainingSummary {
pub security_profile_name: Option<String>,
pub behavior_name: Option<String>,
pub training_data_collection_start_date: Option<DateTime>,
pub model_status: Option<ModelStatus>,
pub datapoints_collection_percentage: Option<f64>,
pub last_model_refresh_date: Option<DateTime>,
}
Expand description
The summary of an ML Detect behavior model.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.security_profile_name: Option<String>
The name of the security profile.
behavior_name: Option<String>
The name of the behavior.
training_data_collection_start_date: Option<DateTime>
The date a training model started collecting data.
model_status: Option<ModelStatus>
The status of the behavior model.
datapoints_collection_percentage: Option<f64>
The percentage of datapoints collected.
last_model_refresh_date: Option<DateTime>
The date the model was last refreshed.
Implementations§
source§impl BehaviorModelTrainingSummary
impl BehaviorModelTrainingSummary
sourcepub fn security_profile_name(&self) -> Option<&str>
pub fn security_profile_name(&self) -> Option<&str>
The name of the security profile.
sourcepub fn behavior_name(&self) -> Option<&str>
pub fn behavior_name(&self) -> Option<&str>
The name of the behavior.
sourcepub fn training_data_collection_start_date(&self) -> Option<&DateTime>
pub fn training_data_collection_start_date(&self) -> Option<&DateTime>
The date a training model started collecting data.
sourcepub fn model_status(&self) -> Option<&ModelStatus>
pub fn model_status(&self) -> Option<&ModelStatus>
The status of the behavior model.
sourcepub fn datapoints_collection_percentage(&self) -> Option<f64>
pub fn datapoints_collection_percentage(&self) -> Option<f64>
The percentage of datapoints collected.
sourcepub fn last_model_refresh_date(&self) -> Option<&DateTime>
pub fn last_model_refresh_date(&self) -> Option<&DateTime>
The date the model was last refreshed.
source§impl BehaviorModelTrainingSummary
impl BehaviorModelTrainingSummary
sourcepub fn builder() -> BehaviorModelTrainingSummaryBuilder
pub fn builder() -> BehaviorModelTrainingSummaryBuilder
Creates a new builder-style object to manufacture BehaviorModelTrainingSummary
.
Trait Implementations§
source§impl Clone for BehaviorModelTrainingSummary
impl Clone for BehaviorModelTrainingSummary
source§fn clone(&self) -> BehaviorModelTrainingSummary
fn clone(&self) -> BehaviorModelTrainingSummary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BehaviorModelTrainingSummary
impl Debug for BehaviorModelTrainingSummary
source§impl PartialEq for BehaviorModelTrainingSummary
impl PartialEq for BehaviorModelTrainingSummary
source§fn eq(&self, other: &BehaviorModelTrainingSummary) -> bool
fn eq(&self, other: &BehaviorModelTrainingSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BehaviorModelTrainingSummary
Auto Trait Implementations§
impl RefUnwindSafe for BehaviorModelTrainingSummary
impl Send for BehaviorModelTrainingSummary
impl Sync for BehaviorModelTrainingSummary
impl Unpin for BehaviorModelTrainingSummary
impl UnwindSafe for BehaviorModelTrainingSummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.