Interface CfnTopic.TopicRelativeDateFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopic.TopicRelativeDateFilterProperty.Jsii$Proxy
- Enclosing class:
CfnTopic
@Stability(Stable)
public static interface CfnTopic.TopicRelativeDateFilterProperty
extends software.amazon.jsii.JsiiSerializable
A structure that represents a relative date filter.
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.*; TopicRelativeDateFilterProperty topicRelativeDateFilterProperty = TopicRelativeDateFilterProperty.builder() .constant(TopicSingularFilterConstantProperty.builder() .constantType("constantType") .singularConstant("singularConstant") .build()) .relativeDateFilterFunction("relativeDateFilterFunction") .timeGranularity("timeGranularity") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopic.TopicRelativeDateFilterProperty
static final class
An implementation forCfnTopic.TopicRelativeDateFilterProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The constant used in a relative date filter.default String
The function to be used in a relative date filter to determine the range of dates to include in the results.default String
The level of time precision that is used to aggregateDateTime
values.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConstant
The constant used in a relative date filter. -
getRelativeDateFilterFunction
The function to be used in a relative date filter to determine the range of dates to include in the results.Valid values for this structure are
BEFORE
,AFTER
, andBETWEEN
. -
getTimeGranularity
The level of time precision that is used to aggregateDateTime
values. -
builder
-