Struct rusoto_ssm::GetMaintenanceWindowResult[][src]

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 modified_date: Option<f64>,
    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 date the Maintenance Window was created.

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

The description of the Maintenance Window.

The duration of the Maintenance Window in hours.

Whether the Maintenance Windows is enabled.

The date the Maintenance Window was last modified.

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

Returns the "default value" for a type. Read more

impl Debug for GetMaintenanceWindowResult
[src]

Formats the value using the given formatter. Read more

impl Clone for GetMaintenanceWindowResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetMaintenanceWindowResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations