Struct rusoto_ssm::UpdateMaintenanceWindowResult [] [src]

pub struct UpdateMaintenanceWindowResult {
    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 schedule: Option<String>,
    pub window_id: Option<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 of the update.

The duration of the Maintenance Window in hours.

Whether the Maintenance Window is enabled.

The name of the Maintenance Window.

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

The ID of the created Maintenance Window.

Trait Implementations

impl Default for UpdateMaintenanceWindowResult
[src]

[src]

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

impl Debug for UpdateMaintenanceWindowResult
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateMaintenanceWindowResult
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations