[][src]Struct rusoto_ssm::MaintenanceWindowTarget

pub struct MaintenanceWindowTarget {
    pub description: Option<String>,
    pub name: Option<String>,
    pub owner_information: Option<String>,
    pub resource_type: Option<String>,
    pub targets: Option<Vec<Target>>,
    pub window_id: Option<String>,
    pub window_target_id: Option<String>,
}

The target registered with the maintenance window.

Fields

description: Option<String>

A description for the target.

name: Option<String>

The name for the maintenance window target.

owner_information: Option<String>

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

resource_type: Option<String>

The type of target that is being registered with the maintenance window.

targets: Option<Vec<Target>>

The targets, either instances or tags.

Specify instances using the following format:

Key=instanceids,Values=<instanceid1>,<instanceid2>

Tags are specified using the following format:

Key=<tag name>,Values=<tag value>.

window_id: Option<String>

The ID of the maintenance window to register the target with.

window_target_id: Option<String>

The ID of the target.

Trait Implementations

impl Clone for MaintenanceWindowTarget[src]

impl Debug for MaintenanceWindowTarget[src]

impl Default for MaintenanceWindowTarget[src]

impl<'de> Deserialize<'de> for MaintenanceWindowTarget[src]

impl PartialEq<MaintenanceWindowTarget> for MaintenanceWindowTarget[src]

impl StructuralPartialEq for MaintenanceWindowTarget[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.