Struct rusoto_ssm::GetMaintenanceWindowExecutionResult[][src]

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

The time the Maintenance Window finished executing.

The time the Maintenance Window started executing.

The status of the Maintenance Window execution.

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

The ID of the task executions from the Maintenance Window execution.

The ID of the Maintenance Window execution.

Trait Implementations

impl Default for GetMaintenanceWindowExecutionResult
[src]

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

impl Debug for GetMaintenanceWindowExecutionResult
[src]

Formats the value using the given formatter. Read more

impl Clone for GetMaintenanceWindowExecutionResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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