Interface CfnDashboard.TimeEqualityFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.TimeEqualityFilterProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.TimeEqualityFilterProperty
extends software.amazon.jsii.JsiiSerializable
A
TimeEqualityFilter filters values that are equal to a given value.
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.*;
TimeEqualityFilterProperty timeEqualityFilterProperty = TimeEqualityFilterProperty.builder()
.column(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.filterId("filterId")
// the properties below are optional
.parameterName("parameterName")
.rollingDate(RollingDateConfigurationProperty.builder()
.expression("expression")
// the properties below are optional
.dataSetIdentifier("dataSetIdentifier")
.build())
.timeGranularity("timeGranularity")
.value("value")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.TimeEqualityFilterPropertystatic final classAn implementation forCfnDashboard.TimeEqualityFilterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The column that the filter is applied to.An identifier that uniquely identifies a filter within a dashboard, analysis, or template.default StringThe parameter whose value should be used for the filter value.default Objectdefault StringThe level of time precision that is used to aggregateDateTimevalues.default StringgetValue()The value of aTimeEqualityfilter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumn
The column that the filter is applied to.- See Also:
-
getFilterId
An identifier that uniquely identifies a filter within a dashboard, analysis, or template.- See Also:
-
getParameterName
The parameter whose value should be used for the filter value.This field is mutually exclusive to
ValueandRollingDate.- See Also:
-
getRollingDate
- See Also:
-
getTimeGranularity
The level of time precision that is used to aggregateDateTimevalues.- See Also:
-
getValue
The value of aTimeEqualityfilter.This field is mutually exclusive to
RollingDateandParameterName.- See Also:
-
builder
-