Struct rusoto_ssm::MaintenanceWindowTask [] [src]

pub struct MaintenanceWindowTask {
    pub logging_info: Option<LoggingInfo>,
    pub max_concurrency: Option<String>,
    pub max_errors: Option<String>,
    pub priority: Option<i64>,
    pub service_role_arn: Option<String>,
    pub targets: Option<Vec<Target>>,
    pub task_arn: Option<String>,
    pub task_parameters: Option<HashMap<String, MaintenanceWindowTaskParameterValueExpression>>,
    pub type_: Option<String>,
    pub window_id: Option<String>,
    pub window_task_id: Option<String>,
}

Information about a task defined for a Maintenance Window.

Fields

Information about an Amazon S3 bucket to write task-level logs to.

The maximum number of targets this task can be run for in parallel.

The maximum number of errors allowed before this task stops being scheduled.

The priority of the task in the Maintenance Window, the lower the number the higher the priority. Tasks in a Maintenance Window are scheduled in priority order with tasks that have the same priority scheduled in parallel.

The role that should be assumed when executing the task

The targets (either instances or tags). Instances are specified using Key=instanceids,Values=<instanceid1>,<instanceid2>. Tags are specified using Key=<tag name>,Values=<tag value>.

The ARN of the task to execute.

The parameters that should be passed to the task when it is executed.

The type of task.

The Maintenance Window ID where the task is registered.

The task ID.

Trait Implementations

impl Default for MaintenanceWindowTask
[src]

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

impl Debug for MaintenanceWindowTask
[src]

Formats the value using the given formatter.

impl Clone for MaintenanceWindowTask
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more