[][src]Struct rusoto_ssm::UpdateMaintenanceWindowResult

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

Performs copy-assignment from source. Read more

impl Default for UpdateMaintenanceWindowResult
[src]

impl PartialEq<UpdateMaintenanceWindowResult> for UpdateMaintenanceWindowResult
[src]

impl Debug for UpdateMaintenanceWindowResult
[src]

impl<'de> Deserialize<'de> for UpdateMaintenanceWindowResult
[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T