Struct aws_sdk_redshift::model::NodeConfigurationOptionsFilter [−][src]
#[non_exhaustive]pub struct NodeConfigurationOptionsFilter {
pub name: Option<NodeConfigurationOptionsFilterName>,
pub operator: Option<OperatorType>,
pub values: Option<Vec<String>>,
}
Expand description
A set of elements to filter the returned node configurations.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<NodeConfigurationOptionsFilterName>
The name of the element to filter.
operator: Option<OperatorType>
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).
Implementations
The name of the element to filter.
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'.
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).
Creates a new builder-style object to manufacture NodeConfigurationOptionsFilter
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for NodeConfigurationOptionsFilter
impl Sync for NodeConfigurationOptionsFilter
impl Unpin for NodeConfigurationOptionsFilter
impl UnwindSafe for NodeConfigurationOptionsFilter
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more