[][src]Struct rusoto_ssm::InstancePatchStateFilter

pub struct InstancePatchStateFilter {
    pub key: String,
    pub type_: String,
    pub values: Vec<String>,
}

Defines a filter used in DescribeInstancePatchStatesForPatchGroup used to scope down the information returned by the API.

Fields

key: String

The key for the filter. Supported values are FailedCount, InstalledCount, InstalledOtherCount, MissingCount and NotApplicableCount.

type_: String

The type of comparison that should be performed for the value: Equal, NotEqual, LessThan or GreaterThan.

values: Vec<String>

The value for the filter, must be an integer greater than or equal to 0.

Trait Implementations

impl Clone for InstancePatchStateFilter[src]

impl Debug for InstancePatchStateFilter[src]

impl Default for InstancePatchStateFilter[src]

impl PartialEq<InstancePatchStateFilter> for InstancePatchStateFilter[src]

impl Serialize for InstancePatchStateFilter[src]

impl StructuralPartialEq for InstancePatchStateFilter[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, 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.