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.

LoggingInfo has been deprecated. To specify an S3 bucket to contain logs, instead use the OutputS3BucketName and OutputS3KeyPrefix options in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported Maintenance Window task types, see MaintenanceWindowTaskInvocationParameters.

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 Maintenance Window targets).

Specify instances using the following format:

Key=InstanceIds,Values=<instance-id-1>,<instance-id-2>

Specify Maintenance Window targets using the following format:

Key=<WindowTargetIds>,Values=<window-target-id-1>,<window-target-id-2>

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.

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 type of task being registered.

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

Trait Implementations

impl Default for RegisterTaskWithMaintenanceWindowRequest
[src]

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

impl Debug for RegisterTaskWithMaintenanceWindowRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for RegisterTaskWithMaintenanceWindowRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RegisterTaskWithMaintenanceWindowRequest
[src]

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

This method tests for !=.

Auto Trait Implementations