Interface CfnTopic.TopicNumericRangeFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopic.TopicNumericRangeFilterProperty.Jsii$Proxy
- Enclosing class:
CfnTopic
@Stability(Stable)
public static interface CfnTopic.TopicNumericRangeFilterProperty
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 falls within the specified range.
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.*;
TopicNumericRangeFilterProperty topicNumericRangeFilterProperty = TopicNumericRangeFilterProperty.builder()
.aggregation("aggregation")
.constant(TopicRangeFilterConstantProperty.builder()
.constantType("constantType")
.rangeConstant(RangeConstantProperty.builder()
.maximum("maximum")
.minimum("minimum")
.build())
.build())
.inclusive(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopic.TopicNumericRangeFilterPropertystatic final classAn implementation forCfnTopic.TopicNumericRangeFilterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAn aggregation function that specifies how to calculate the value of a numeric field for a topic, Valid values for this structure areNO_AGGREGATION,SUM,AVERAGE,COUNT,DISTINCT_COUNT,MAX,MEDIAN,MIN,STDEV,STDEVP,VAR, andVARP.default ObjectThe constant used in a numeric range filter.default ObjectA Boolean value that indicates whether the endpoints of the numeric range are included in the filter.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 areNO_AGGREGATION,SUM,AVERAGE,COUNT,DISTINCT_COUNT,MAX,MEDIAN,MIN,STDEV,STDEVP,VAR, andVARP.- See Also:
-
getConstant
The constant used in a numeric range filter.- See Also:
-
getInclusive
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.
Default: - false
- See Also:
-
builder
-