Interface CfnTemplate.TimeRangeDrillDownFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.TimeRangeDrillDownFilterProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.TimeRangeDrillDownFilterProperty
extends software.amazon.jsii.JsiiSerializable
The time range drill down 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.*;
TimeRangeDrillDownFilterProperty timeRangeDrillDownFilterProperty = TimeRangeDrillDownFilterProperty.builder()
.column(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.rangeMaximum("rangeMaximum")
.rangeMinimum("rangeMinimum")
.timeGranularity("timeGranularity")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.TimeRangeDrillDownFilterPropertystatic final classAn implementation forCfnTemplate.TimeRangeDrillDownFilterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The column that the filter is applied to.The maximum value for the filter value range.The minimum value for the filter value range.The level of time precision that is used to aggregateDateTimevalues.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumn
The column that the filter is applied to.- See Also:
-
getRangeMaximum
The maximum value for the filter value range.- See Also:
-
getRangeMinimum
The minimum value for the filter value range.- See Also:
-
getTimeGranularity
The level of time precision that is used to aggregateDateTimevalues.- See Also:
-
builder
-