Struct rusoto_ssm::InventoryFilter[][src]

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

One or more filters. Use a filter to return a more specific list of results.

Fields

The name of the filter key.

The type of filter. Valid values include the following: "Equal"|"NotEqual"|"BeginWith"|"LessThan"|"GreaterThan"

Inventory filter values. Example: inventory filter where instance IDs are specified as values Key=AWS:InstanceInformation.InstanceId,Values= i-a12b3c4d5e6g, i-1a2b3c4d5e6,Type=Equal

Trait Implementations

impl Default for InventoryFilter
[src]

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

impl Debug for InventoryFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for InventoryFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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