You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Redshift::Types::NodeConfigurationOptionsFilter

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing NodeConfigurationOptionsFilter as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "NodeType", # accepts NodeType, NumberOfNodes, EstimatedDiskUtilizationPercent, Mode
  operator: "eq", # accepts eq, lt, gt, le, ge, in, between
  values: ["String"],
}

A set of elements to filter the returned node configurations.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the element to filter.

Possible values:

  • NodeType
  • NumberOfNodes
  • EstimatedDiskUtilizationPercent
  • Mode

Returns:

  • (String)

    The name of the element to filter.

#operatorString

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\'.

Possible values:

  • eq
  • lt
  • gt
  • le
  • ge
  • in
  • between

Returns:

  • (String)

    The filter operator.

#valuesArray<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).

Returns:

  • (Array<String>)

    List of values.