[][src]Struct rusoto_iot::DescribeAuditMitigationActionsTaskResponse

pub struct DescribeAuditMitigationActionsTaskResponse {
    pub actions_definition: Option<Vec<MitigationAction>>,
    pub audit_check_to_actions_mapping: Option<HashMap<String, Vec<String>>>,
    pub end_time: Option<f64>,
    pub start_time: Option<f64>,
    pub target: Option<AuditMitigationActionsTaskTarget>,
    pub task_statistics: Option<HashMap<String, TaskStatisticsForAuditCheck>>,
    pub task_status: Option<String>,
}

Fields

actions_definition: Option<Vec<MitigationAction>>

Specifies the mitigation actions and their parameters that are applied as part of this task.

audit_check_to_actions_mapping: Option<HashMap<String, Vec<String>>>

Specifies the mitigation actions that should be applied to specific audit checks.

end_time: Option<f64>

The date and time when the task was completed or canceled.

start_time: Option<f64>

The date and time when the task was started.

target: Option<AuditMitigationActionsTaskTarget>

Identifies the findings to which the mitigation actions are applied. This can be by audit checks, by audit task, or a set of findings.

task_statistics: Option<HashMap<String, TaskStatisticsForAuditCheck>>

Aggregate counts of the results when the mitigation tasks were applied to the findings for this audit mitigation actions task.

task_status: Option<String>

The current status of the task.

Trait Implementations

impl Clone for DescribeAuditMitigationActionsTaskResponse[src]

impl Default for DescribeAuditMitigationActionsTaskResponse[src]

impl PartialEq<DescribeAuditMitigationActionsTaskResponse> for DescribeAuditMitigationActionsTaskResponse[src]

impl Debug for DescribeAuditMitigationActionsTaskResponse[src]

impl StructuralPartialEq for DescribeAuditMitigationActionsTaskResponse[src]

impl<'de> Deserialize<'de> for DescribeAuditMitigationActionsTaskResponse[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