[][src]Struct rusoto_ssm::GetMaintenanceWindowResult

pub struct GetMaintenanceWindowResult {
    pub allow_unassociated_targets: Option<bool>,
    pub created_date: Option<f64>,
    pub cutoff: Option<i64>,
    pub description: Option<String>,
    pub duration: Option<i64>,
    pub enabled: Option<bool>,
    pub end_date: Option<String>,
    pub modified_date: Option<f64>,
    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>,
}

Fields

allow_unassociated_targets: Option<bool>

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

created_date: Option<f64>

The date the maintenance window was created.

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>

The description of the maintenance window.

duration: Option<i64>

The duration of the maintenance window in hours.

enabled: Option<bool>

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

modified_date: Option<f64>

The date the maintenance window was last modified.

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. 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 PartialEq<GetMaintenanceWindowResult> for GetMaintenanceWindowResult[src]

impl Default for GetMaintenanceWindowResult[src]

impl Clone for GetMaintenanceWindowResult[src]

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

Performs copy-assignment from source. Read more

impl Debug for GetMaintenanceWindowResult[src]

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

Auto Trait Implementations

impl Send for GetMaintenanceWindowResult

impl Sync for GetMaintenanceWindowResult

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