pub struct ListAuditFindingsRequest {
pub check_name: Option<String>,
pub end_time: Option<f64>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub resource_identifier: Option<ResourceIdentifier>,
pub start_time: Option<f64>,
pub task_id: Option<String>,
}Fields§
§check_name: Option<String>A filter to limit results to the findings for the specified audit check.
end_time: Option<f64>A filter to limit results to those found before the specified time. You must specify either the startTime and endTime or the taskId, but not both.
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.
resource_identifier: Option<ResourceIdentifier>Information identifying the noncompliant resource.
start_time: Option<f64>A filter to limit results to those found after the specified time. You must specify either the startTime and endTime or the taskId, but not both.
task_id: Option<String>A filter to limit results to the audit with the specified ID. You must specify either the taskId or the startTime and endTime, but not both.
Trait Implementations§
Source§impl Clone for ListAuditFindingsRequest
impl Clone for ListAuditFindingsRequest
Source§fn clone(&self) -> ListAuditFindingsRequest
fn clone(&self) -> ListAuditFindingsRequest
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 ListAuditFindingsRequest
impl Debug for ListAuditFindingsRequest
Source§impl Default for ListAuditFindingsRequest
impl Default for ListAuditFindingsRequest
Source§fn default() -> ListAuditFindingsRequest
fn default() -> ListAuditFindingsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListAuditFindingsRequest
impl PartialEq for ListAuditFindingsRequest
Source§impl Serialize for ListAuditFindingsRequest
impl Serialize for ListAuditFindingsRequest
impl StructuralPartialEq for ListAuditFindingsRequest
Auto Trait Implementations§
impl Freeze for ListAuditFindingsRequest
impl RefUnwindSafe for ListAuditFindingsRequest
impl Send for ListAuditFindingsRequest
impl Sync for ListAuditFindingsRequest
impl Unpin for ListAuditFindingsRequest
impl UnwindSafe for ListAuditFindingsRequest
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