interface DateTimeHierarchyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.DateTimeHierarchyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_DateTimeHierarchyProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.DateTimeHierarchyProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.DateTimeHierarchyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » DateTimeHierarchyProperty |
The option that determines the hierarchy of any DateTime fields.
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 dateTimeHierarchyProperty: quicksight_mixins.CfnDashboardPropsMixin.DateTimeHierarchyProperty = {
drillDownFilters: [{
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',
},
}],
hierarchyId: 'hierarchyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| drill | IResolvable | (IResolvable | Drill)[] | The option that determines the drill down filters for the DateTime hierarchy. |
| hierarchy | string | The hierarchy ID of the DateTime hierarchy. |
drillDownFilters?
Type:
IResolvable | (IResolvable | Drill)[]
(optional)
The option that determines the drill down filters for the DateTime hierarchy.
hierarchyId?
Type:
string
(optional)
The hierarchy ID of the DateTime hierarchy.

.NET
Go
Java
Python
TypeScript