pub struct AuditMitigationActionExecutionMetadata {
pub action_id: Option<String>,
pub action_name: Option<String>,
pub end_time: Option<f64>,
pub error_code: Option<String>,
pub finding_id: Option<String>,
pub message: Option<String>,
pub start_time: Option<f64>,
pub status: Option<String>,
pub task_id: Option<String>,
}Expand description
Returned by ListAuditMitigationActionsTask, this object contains information that describes a mitigation action that has been started.
Fields§
§action_id: Option<String>The unique identifier for the mitigation action being applied by the task.
action_name: Option<String>The friendly name of the mitigation action being applied by the task.
end_time: Option<f64>The date and time when the task was completed or canceled. Blank if the task is still running.
error_code: Option<String>If an error occurred, the code that indicates which type of error occurred.
finding_id: Option<String>The unique identifier for the findings to which the task and associated mitigation action are applied.
message: Option<String>If an error occurred, a message that describes the error.
start_time: Option<f64>The date and time when the task was started.
status: Option<String>The current status of the task being executed.
task_id: Option<String>The unique identifier for the task that applies the mitigation action.
Trait Implementations§
Source§impl Clone for AuditMitigationActionExecutionMetadata
impl Clone for AuditMitigationActionExecutionMetadata
Source§fn clone(&self) -> AuditMitigationActionExecutionMetadata
fn clone(&self) -> AuditMitigationActionExecutionMetadata
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for AuditMitigationActionExecutionMetadata
impl Default for AuditMitigationActionExecutionMetadata
Source§fn default() -> AuditMitigationActionExecutionMetadata
fn default() -> AuditMitigationActionExecutionMetadata
Source§impl<'de> Deserialize<'de> for AuditMitigationActionExecutionMetadata
impl<'de> Deserialize<'de> for AuditMitigationActionExecutionMetadata
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>,
Source§impl PartialEq for AuditMitigationActionExecutionMetadata
impl PartialEq for AuditMitigationActionExecutionMetadata
Source§fn eq(&self, other: &AuditMitigationActionExecutionMetadata) -> bool
fn eq(&self, other: &AuditMitigationActionExecutionMetadata) -> bool
self and other values to be equal, and is used by ==.