[][src]Struct rusoto_ssm::UpdateMaintenanceWindowTargetRequest

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

description: Option<String>

An optional description for the update.

name: Option<String>

A name for the update.

owner_information: Option<String>

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

replace: Option<bool>

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.

targets: Option<Vec<Target>>

The targets to add or replace.

window_id: String

The maintenance window ID with which to modify the target.

window_target_id: String

The target ID to modify.

Trait Implementations

impl Clone for UpdateMaintenanceWindowTargetRequest[src]

impl Debug for UpdateMaintenanceWindowTargetRequest[src]

impl Default for UpdateMaintenanceWindowTargetRequest[src]

impl PartialEq<UpdateMaintenanceWindowTargetRequest> for UpdateMaintenanceWindowTargetRequest[src]

impl Serialize for UpdateMaintenanceWindowTargetRequest[src]

impl StructuralPartialEq for UpdateMaintenanceWindowTargetRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.