Class: Aws::QuickSight::Types::TopicNumericRangeFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::TopicNumericRangeFilter
- 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
-
#aggregation ⇒ String
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
, andVARP
. -
#constant ⇒ Types::TopicRangeFilterConstant
The constant used in a numeric range filter.
-
#inclusive ⇒ Boolean
A Boolean value that indicates whether the endpoints of the numeric range are included in the filter.
Instance Attribute Details
#aggregation ⇒ String
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
.
36730 36731 36732 36733 36734 36735 36736 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 36730 class TopicNumericRangeFilter < Struct.new( :inclusive, :constant, :aggregation) SENSITIVE = [:constant] include Aws::Structure end |
#constant ⇒ Types::TopicRangeFilterConstant
The constant used in a numeric range filter.
36730 36731 36732 36733 36734 36735 36736 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 36730 class TopicNumericRangeFilter < Struct.new( :inclusive, :constant, :aggregation) SENSITIVE = [:constant] include Aws::Structure end |
#inclusive ⇒ Boolean
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.
36730 36731 36732 36733 36734 36735 36736 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 36730 class TopicNumericRangeFilter < Struct.new( :inclusive, :constant, :aggregation) SENSITIVE = [:constant] include Aws::Structure end |