pub struct TaskStatisticsForAuditCheck {
pub canceled_findings_count: Option<i64>,
pub failed_findings_count: Option<i64>,
pub skipped_findings_count: Option<i64>,
pub succeeded_findings_count: Option<i64>,
pub total_findings_count: Option<i64>,
}Expand description
Provides summary counts of how many tasks for findings are in a particular state. This information is included in the response from DescribeAuditMitigationActionsTask.
Fields§
§canceled_findings_count: Option<i64>The number of findings to which the mitigation action task was canceled when applied.
failed_findings_count: Option<i64>The number of findings for which at least one of the actions failed when applied.
skipped_findings_count: Option<i64>The number of findings skipped because of filter conditions provided in the parameters to the command.
succeeded_findings_count: Option<i64>The number of findings for which all mitigation actions succeeded when applied.
total_findings_count: Option<i64>The total number of findings to which a task is being applied.
Trait Implementations§
Source§impl Clone for TaskStatisticsForAuditCheck
impl Clone for TaskStatisticsForAuditCheck
Source§fn clone(&self) -> TaskStatisticsForAuditCheck
fn clone(&self) -> TaskStatisticsForAuditCheck
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 TaskStatisticsForAuditCheck
impl Debug for TaskStatisticsForAuditCheck
Source§impl Default for TaskStatisticsForAuditCheck
impl Default for TaskStatisticsForAuditCheck
Source§fn default() -> TaskStatisticsForAuditCheck
fn default() -> TaskStatisticsForAuditCheck
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskStatisticsForAuditCheck
impl<'de> Deserialize<'de> for TaskStatisticsForAuditCheck
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for TaskStatisticsForAuditCheck
Auto Trait Implementations§
impl Freeze for TaskStatisticsForAuditCheck
impl RefUnwindSafe for TaskStatisticsForAuditCheck
impl Send for TaskStatisticsForAuditCheck
impl Sync for TaskStatisticsForAuditCheck
impl Unpin for TaskStatisticsForAuditCheck
impl UnwindSafe for TaskStatisticsForAuditCheck
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