Interface CfnTopic.TopicNumericEqualityFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopic.TopicNumericEqualityFilterProperty.Jsii$Proxy
- Enclosing class:
CfnTopic
@Stability(Stable)
public static interface CfnTopic.TopicNumericEqualityFilterProperty
extends software.amazon.jsii.JsiiSerializable
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.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.quicksight.*; TopicNumericEqualityFilterProperty topicNumericEqualityFilterProperty = TopicNumericEqualityFilterProperty.builder() .aggregation("aggregation") .constant(TopicSingularFilterConstantProperty.builder() .constantType("constantType") .singularConstant("singularConstant") .build()) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopic.TopicNumericEqualityFilterProperty
static final class
An implementation forCfnTopic.TopicNumericEqualityFilterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAggregation
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
. -
getConstant
The constant used in a numeric equality filter. -
builder
-