Struct rusoto_ssm::ParameterStringFilter[][src]

pub struct ParameterStringFilter {
    pub key: String,
    pub option: 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.

Valid options are Equals and BeginsWith. For Path filter, valid options are Recursive and OneLevel.

The value you want to search for.

Trait Implementations

impl Default for ParameterStringFilter
[src]

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

impl Debug for ParameterStringFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for ParameterStringFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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