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)


40531
40532
40533
40534
40535
40536
40537
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 40531

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

#constantTypes::TopicRangeFilterConstant

The constant used in a numeric range filter.



40531
40532
40533
40534
40535
40536
40537
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 40531

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)


40531
40532
40533
40534
40535
40536
40537
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 40531

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