[][src]Struct rusoto_ssm::RegisterTaskWithMaintenanceWindowRequest

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 Clone for RegisterTaskWithMaintenanceWindowRequest
[src]

Performs copy-assignment from source. Read more

impl Default for RegisterTaskWithMaintenanceWindowRequest
[src]

impl PartialEq<RegisterTaskWithMaintenanceWindowRequest> for RegisterTaskWithMaintenanceWindowRequest
[src]

impl Debug for RegisterTaskWithMaintenanceWindowRequest
[src]

impl Serialize for RegisterTaskWithMaintenanceWindowRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T