interface TopicDateRangeFilterProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTopic.TopicDateRangeFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTopic_TopicDateRangeFilterProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTopic.TopicDateRangeFilterProperty |
Python | aws_cdk.aws_quicksight.CfnTopic.TopicDateRangeFilterProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnTopic » TopicDateRangeFilterProperty |
A filter used to restrict data based on a range of dates or times.
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 topicDateRangeFilterProperty: quicksight.CfnTopic.TopicDateRangeFilterProperty = {
constant: {
constantType: 'constantType',
rangeConstant: {
maximum: 'maximum',
minimum: 'minimum',
},
},
inclusive: false,
};
Properties
Name | Type | Description |
---|---|---|
constant? | IResolvable | Topic | The constant used in a date range filter. |
inclusive? | boolean | IResolvable | A Boolean value that indicates whether the date range filter should include the boundary values. |
constant?
Type:
IResolvable
|
Topic
(optional)
The constant used in a date range filter.
inclusive?
Type:
boolean |
IResolvable
(optional, default: false)
A Boolean value that indicates whether the date range filter should include the boundary values.
If set to true, the filter includes the start and end dates. If set to false, the filter excludes them.