[][src]Struct rusoto_ssm::MaintenanceWindowIdentity

pub struct MaintenanceWindowIdentity {
    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 next_execution_time: Option<String>,
    pub schedule: Option<String>,
    pub schedule_timezone: Option<String>,
    pub start_date: Option<String>,
    pub window_id: Option<String>,
}

Information about the Maintenance Window.

Fields

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>

A description of the Maintenance Window.

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.

name: Option<String>

The name of the Maintenance Window.

next_execution_time: Option<String>

The next time the Maintenance Window will actually run, taking into account any specified times for the Maintenance Window to become active or inactive.

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.

start_date: Option<String>

The date and time, in ISO-8601 Extended format, for when the Maintenance Window is scheduled to become active.

window_id: Option<String>

The ID of the Maintenance Window.

Trait Implementations

impl Default for MaintenanceWindowIdentity[src]

impl PartialEq<MaintenanceWindowIdentity> for MaintenanceWindowIdentity[src]

impl Clone for MaintenanceWindowIdentity[src]

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

Performs copy-assignment from source. Read more

impl Debug for MaintenanceWindowIdentity[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

impl<T> Any for T where
    T: 'static + ?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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self