pub struct DescribeAuditTaskResponse {
pub audit_details: Option<HashMap<String, AuditCheckDetails>>,
pub scheduled_audit_name: Option<String>,
pub task_start_time: Option<f64>,
pub task_statistics: Option<TaskStatistics>,
pub task_status: Option<String>,
pub task_type: Option<String>,
}Fields§
§audit_details: Option<HashMap<String, AuditCheckDetails>>Detailed information about each check performed during this audit.
scheduled_audit_name: Option<String>The name of the scheduled audit (only if the audit was a scheduled audit).
task_start_time: Option<f64>The time the audit started.
task_statistics: Option<TaskStatistics>Statistical information about the audit.
task_status: Option<String>The status of the audit: one of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".
task_type: Option<String>The type of audit: "ON_DEMAND_AUDIT_TASK" or "SCHEDULED_AUDIT_TASK".
Trait Implementations§
Source§impl Clone for DescribeAuditTaskResponse
impl Clone for DescribeAuditTaskResponse
Source§fn clone(&self) -> DescribeAuditTaskResponse
fn clone(&self) -> DescribeAuditTaskResponse
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 DescribeAuditTaskResponse
impl Debug for DescribeAuditTaskResponse
Source§impl Default for DescribeAuditTaskResponse
impl Default for DescribeAuditTaskResponse
Source§fn default() -> DescribeAuditTaskResponse
fn default() -> DescribeAuditTaskResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeAuditTaskResponse
impl<'de> Deserialize<'de> for DescribeAuditTaskResponse
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 DescribeAuditTaskResponse
Auto Trait Implementations§
impl Freeze for DescribeAuditTaskResponse
impl RefUnwindSafe for DescribeAuditTaskResponse
impl Send for DescribeAuditTaskResponse
impl Sync for DescribeAuditTaskResponse
impl Unpin for DescribeAuditTaskResponse
impl UnwindSafe for DescribeAuditTaskResponse
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