interface ColumnTooltipItemProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.ColumnTooltipItemProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.ColumnTooltipItemProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.ColumnTooltipItemProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnAnalysis » ColumnTooltipItemProperty |
The tooltip item for the columns that are not part of a field well.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const columnTooltipItemProperty: quicksight.CfnAnalysis.ColumnTooltipItemProperty = {
column: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
// the properties below are optional
aggregation: {
categoricalAggregationFunction: 'categoricalAggregationFunction',
dateAggregationFunction: 'dateAggregationFunction',
numericalAggregationFunction: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
},
label: 'label',
visibility: 'visibility',
};
Properties
Name | Type | Description |
---|---|---|
column | IResolvable | Column | The target column of the tooltip item. |
aggregation? | IResolvable | Aggregation | The aggregation function of the column tooltip item. |
label? | string | The label of the tooltip item. |
visibility? | string | The visibility of the tooltip item. |
column
Type:
IResolvable
|
Column
The target column of the tooltip item.
aggregation?
Type:
IResolvable
|
Aggregation
(optional)
The aggregation function of the column tooltip item.
label?
Type:
string
(optional)
The label of the tooltip item.
visibility?
Type:
string
(optional)
The visibility of the tooltip item.