#[non_exhaustive]pub struct NodeConfigurationOptionsFilter { /* private fields */ }
Expand description
A set of elements to filter the returned node configurations.
Implementations§
source§impl NodeConfigurationOptionsFilter
impl NodeConfigurationOptionsFilter
sourcepub fn name(&self) -> Option<&NodeConfigurationOptionsFilterName>
pub fn name(&self) -> Option<&NodeConfigurationOptionsFilterName>
The name of the element to filter.
sourcepub fn operator(&self) -> Option<&OperatorType>
pub fn operator(&self) -> 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'.
sourcepub fn values(&self) -> Option<&[String]>
pub fn values(&self) -> Option<&[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).
source§impl NodeConfigurationOptionsFilter
impl NodeConfigurationOptionsFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NodeConfigurationOptionsFilter
.
Trait Implementations§
source§impl Clone for NodeConfigurationOptionsFilter
impl Clone for NodeConfigurationOptionsFilter
source§fn clone(&self) -> NodeConfigurationOptionsFilter
fn clone(&self) -> NodeConfigurationOptionsFilter
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<NodeConfigurationOptionsFilter> for NodeConfigurationOptionsFilter
impl PartialEq<NodeConfigurationOptionsFilter> for NodeConfigurationOptionsFilter
source§fn eq(&self, other: &NodeConfigurationOptionsFilter) -> bool
fn eq(&self, other: &NodeConfigurationOptionsFilter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.