Struct rusoto_ssm::UpdateMaintenanceWindowTaskResult[][src]

pub struct UpdateMaintenanceWindowTaskResult {
    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_invocation_parameters: Option<MaintenanceWindowTaskInvocationParameters>,
    pub task_parameters: Option<HashMap<String, MaintenanceWindowTaskParameterValueExpression>>,
    pub window_id: Option<String>,
    pub window_task_id: Option<String>,
}

Fields

The updated task description.

The updated logging information in Amazon S3.

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 updated MaxConcurrency value.

The updated MaxErrors value.

The updated task name.

The updated priority value.

The updated service role ARN value.

The updated target values.

The updated task ARN value.

The updated parameter values.

The updated parameter values.

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 ID of the Maintenance Window that was updated.

The task ID of the Maintenance Window that was updated.

Trait Implementations

impl Default for UpdateMaintenanceWindowTaskResult
[src]

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

impl Debug for UpdateMaintenanceWindowTaskResult
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateMaintenanceWindowTaskResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateMaintenanceWindowTaskResult
[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