Struct rusoto_ssm::InstancePatchStateFilter[][src]

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

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

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

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

Trait Implementations

impl Default for InstancePatchStateFilter
[src]

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

impl Debug for InstancePatchStateFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for InstancePatchStateFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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