Struct rusoto_ssm::RegisterTaskWithMaintenanceWindowRequest [] [src]

pub struct RegisterTaskWithMaintenanceWindowRequest {
    pub client_token: Option<String>,
    pub description: Option<String>,
    pub logging_info: Option<LoggingInfo>,
    pub max_concurrency: String,
    pub max_errors: String,
    pub name: Option<String>,
    pub priority: Option<i64>,
    pub service_role_arn: String,
    pub targets: Vec<Target>,
    pub task_arn: String,
    pub task_invocation_parameters: Option<MaintenanceWindowTaskInvocationParameters>,
    pub task_parameters: Option<HashMap<String, MaintenanceWindowTaskParameterValueExpression>>,
    pub task_type: String,
    pub window_id: String,
}

Fields

User-provided idempotency token.

An optional description for the task.

A structure containing information about an Amazon S3 bucket to write instance-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.

An optional name for the task.

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 the task should use during execution. Populate only the fields that match the task type. All other fields should be empty.

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

The type of task being registered.

The id of the Maintenance Window the task should be added to.

Trait Implementations

impl Default for RegisterTaskWithMaintenanceWindowRequest
[src]

[src]

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

impl Debug for RegisterTaskWithMaintenanceWindowRequest
[src]

[src]

Formats the value using the given formatter.

impl Clone for RegisterTaskWithMaintenanceWindowRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more