Class: Aws::QuickSight::Types::TopicNumericRangeFilter

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-quicksight/types.rb

Overview

A filter that filters topics based on the value of a numeric field. The filter includes only topics whose numeric field value falls within the specified range.

Constant Summary collapse

SENSITIVE =
[:constant]

Instance Attribute Summary collapse

Instance Attribute Details

#aggregationString

An aggregation function that specifies how to calculate the value of a numeric field for a topic, Valid values for this structure are ‘NO_AGGREGATION`, `SUM`, `AVERAGE`, `COUNT`, `DISTINCT_COUNT`, `MAX`, `MEDIAN`, `MIN`, `STDEV`, `STDEVP`, `VAR`, and `VARP`.

Returns:

  • (String)


30934
30935
30936
30937
30938
30939
30940
# File 'lib/aws-sdk-quicksight/types.rb', line 30934

class TopicNumericRangeFilter < Struct.new(
  :inclusive,
  :constant,
  :aggregation)
  SENSITIVE = [:constant]
  include Aws::Structure
end

#constantTypes::TopicRangeFilterConstant

The constant used in a numeric range filter.



30934
30935
30936
30937
30938
30939
30940
# File 'lib/aws-sdk-quicksight/types.rb', line 30934

class TopicNumericRangeFilter < Struct.new(
  :inclusive,
  :constant,
  :aggregation)
  SENSITIVE = [:constant]
  include Aws::Structure
end

#inclusiveBoolean

A Boolean value that indicates whether the endpoints of the numeric range are included in the filter. If set to true, topics whose numeric field value is equal to the endpoint values will be included in the filter. If set to false, topics whose numeric field value is equal to the endpoint values will be excluded from the filter.

Returns:

  • (Boolean)


30934
30935
30936
30937
30938
30939
30940
# File 'lib/aws-sdk-quicksight/types.rb', line 30934

class TopicNumericRangeFilter < Struct.new(
  :inclusive,
  :constant,
  :aggregation)
  SENSITIVE = [:constant]
  include Aws::Structure
end