interface TimeRangeDrillDownFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.TimeRangeDrillDownFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_TimeRangeDrillDownFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.TimeRangeDrillDownFilterProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.TimeRangeDrillDownFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const timeRangeDrillDownFilterProperty: quicksight_mixins.CfnAnalysisPropsMixin.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