pub struct ListActiveViolationsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub security_profile_name: Option<String>,
pub thing_name: Option<String>,
}Fields§
§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>The name of the Device Defender security profile for which violations are listed.
thing_name: Option<String>The name of the thing whose active violations are listed.
Trait Implementations§
Source§impl Clone for ListActiveViolationsRequest
impl Clone for ListActiveViolationsRequest
Source§fn clone(&self) -> ListActiveViolationsRequest
fn clone(&self) -> ListActiveViolationsRequest
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 ListActiveViolationsRequest
impl Debug for ListActiveViolationsRequest
Source§impl Default for ListActiveViolationsRequest
impl Default for ListActiveViolationsRequest
Source§fn default() -> ListActiveViolationsRequest
fn default() -> ListActiveViolationsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListActiveViolationsRequest
Auto Trait Implementations§
impl Freeze for ListActiveViolationsRequest
impl RefUnwindSafe for ListActiveViolationsRequest
impl Send for ListActiveViolationsRequest
impl Sync for ListActiveViolationsRequest
impl Unpin for ListActiveViolationsRequest
impl UnwindSafe for ListActiveViolationsRequest
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