[][src]Struct rusoto_config::RemediationExecutionStep

pub struct RemediationExecutionStep {
    pub error_message: Option<String>,
    pub name: Option<String>,
    pub start_time: Option<f64>,
    pub state: Option<String>,
    pub stop_time: Option<f64>,
}

Name of the step from the SSM document.

Fields

error_message: Option<String>

An error message if the step was interrupted during execution.

name: Option<String>

The details of the step.

start_time: Option<f64>

The time when the step started.

state: Option<String>

The valid status of the step.

stop_time: Option<f64>

The time when the step stopped.

Trait Implementations

impl Clone for RemediationExecutionStep[src]

impl Default for RemediationExecutionStep[src]

impl PartialEq<RemediationExecutionStep> for RemediationExecutionStep[src]

impl Debug for RemediationExecutionStep[src]

impl StructuralPartialEq for RemediationExecutionStep[src]

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