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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopic.TopicRelativeDateFilterPropertystatic final classAn implementation forCfnTopic.TopicRelativeDateFilterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe constant used in a relative date filter.default StringThe function to be used in a relative date filter to determine the range of dates to include in the results.default StringThe level of time precision that is used to aggregateDateTimevalues.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConstant
The constant used in a relative date filter.- See Also:
-
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.- See Also:
-
getTimeGranularity
The level of time precision that is used to aggregateDateTimevalues.- See Also:
-
builder
-