pub struct ListAuditTasksRequest {
pub end_time: f64,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub start_time: f64,
pub task_status: Option<String>,
pub task_type: Option<String>,
}Fields§
§end_time: f64The end of the time period.
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: f64The beginning of the time period. Audit information is retained for a limited time (180 days). Requesting a start time prior to what is retained results in an "InvalidRequestException".
task_status: Option<String>A filter to limit the output to audits with the specified completion status: can be one of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".
task_type: Option<String>A filter to limit the output to the specified type of audit: can be one of "ON_DEMAND_AUDIT_TASK" or "SCHEDULED__AUDIT_TASK".
Trait Implementations§
Source§impl Clone for ListAuditTasksRequest
impl Clone for ListAuditTasksRequest
Source§fn clone(&self) -> ListAuditTasksRequest
fn clone(&self) -> ListAuditTasksRequest
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 ListAuditTasksRequest
impl Debug for ListAuditTasksRequest
Source§impl Default for ListAuditTasksRequest
impl Default for ListAuditTasksRequest
Source§fn default() -> ListAuditTasksRequest
fn default() -> ListAuditTasksRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListAuditTasksRequest
impl PartialEq for ListAuditTasksRequest
Source§impl Serialize for ListAuditTasksRequest
impl Serialize for ListAuditTasksRequest
impl StructuralPartialEq for ListAuditTasksRequest
Auto Trait Implementations§
impl Freeze for ListAuditTasksRequest
impl RefUnwindSafe for ListAuditTasksRequest
impl Send for ListAuditTasksRequest
impl Sync for ListAuditTasksRequest
impl Unpin for ListAuditTasksRequest
impl UnwindSafe for ListAuditTasksRequest
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