Interface CfnTemplate.RelativeDatesFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.RelativeDatesFilterProperty.Jsii$Proxy
- Enclosing class:
- CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.RelativeDatesFilterProperty
extends software.amazon.jsii.JsiiSerializable
A
RelativeDatesFilter filters relative dates values.
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.*;
RelativeDatesFilterProperty relativeDatesFilterProperty = RelativeDatesFilterProperty.builder()
.anchorDateConfiguration(AnchorDateConfigurationProperty.builder()
.anchorOption("anchorOption")
.parameterName("parameterName")
.build())
.column(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.filterId("filterId")
.nullOption("nullOption")
.relativeDateType("relativeDateType")
.timeGranularity("timeGranularity")
// the properties below are optional
.excludePeriodConfiguration(ExcludePeriodConfigurationProperty.builder()
.amount(123)
.granularity("granularity")
// the properties below are optional
.status("status")
.build())
.minimumGranularity("minimumGranularity")
.parameterName("parameterName")
.relativeDateValue(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.RelativeDatesFilterPropertystatic final classAn implementation forCfnTemplate.RelativeDatesFilterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The date configuration of the filter.The column that the filter is applied to.default ObjectThe configuration for the exclude period of the filter.An identifier that uniquely identifies a filter within a dashboard, analysis, or template.default StringThe minimum granularity (period granularity) of the relative dates filter.This option determines how null values should be treated when filtering data.default StringThe parameter whose value should be used for the filter value.The range date type of the filter.default NumberThe date value of the filter.The level of time precision that is used to aggregateDateTimevalues.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAnchorDateConfiguration
The date configuration of the filter. -
getColumn
The column that the filter is applied to. -
getFilterId
An identifier that uniquely identifies a filter within a dashboard, analysis, or template. -
getNullOption
This option determines how null values should be treated when filtering data.ALL_VALUES: Include null values in filtered results.NULLS_ONLY: Only include null values in filtered results.NON_NULLS_ONLY: Exclude null values from filtered results.
-
getRelativeDateType
The range date type of the filter. Choose one of the options below:.PREVIOUSTHISLASTNOWNEXT
-
getTimeGranularity
The level of time precision that is used to aggregateDateTimevalues. -
getExcludePeriodConfiguration
The configuration for the exclude period of the filter. -
getMinimumGranularity
The minimum granularity (period granularity) of the relative dates filter. -
getParameterName
The parameter whose value should be used for the filter value. -
getRelativeDateValue
The date value of the filter. -
builder
-