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)


34922
34923
34924
34925
34926
34927
34928
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 34922

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

#constantTypes::TopicRangeFilterConstant

The constant used in a numeric range filter.



34922
34923
34924
34925
34926
34927
34928
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 34922

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)


34922
34923
34924
34925
34926
34927
34928
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 34922

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