interface DataSetDateRangeFilterConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.DataSetDateRangeFilterConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_DataSetDateRangeFilterConditionProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.DataSetDateRangeFilterConditionProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.DataSetDateRangeFilterConditionProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » DataSetDateRangeFilterConditionProperty |
A filter condition that filters date values within a specified range.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const dataSetDateRangeFilterConditionProperty: quicksight.CfnDataSet.DataSetDateRangeFilterConditionProperty = {
includeMaximum: false,
includeMinimum: false,
rangeMaximum: {
staticValue: 'staticValue',
},
rangeMinimum: {
staticValue: 'staticValue',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| include | boolean | IResolvable | Whether to include the maximum value in the filter range. |
| include | boolean | IResolvable | Whether to include the minimum value in the filter range. |
| range | IResolvable | Data | The maximum date value for the range filter. |
| range | IResolvable | Data | The minimum date value for the range filter. |
includeMaximum?
Type:
boolean | IResolvable
(optional)
Whether to include the maximum value in the filter range.
includeMinimum?
Type:
boolean | IResolvable
(optional)
Whether to include the minimum value in the filter range.
rangeMaximum?
Type:
IResolvable | Data
(optional)
The maximum date value for the range filter.
rangeMinimum?
Type:
IResolvable | Data
(optional)
The minimum date value for the range filter.

.NET
Go
Java
Python
TypeScript