[][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 end_date: Option<String>,
    pub name: Option<String>,
    pub schedule: Option<String>,
    pub schedule_offset: Option<i64>,
    pub schedule_timezone: Option<String>,
    pub start_date: Option<String>,
    pub window_id: Option<String>,
}

Fields

allow_unassociated_targets: Option<bool>

Whether targets must be registered with the maintenance window before tasks can be defined for those targets.

cutoff: Option<i64>

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

description: Option<String>

An optional description of the update.

duration: Option<i64>

The duration of the maintenance window in hours.

enabled: Option<bool>

Whether the maintenance window is enabled.

end_date: Option<String>

The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled to become inactive. The maintenance window will not run after this specified time.

name: Option<String>

The name of the maintenance window.

schedule: Option<String>

The schedule of the maintenance window in the form of a cron or rate expression.

schedule_offset: Option<i64>

The number of days to wait to run a maintenance window after the scheduled CRON expression date and time.

schedule_timezone: Option<String>

The time zone that the scheduled maintenance window executions are based on, in Internet Assigned Numbers Authority (IANA) format. For example: "America/Los_Angeles", "etc/UTC", or "Asia/Seoul". For more information, see the Time Zone Database on the IANA website.

start_date: Option<String>

The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled to become active. The maintenance window will not run before this specified time.

window_id: Option<String>

The ID of the created maintenance window.

Trait Implementations

impl Clone for UpdateMaintenanceWindowResult[src]

impl Debug for UpdateMaintenanceWindowResult[src]

impl Default for UpdateMaintenanceWindowResult[src]

impl<'de> Deserialize<'de> for UpdateMaintenanceWindowResult[src]

impl PartialEq<UpdateMaintenanceWindowResult> for UpdateMaintenanceWindowResult[src]

impl StructuralPartialEq for UpdateMaintenanceWindowResult[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.