Class: Aws::QuickSight::Types::TopicNumericEqualityFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::TopicNumericEqualityFilter
- 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 matches the specified value.
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.
-
#constant ⇒ Types::TopicSingularFilterConstant
The constant used in a numeric equality 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
.
33852 33853 33854 33855 33856 33857 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 33852 class TopicNumericEqualityFilter < Struct.new( :constant, :aggregation) SENSITIVE = [:constant] include Aws::Structure end |
#constant ⇒ Types::TopicSingularFilterConstant
The constant used in a numeric equality filter.
33852 33853 33854 33855 33856 33857 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 33852 class TopicNumericEqualityFilter < Struct.new( :constant, :aggregation) SENSITIVE = [:constant] include Aws::Structure end |