aws-cdk-lib.aws_quicksight.CfnTopic.TopicDateRangeFilterProperty

interface TopicDateRangeFilterProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTopic.TopicDateRangeFilterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTopic_TopicDateRangeFilterProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTopic.TopicDateRangeFilterProperty
Pythonaws_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

NameTypeDescription
constant?IResolvable | TopicRangeFilterConstantPropertyThe constant used in a date range filter.
inclusive?boolean | IResolvableA Boolean value that indicates whether the date range filter should include the boundary values.

constant?

Type: IResolvable | TopicRangeFilterConstantProperty (optional)

The constant used in a date range filter.


inclusive?

Type: boolean | IResolvable (optional)

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.