Struct rusoto_discovery::Filter [] [src]

pub struct Filter {
    pub condition: String,
    pub name: String,
    pub values: Vec<String>,
}

A filter that can use conditional operators.

For more information about filters, see Querying Discovered Configuration Items.

Fields

A conditional operator. The following operators are valid: EQUALS, NOT_EQUALS, CONTAINS, NOT_CONTAINS. If you specify multiple filters, the system utilizes all filters as though concatenated by AND. If you specify multiple values for a particular filter, the system differentiates the values using OR. Calling either DescribeConfigurations or ListConfigurations returns attributes of matching configuration items.

The name of the filter.

A string value on which to filter. For example, if you choose the destinationServer.osVersion filter name, you could specify Ubuntu for the value.

Trait Implementations

impl Default for Filter
[src]

[src]

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

impl Debug for Filter
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Filter
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Filter

impl Sync for Filter