Struct rusoto_ssm::MaintenanceWindowIdentity [] [src]

pub struct MaintenanceWindowIdentity {
    pub cutoff: Option<i64>,
    pub description: Option<String>,
    pub duration: Option<i64>,
    pub enabled: Option<bool>,
    pub name: Option<String>,
    pub window_id: Option<String>,
}

Information about the Maintenance Window.

Fields

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

A description of the Maintenance Window.

The duration of the Maintenance Window in hours.

Whether the Maintenance Window is enabled.

The name of the Maintenance Window.

The ID of the Maintenance Window.

Trait Implementations

impl Default for MaintenanceWindowIdentity
[src]

[src]

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

impl Debug for MaintenanceWindowIdentity
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for MaintenanceWindowIdentity
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations