pub struct ListAuditMitigationActionsTasksRequest {
pub audit_task_id: Option<String>,
pub end_time: f64,
pub finding_id: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub start_time: f64,
pub task_status: Option<String>,
}Fields§
§audit_task_id: Option<String>Specify this filter to limit results to tasks that were applied to results for a specific audit.
end_time: f64Specify this filter to limit results to tasks that were completed or canceled on or before a specific date and time.
finding_id: Option<String>Specify this filter to limit results to tasks that were applied to a specific audit finding.
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.
start_time: f64Specify this filter to limit results to tasks that began on or after a specific date and time.
task_status: Option<String>Specify this filter to limit results to tasks that are in a specific state.
Trait Implementations§
Source§impl Clone for ListAuditMitigationActionsTasksRequest
impl Clone for ListAuditMitigationActionsTasksRequest
Source§fn clone(&self) -> ListAuditMitigationActionsTasksRequest
fn clone(&self) -> ListAuditMitigationActionsTasksRequest
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 Default for ListAuditMitigationActionsTasksRequest
impl Default for ListAuditMitigationActionsTasksRequest
Source§fn default() -> ListAuditMitigationActionsTasksRequest
fn default() -> ListAuditMitigationActionsTasksRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListAuditMitigationActionsTasksRequest
impl PartialEq for ListAuditMitigationActionsTasksRequest
Source§fn eq(&self, other: &ListAuditMitigationActionsTasksRequest) -> bool
fn eq(&self, other: &ListAuditMitigationActionsTasksRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListAuditMitigationActionsTasksRequest
Auto Trait Implementations§
impl Freeze for ListAuditMitigationActionsTasksRequest
impl RefUnwindSafe for ListAuditMitigationActionsTasksRequest
impl Send for ListAuditMitigationActionsTasksRequest
impl Sync for ListAuditMitigationActionsTasksRequest
impl Unpin for ListAuditMitigationActionsTasksRequest
impl UnwindSafe for ListAuditMitigationActionsTasksRequest
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