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") .timeGranularity("timeGranularity") .value("value") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.TimeEqualityFilterProperty
static final class
An 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 String
The parameter whose value should be used for the filter value.default String
The level of time precision that is used to aggregateDateTime
values.default String
getValue()
The value of aTimeEquality
filter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumn
The column that the filter is applied to. -
getFilterId
An identifier that uniquely identifies a filter within a dashboard, analysis, or template. -
getParameterName
The parameter whose value should be used for the filter value.This field is mutually exclusive to
Value
. -
getTimeGranularity
The level of time precision that is used to aggregateDateTime
values. -
getValue
The value of aTimeEquality
filter.This field is mutually exclusive to
ParameterName
. -
builder
-