Struct rusoto_ssm::UpdateMaintenanceWindowRequest [] [src]

pub struct UpdateMaintenanceWindowRequest {
    pub allow_unassociated_targets: Option<bool>,
    pub cutoff: Option<i64>,
    pub description: Option<String>,
    pub duration: Option<i64>,
    pub enabled: Option<bool>,
    pub name: Option<String>,
    pub replace: Option<bool>,
    pub schedule: Option<String>,
    pub window_id: String,
}

Fields

Whether targets must be registered with the Maintenance Window before tasks can be defined for those targets.

The number of hours before the end of the Maintenance Window that Systems Manager stops scheduling new tasks for execution.

An optional description for the update request.

The duration of the Maintenance Window in hours.

Whether the Maintenance Window is enabled.

The name of the Maintenance Window.

If True, then all fields that are required by the CreateMaintenanceWindow action are also required for this API request. Optional fields that are not specified are set to null.

The schedule of the Maintenance Window in the form of a cron or rate expression.

The ID of the Maintenance Window to update.

Trait Implementations

impl Default for UpdateMaintenanceWindowRequest
[src]

[src]

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

impl Debug for UpdateMaintenanceWindowRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateMaintenanceWindowRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations