Struct rusoto_ssm::UpdateMaintenanceWindowTargetRequest[][src]

pub struct UpdateMaintenanceWindowTargetRequest {
    pub description: Option<String>,
    pub name: Option<String>,
    pub owner_information: Option<String>,
    pub replace: Option<bool>,
    pub targets: Option<Vec<Target>>,
    pub window_id: String,
    pub window_target_id: String,
}

Fields

An optional description for the update.

A name for the update.

User-provided value that will be included in any CloudWatch events raised while running tasks for these targets in this Maintenance Window.

If True, then all fields that are required by the RegisterTargetWithMaintenanceWindow action are also required for this API request. Optional fields that are not specified are set to null.

The targets to add or replace.

The Maintenance Window ID with which to modify the target.

The target ID to modify.

Trait Implementations

impl Default for UpdateMaintenanceWindowTargetRequest
[src]

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

impl Debug for UpdateMaintenanceWindowTargetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateMaintenanceWindowTargetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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