[][src]Struct rusoto_redshift::NodeConfigurationOptionsFilter

pub struct NodeConfigurationOptionsFilter {
    pub name: Option<String>,
    pub operator: Option<String>,
    pub values: Option<Vec<String>>,
}

A set of elements to filter the returned node configurations.

Fields

name: Option<String>

The name of the element to filter.

operator: Option<String>

The filter operator. If filter Name is NodeType only the 'in' operator is supported. Provide one value to evaluate for 'eq', 'lt', 'le', 'gt', and 'ge'. Provide two values to evaluate for 'between'. Provide a list of values for 'in'.

values: Option<Vec<String>>

List of values. Compare Name using Operator to Values. If filter Name is NumberOfNodes, then values can range from 0 to 200. If filter Name is EstimatedDiskUtilizationPercent, then values can range from 0 to 100. For example, filter NumberOfNodes (name) GT (operator) 3 (values).

Trait Implementations

impl Clone for NodeConfigurationOptionsFilter[src]

impl Debug for NodeConfigurationOptionsFilter[src]

impl Default for NodeConfigurationOptionsFilter[src]

impl PartialEq<NodeConfigurationOptionsFilter> for NodeConfigurationOptionsFilter[src]

impl StructuralPartialEq for NodeConfigurationOptionsFilter[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.