pub struct ListViolationEventsResponse {
pub next_token: Option<String>,
pub violation_events: Option<Vec<ViolationEvent>>,
}Fields§
§next_token: Option<String>A token that can be used to retrieve the next set of results, or null if there are no additional results.
violation_events: Option<Vec<ViolationEvent>>The security profile violation alerts issued for this account during the given time period, potentially filtered by security profile, behavior violated, or thing (device) violating.
Trait Implementations§
Source§impl Clone for ListViolationEventsResponse
impl Clone for ListViolationEventsResponse
Source§fn clone(&self) -> ListViolationEventsResponse
fn clone(&self) -> ListViolationEventsResponse
Returns a duplicate 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 ListViolationEventsResponse
impl Debug for ListViolationEventsResponse
Source§impl Default for ListViolationEventsResponse
impl Default for ListViolationEventsResponse
Source§fn default() -> ListViolationEventsResponse
fn default() -> ListViolationEventsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListViolationEventsResponse
impl<'de> Deserialize<'de> for ListViolationEventsResponse
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
impl StructuralPartialEq for ListViolationEventsResponse
Auto Trait Implementations§
impl Freeze for ListViolationEventsResponse
impl RefUnwindSafe for ListViolationEventsResponse
impl Send for ListViolationEventsResponse
impl Sync for ListViolationEventsResponse
impl Unpin for ListViolationEventsResponse
impl UnwindSafe for ListViolationEventsResponse
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