pub struct LogAnomaly {
pub anomaly_id: String,
pub anomaly_detector_arn: String,
pub log_group_arn_list: Vec<String>,
pub pattern_id: String,
pub pattern_string: String,
pub first_seen: i64,
pub last_seen: i64,
pub priority: String,
pub state: String,
pub suppressed: bool,
}Fields§
§anomaly_id: String§anomaly_detector_arn: String§log_group_arn_list: Vec<String>§pattern_id: String§pattern_string: String§first_seen: i64§last_seen: i64§priority: String§state: String§suppressed: boolTrait Implementations§
Source§impl Clone for LogAnomaly
impl Clone for LogAnomaly
Source§fn clone(&self) -> LogAnomaly
fn clone(&self) -> LogAnomaly
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for LogAnomaly
impl<'de> Deserialize<'de> for LogAnomaly
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LogAnomaly
impl RefUnwindSafe for LogAnomaly
impl Send for LogAnomaly
impl Sync for LogAnomaly
impl Unpin for LogAnomaly
impl UnsafeUnpin for LogAnomaly
impl UnwindSafe for LogAnomaly
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