Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DrillDownFilter

import type { DrillDownFilter } from "https://aws-api.deno.dev/v0.4/services/quicksight.ts?docs=full";

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.

interface DrillDownFilter {
CategoryFilter?: CategoryDrillDownFilter | null;
NumericEqualityFilter?: NumericEqualityDrillDownFilter | null;
TimeRangeFilter?: TimeRangeDrillDownFilter | null;
}

§Properties

§
CategoryFilter?: CategoryDrillDownFilter | null
[src]

The category type drill down filter. This filter is used for string type columns.

§
NumericEqualityFilter?: NumericEqualityDrillDownFilter | null
[src]

The numeric equality type drill down filter. This filter is used for number type columns.

§
TimeRangeFilter?: TimeRangeDrillDownFilter | null
[src]

The time range drill down filter. This filter is used for date time columns.