Struct aws_sdk_ssm::output::GetMaintenanceWindowExecutionTaskOutput[][src]

#[non_exhaustive]
pub struct GetMaintenanceWindowExecutionTaskOutput {
Show 13 fields pub window_execution_id: Option<String>, pub task_execution_id: Option<String>, pub task_arn: Option<String>, pub service_role: Option<String>, pub type: Option<MaintenanceWindowTaskType>, pub task_parameters: Option<Vec<HashMap<String, MaintenanceWindowTaskParameterValueExpression>>>, pub priority: i32, pub max_concurrency: Option<String>, pub max_errors: Option<String>, pub status: Option<MaintenanceWindowExecutionStatus>, pub status_details: Option<String>, pub start_time: Option<DateTime>, pub end_time: Option<DateTime>,
}

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
window_execution_id: Option<String>

The ID of the maintenance window execution that includes the task.

task_execution_id: Option<String>

The ID of the specific task execution in the maintenance window task that was retrieved.

task_arn: Option<String>

The Amazon Resource Name (ARN) of the task that ran.

service_role: Option<String>

The role that was assumed when running the task.

type: Option<MaintenanceWindowTaskType>

The type of task that was run.

task_parameters: Option<Vec<HashMap<String, MaintenanceWindowTaskParameterValueExpression>>>

The parameters passed to the task when it was run.

TaskParameters has been deprecated. To specify parameters to pass to a task when it runs, instead use the Parameters option in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters.

The map has the following format:

  • Key: string, between 1 and 255 characters

  • Value: an array of strings, each between 1 and 255 characters

priority: i32

The priority of the task.

max_concurrency: Option<String>

The defined maximum number of task executions that could be run in parallel.

max_errors: Option<String>

The defined maximum number of task execution errors allowed before scheduling of the task execution would have been stopped.

status: Option<MaintenanceWindowExecutionStatus>

The status of the task.

status_details: Option<String>

The details explaining the status. Not available for all status values.

start_time: Option<DateTime>

The time the task execution started.

end_time: Option<DateTime>

The time the task execution completed.

Implementations

The ID of the maintenance window execution that includes the task.

The ID of the specific task execution in the maintenance window task that was retrieved.

The Amazon Resource Name (ARN) of the task that ran.

The role that was assumed when running the task.

The type of task that was run.

The parameters passed to the task when it was run.

TaskParameters has been deprecated. To specify parameters to pass to a task when it runs, instead use the Parameters option in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters.

The map has the following format:

  • Key: string, between 1 and 255 characters

  • Value: an array of strings, each between 1 and 255 characters

The priority of the task.

The defined maximum number of task executions that could be run in parallel.

The defined maximum number of task execution errors allowed before scheduling of the task execution would have been stopped.

The status of the task.

The details explaining the status. Not available for all status values.

The time the task execution started.

The time the task execution completed.

Creates a new builder-style object to manufacture GetMaintenanceWindowExecutionTaskOutput

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more