pub struct ListViolationEventsRequest {
pub end_time: f64,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub security_profile_name: Option<String>,
pub start_time: f64,
pub thing_name: Option<String>,
}Fields§
§end_time: f64The end time for the alerts to be listed.
max_results: Option<i64>The maximum number of results to return at one time.
next_token: Option<String>The token for the next set of results.
security_profile_name: Option<String>A filter to limit results to those alerts generated by the specified security profile.
start_time: f64The start time for the alerts to be listed.
thing_name: Option<String>A filter to limit results to those alerts caused by the specified thing.
Trait Implementations§
Source§impl Clone for ListViolationEventsRequest
impl Clone for ListViolationEventsRequest
Source§fn clone(&self) -> ListViolationEventsRequest
fn clone(&self) -> ListViolationEventsRequest
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 ListViolationEventsRequest
impl Debug for ListViolationEventsRequest
Source§impl Default for ListViolationEventsRequest
impl Default for ListViolationEventsRequest
Source§fn default() -> ListViolationEventsRequest
fn default() -> ListViolationEventsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListViolationEventsRequest
Auto Trait Implementations§
impl Freeze for ListViolationEventsRequest
impl RefUnwindSafe for ListViolationEventsRequest
impl Send for ListViolationEventsRequest
impl Sync for ListViolationEventsRequest
impl Unpin for ListViolationEventsRequest
impl UnwindSafe for ListViolationEventsRequest
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