[][src]Struct rusoto_ssm::GetMaintenanceWindowExecutionResult

pub struct GetMaintenanceWindowExecutionResult {
    pub end_time: Option<f64>,
    pub start_time: Option<f64>,
    pub status: Option<String>,
    pub status_details: Option<String>,
    pub task_ids: Option<Vec<String>>,
    pub window_execution_id: Option<String>,
}

Fields

end_time: Option<f64>

The time the maintenance window finished running.

start_time: Option<f64>

The time the maintenance window started running.

status: Option<String>

The status of the maintenance window execution.

status_details: Option<String>

The details explaining the Status. Only available for certain status values.

task_ids: Option<Vec<String>>

The ID of the task executions from the maintenance window execution.

window_execution_id: Option<String>

The ID of the maintenance window execution.

Trait Implementations

impl Clone for GetMaintenanceWindowExecutionResult[src]

impl Debug for GetMaintenanceWindowExecutionResult[src]

impl Default for GetMaintenanceWindowExecutionResult[src]

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

impl PartialEq<GetMaintenanceWindowExecutionResult> for GetMaintenanceWindowExecutionResult[src]

impl StructuralPartialEq for GetMaintenanceWindowExecutionResult[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.