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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-quicksight/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)


31226
31227
31228
31229
31230
31231
31232
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 31226

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

#constantTypes::TopicRangeFilterConstant

The constant used in a numeric range filter.



31226
31227
31228
31229
31230
31231
31232
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 31226

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)


31226
31227
31228
31229
31230
31231
31232
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 31226

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