Struct rusoto_ssm::MaintenanceWindowExecutionTaskIdentity[][src]

pub struct MaintenanceWindowExecutionTaskIdentity {
    pub end_time: Option<f64>,
    pub start_time: Option<f64>,
    pub status: Option<String>,
    pub status_details: Option<String>,
    pub task_arn: Option<String>,
    pub task_execution_id: Option<String>,
    pub task_type: Option<String>,
    pub window_execution_id: Option<String>,
}

Information about a task execution performed as part of a Maintenance Window execution.

Fields

The time the task execution finished.

The time the task execution started.

The status of the task execution.

The details explaining the status of the task execution. Only available for certain status values.

The ARN of the executed task.

The ID of the specific task execution in the Maintenance Window execution.

The type of executed task.

The ID of the Maintenance Window execution that ran the task.

Trait Implementations

impl Default for MaintenanceWindowExecutionTaskIdentity
[src]

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

impl Debug for MaintenanceWindowExecutionTaskIdentity
[src]

Formats the value using the given formatter. Read more

impl Clone for MaintenanceWindowExecutionTaskIdentity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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