Struct rusoto_ssm::MaintenanceWindowExecutionTaskInvocationIdentity [] [src]

pub struct MaintenanceWindowExecutionTaskInvocationIdentity {
    pub end_time: Option<f64>,
    pub execution_id: Option<String>,
    pub invocation_id: Option<String>,
    pub owner_information: Option<String>,
    pub parameters: Option<String>,
    pub start_time: Option<f64>,
    pub status: Option<String>,
    pub status_details: Option<String>,
    pub task_execution_id: Option<String>,
    pub task_type: Option<String>,
    pub window_execution_id: Option<String>,
    pub window_target_id: Option<String>,
}

Describes the information about a task invocation for a particular target as part of a task execution performed as part of a Maintenance Window execution.

Fields

The time the invocation finished.

The ID of the action performed in the service that actually handled the task invocation. If the task type is RUN_COMMAND, this value is the command ID.

The ID of the task invocation.

User-provided value that was specified when the target was registered with the Maintenance Window. This was also included in any CloudWatch events raised during the task invocation.

The parameters that were provided for the invocation when it was executed.

The time the invocation started.

The status of the task invocation.

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

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

The task type.

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

The ID of the target definition in this Maintenance Window the invocation was performed for.

Trait Implementations

impl Default for MaintenanceWindowExecutionTaskInvocationIdentity
[src]

[src]

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

impl Debug for MaintenanceWindowExecutionTaskInvocationIdentity
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for MaintenanceWindowExecutionTaskInvocationIdentity
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations