[][src]Struct rusoto_ssm::ComplianceExecutionSummary

pub struct ComplianceExecutionSummary {
    pub execution_id: Option<String>,
    pub execution_time: f64,
    pub execution_type: Option<String>,
}

A summary of the call execution that includes an execution ID, the type of execution (for example, Command), and the date/time of the execution using a datetime object that is saved in the following format: yyyy-MM-dd'T'HH:mm:ss'Z'.

Fields

execution_id: Option<String>

An ID created by the system when PutComplianceItems was called. For example, CommandID is a valid execution ID. You can use this ID in subsequent calls.

execution_time: f64

The time the execution ran as a datetime object that is saved in the following format: yyyy-MM-dd'T'HH:mm:ss'Z'.

execution_type: Option<String>

The type of execution. For example, Command is a valid execution type.

Trait Implementations

impl Clone for ComplianceExecutionSummary[src]

impl Debug for ComplianceExecutionSummary[src]

impl Default for ComplianceExecutionSummary[src]

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

impl PartialEq<ComplianceExecutionSummary> for ComplianceExecutionSummary[src]

impl Serialize for ComplianceExecutionSummary[src]

impl StructuralPartialEq for ComplianceExecutionSummary[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.