interface TimeRangeDrillDownFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.TimeRangeDrillDownFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_TimeRangeDrillDownFilterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.TimeRangeDrillDownFilterProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.TimeRangeDrillDownFilterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » TimeRangeDrillDownFilterProperty |
The time range drill down filter.
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/cfn-property-mixins';
const timeRangeDrillDownFilterProperty: quicksight.CfnTemplatePropsMixin.TimeRangeDrillDownFilterProperty = {
column: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
rangeMaximum: 'rangeMaximum',
rangeMinimum: 'rangeMinimum',
timeGranularity: 'timeGranularity',
};
Properties
| Name | Type | Description |
|---|---|---|
| column? | IResolvable | Column | The column that the filter is applied to. |
| range | string | The maximum value for the filter value range. |
| range | string | The minimum value for the filter value range. |
| time | string | The level of time precision that is used to aggregate DateTime values. |
column?
Type:
IResolvable | Column
(optional)
The column that the filter is applied to.
rangeMaximum?
Type:
string
(optional)
The maximum value for the filter value range.
rangeMinimum?
Type:
string
(optional)
The minimum value for the filter value range.
timeGranularity?
Type:
string
(optional)
The level of time precision that is used to aggregate DateTime values.

.NET
Go
Java
Python
TypeScript