Struct rusoto_ssm::DeregisterTargetFromMaintenanceWindowRequest[][src]

pub struct DeregisterTargetFromMaintenanceWindowRequest {
    pub safe: Option<bool>,
    pub window_id: String,
    pub window_target_id: String,
}

Fields

The system checks if the target is being referenced by a task. If the target is being referenced, the system returns an error and does not deregister the target from the Maintenance Window.

The ID of the Maintenance Window the target should be removed from.

The ID of the target definition to remove.

Trait Implementations

impl Default for DeregisterTargetFromMaintenanceWindowRequest
[src]

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

impl Debug for DeregisterTargetFromMaintenanceWindowRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeregisterTargetFromMaintenanceWindowRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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