Interface CfnTopic.TopicRangeFilterConstantProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopic.TopicRangeFilterConstantProperty.Jsii$Proxy
- Enclosing class:
CfnTopic
@Stability(Stable)
public static interface CfnTopic.TopicRangeFilterConstantProperty
extends software.amazon.jsii.JsiiSerializable
A constant value that is used in a range filter to specify the endpoints of the 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.*; TopicRangeFilterConstantProperty topicRangeFilterConstantProperty = TopicRangeFilterConstantProperty.builder() .constantType("constantType") .rangeConstant(RangeConstantProperty.builder() .maximum("maximum") .minimum("minimum") .build()) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopic.TopicRangeFilterConstantProperty
static final class
An implementation forCfnTopic.TopicRangeFilterConstantProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConstantType
The data type of the constant value that is used in a range filter.Valid values for this structure are
RANGE
. -
getRangeConstant
The value of the constant that is used to specify the endpoints of a range filter. -
builder
-