Struct rusoto_ssm::ComplianceStringFilter[][src]

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

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

Fields

The name of the filter.

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

The value for which to search.

Trait Implementations

impl Default for ComplianceStringFilter
[src]

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

impl Debug for ComplianceStringFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for ComplianceStringFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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