[][src]Struct rusoto_ssm::UpdateMaintenanceWindowRequest

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 end_date: Option<String>,
    pub name: Option<String>,
    pub replace: Option<bool>,
    pub schedule: Option<String>,
    pub schedule_timezone: Option<String>,
    pub start_date: Option<String>,
    pub window_id: 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 for the update request.

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 you want the maintenance window to become inactive. EndDate allows you to set a date and time in the future when the maintenance window will no longer run.

name: Option<String>

The name of the maintenance window.

replace: Option<bool>

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.

schedule: Option<String>

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

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 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.

window_id: String

The ID of the maintenance window to update.

Trait Implementations

impl PartialEq<UpdateMaintenanceWindowRequest> for UpdateMaintenanceWindowRequest[src]

impl Default for UpdateMaintenanceWindowRequest[src]

impl Clone for UpdateMaintenanceWindowRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UpdateMaintenanceWindowRequest[src]

impl Serialize for UpdateMaintenanceWindowRequest[src]

Auto Trait Implementations

impl Send for UpdateMaintenanceWindowRequest

impl Sync for UpdateMaintenanceWindowRequest

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]

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self