aws-cdk-lib.aws_quicksight.CfnTemplate.DrillDownFilterProperty

interface DrillDownFilterProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.DrillDownFilterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_DrillDownFilterProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.DrillDownFilterProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.DrillDownFilterProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » DrillDownFilterProperty

The drill down filter for the column hierarchies.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

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 drillDownFilterProperty: quicksight.CfnTemplate.DrillDownFilterProperty = {
  categoryFilter: {
    categoryValues: ['categoryValues'],
    column: {
      columnName: 'columnName',
      dataSetIdentifier: 'dataSetIdentifier',
    },
  },
  numericEqualityFilter: {
    column: {
      columnName: 'columnName',
      dataSetIdentifier: 'dataSetIdentifier',
    },
    value: 123,
  },
  timeRangeFilter: {
    column: {
      columnName: 'columnName',
      dataSetIdentifier: 'dataSetIdentifier',
    },
    rangeMaximum: 'rangeMaximum',
    rangeMinimum: 'rangeMinimum',
    timeGranularity: 'timeGranularity',
  },
};

Properties

NameTypeDescription
categoryFilter?IResolvable | CategoryDrillDownFilterPropertyThe category type drill down filter.
numericEqualityFilter?IResolvable | NumericEqualityDrillDownFilterPropertyThe numeric equality type drill down filter.
timeRangeFilter?IResolvable | TimeRangeDrillDownFilterPropertyThe time range drill down filter.

categoryFilter?

Type: IResolvable | CategoryDrillDownFilterProperty (optional)

The category type drill down filter.

This filter is used for string type columns.


numericEqualityFilter?

Type: IResolvable | NumericEqualityDrillDownFilterProperty (optional)

The numeric equality type drill down filter.

This filter is used for number type columns.


timeRangeFilter?

Type: IResolvable | TimeRangeDrillDownFilterProperty (optional)

The time range drill down filter.

This filter is used for date time columns.