Struct rusoto_ssm::MaintenanceWindowTask [] [src]

pub struct MaintenanceWindowTask {
    pub description: Option<String>,
    pub logging_info: Option<LoggingInfo>,
    pub max_concurrency: Option<String>,
    pub max_errors: Option<String>,
    pub name: 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

A description of the task.

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 task name.

The priority of the task in the Maintenance Window. The lower the number, the higher the priority. Tasks that have the same priority are 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 resource that the task uses during execution. For RUN_COMMAND and AUTOMATION task types, TaskArn is the SSM document name or ARN. For LAMBDA tasks, it's the function name or ARN. For STEP_FUNCTION tasks, it's the state machine ARN.

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

The type of task. The type can be one of the following: RUN_COMMAND, AUTOMATION, LAMBDA, or STEP_FUNCTION.

The Maintenance Window ID where the task is registered.

The task ID.

Trait Implementations

impl Default for MaintenanceWindowTask
[src]

[src]

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

impl Debug for MaintenanceWindowTask
[src]

[src]

Formats the value using the given formatter.

impl Clone for MaintenanceWindowTask
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more