Interface CfnTopic.TopicDateRangeFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopic.TopicDateRangeFilterProperty.Jsii$Proxy
- Enclosing class:
CfnTopic
@Stability(Stable)
public static interface CfnTopic.TopicDateRangeFilterProperty
extends software.amazon.jsii.JsiiSerializable
A filter used to restrict data based on a range of dates or times.
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.*;
TopicDateRangeFilterProperty topicDateRangeFilterProperty = TopicDateRangeFilterProperty.builder()
.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.TopicDateRangeFilterPropertystatic final classAn implementation forCfnTopic.TopicDateRangeFilterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConstant
The constant used in a date range filter.- See Also:
-
getInclusive
A Boolean value that indicates whether the date range filter should include the boundary values.If set to true, the filter includes the start and end dates. If set to false, the filter excludes them.
Default: - false
- See Also:
-
builder
-