Struct rusoto_ssm::MaintenanceWindowExecution[][src]

pub struct MaintenanceWindowExecution {
    pub end_time: Option<f64>,
    pub start_time: Option<f64>,
    pub status: Option<String>,
    pub status_details: Option<String>,
    pub window_execution_id: Option<String>,
    pub window_id: Option<String>,
}

Describes the information about an execution of a Maintenance Window.

Fields

The time the execution finished.

The time the execution started.

The status of the execution.

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

The ID of the Maintenance Window execution.

The ID of the Maintenance Window.

Trait Implementations

impl Default for MaintenanceWindowExecution
[src]

Returns the "default value" for a type. Read more

impl Debug for MaintenanceWindowExecution
[src]

Formats the value using the given formatter. Read more

impl Clone for MaintenanceWindowExecution
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MaintenanceWindowExecution
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations