pub struct ListMitigationActionsRequest {
pub action_type: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§action_type: Option<String>Specify a value to limit the result to mitigation actions with a specific action type.
max_results: Option<i64>The maximum number of results to return at one time. The default is 25.
next_token: Option<String>The token for the next set of results.
Trait Implementations§
Source§impl Clone for ListMitigationActionsRequest
impl Clone for ListMitigationActionsRequest
Source§fn clone(&self) -> ListMitigationActionsRequest
fn clone(&self) -> ListMitigationActionsRequest
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 ListMitigationActionsRequest
impl Debug for ListMitigationActionsRequest
Source§impl Default for ListMitigationActionsRequest
impl Default for ListMitigationActionsRequest
Source§fn default() -> ListMitigationActionsRequest
fn default() -> ListMitigationActionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListMitigationActionsRequest
impl PartialEq for ListMitigationActionsRequest
Source§fn eq(&self, other: &ListMitigationActionsRequest) -> bool
fn eq(&self, other: &ListMitigationActionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListMitigationActionsRequest
Auto Trait Implementations§
impl Freeze for ListMitigationActionsRequest
impl RefUnwindSafe for ListMitigationActionsRequest
impl Send for ListMitigationActionsRequest
impl Sync for ListMitigationActionsRequest
impl Unpin for ListMitigationActionsRequest
impl UnwindSafe for ListMitigationActionsRequest
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