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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopic.TopicNumericEqualityFilterPropertystatic final classAn 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.- See Also:
-
getConstant
The constant used in a numeric equality filter.- See Also:
-
builder
-