interface TimeEqualityFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.TimeEqualityFilterProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.TimeEqualityFilterProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.TimeEqualityFilterProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDashboard » TimeEqualityFilterProperty |
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 * as quicksight from '@aws-cdk/aws-quicksight';
const timeEqualityFilterProperty: quicksight.CfnDashboard.TimeEqualityFilterProperty = {
column: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
filterId: 'filterId',
// the properties below are optional
parameterName: 'parameterName',
timeGranularity: 'timeGranularity',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | IResolvable | Column | The column that the filter is applied to. |
| filter | string | An identifier that uniquely identifies a filter within a dashboard, analysis, or template. |
| parameter | string | The parameter whose value should be used for the filter value. |
| time | string | The level of time precision that is used to aggregate DateTime values. |
| value? | string | The value of a TimeEquality filter. |
column
Type:
IResolvable | Column
The column that the filter is applied to.
filterId
Type:
string
An identifier that uniquely identifies a filter within a dashboard, analysis, or template.
parameterName?
Type:
string
(optional)
The parameter whose value should be used for the filter value.
This field is mutually exclusive to Value .
timeGranularity?
Type:
string
(optional)
The level of time precision that is used to aggregate DateTime values.
value?
Type:
string
(optional)
The value of a TimeEquality filter.
This field is mutually exclusive to ParameterName .

.NET
Java
Python
TypeScript