[][src]Struct rusoto_iot::AuditMitigationActionExecutionMetadata

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>,
}

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

impl Clone for AuditMitigationActionExecutionMetadata[src]

impl Default for AuditMitigationActionExecutionMetadata[src]

impl PartialEq<AuditMitigationActionExecutionMetadata> for AuditMitigationActionExecutionMetadata[src]

impl Debug for AuditMitigationActionExecutionMetadata[src]

impl<'de> Deserialize<'de> for AuditMitigationActionExecutionMetadata[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self