interface TooltipItemProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.TooltipItemProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.TooltipItemProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.TooltipItemProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnDashboard»TooltipItemProperty | 
The tooltip.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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 tooltipItemProperty: quicksight.CfnDashboard.TooltipItemProperty = {
  columnTooltipItem: {
    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',
  },
  fieldTooltipItem: {
    fieldId: 'fieldId',
    // the properties below are optional
    label: 'label',
    visibility: 'visibility',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| column | IResolvable | Column | The tooltip item for the columns that are not part of a field well. | 
| field | IResolvable | Field | The tooltip item for the fields. | 
columnTooltipItem?
Type:
IResolvable | Column
(optional)
The tooltip item for the columns that are not part of a field well.
fieldTooltipItem?
Type:
IResolvable | Field
(optional)
The tooltip item for the fields.
