Struct rusoto_ssm::CreateMaintenanceWindowRequest[][src]

pub struct CreateMaintenanceWindowRequest {
    pub allow_unassociated_targets: bool,
    pub client_token: Option<String>,
    pub cutoff: i64,
    pub description: Option<String>,
    pub duration: i64,
    pub name: String,
    pub schedule: String,
}

Fields

Enables a Maintenance Window task to execute on managed instances, even if you have not registered those instances as targets. If enabled, then you must specify the unregistered instances (by instance ID) when you register a task with the Maintenance Window

If you don't enable this option, then you must specify previously-registered targets when you register a task with the Maintenance Window.

User-provided idempotency token.

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

An optional description for the Maintenance Window. We recommend specifying a description to help you organize your Maintenance Windows.

The duration of the Maintenance Window in hours.

The name of the Maintenance Window.

The schedule of the Maintenance Window in the form of a cron or rate expression.

Trait Implementations

impl Default for CreateMaintenanceWindowRequest
[src]

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

impl Debug for CreateMaintenanceWindowRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateMaintenanceWindowRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateMaintenanceWindowRequest
[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