[][src]Struct rusoto_iot::ListAuditMitigationActionsTasksRequest

pub struct ListAuditMitigationActionsTasksRequest {
    pub audit_task_id: Option<String>,
    pub end_time: f64,
    pub finding_id: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub start_time: f64,
    pub task_status: Option<String>,
}

Fields

audit_task_id: Option<String>

Specify this filter to limit results to tasks that were applied to results for a specific audit.

end_time: f64

Specify this filter to limit results to tasks that were completed or canceled on or before a specific date and time.

finding_id: Option<String>

Specify this filter to limit results to tasks that were applied to a specific audit finding.

max_results: Option<i64>

The maximum number of results to return at one time. The default is 25.

next_token: Option<String>

The token for the next set of results.

start_time: f64

Specify this filter to limit results to tasks that began on or after a specific date and time.

task_status: Option<String>

Specify this filter to limit results to tasks that are in a specific state.

Trait Implementations

impl Clone for ListAuditMitigationActionsTasksRequest[src]

impl Default for ListAuditMitigationActionsTasksRequest[src]

impl PartialEq<ListAuditMitigationActionsTasksRequest> for ListAuditMitigationActionsTasksRequest[src]

impl Debug for ListAuditMitigationActionsTasksRequest[src]

impl StructuralPartialEq for ListAuditMitigationActionsTasksRequest[src]

impl Serialize for ListAuditMitigationActionsTasksRequest[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> Same<T> for T

type Output = T

Should always be Self