interface FieldTooltipItemProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.FieldTooltipItemProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_FieldTooltipItemProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.FieldTooltipItemProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.FieldTooltipItemProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnTemplate»FieldTooltipItemProperty | 
The tooltip item for the fields.
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-lib';
const fieldTooltipItemProperty: quicksight.CfnTemplate.FieldTooltipItemProperty = {
  fieldId: 'fieldId',
  // the properties below are optional
  label: 'label',
  tooltipTarget: 'tooltipTarget',
  visibility: 'visibility',
};
Properties
| Name | Type | Description | 
|---|---|---|
| field | string | The unique ID of the field that is targeted by the tooltip. | 
| label? | string | The label of the tooltip item. | 
| tooltip | string | Determines the target of the field tooltip item in a combo chart visual. | 
| visibility? | string | The visibility of the tooltip item. | 
fieldId
Type:
string
The unique ID of the field that is targeted by the tooltip.
label?
Type:
string
(optional)
The label of the tooltip item.
tooltipTarget?
Type:
string
(optional)
Determines the target of the field tooltip item in a combo chart visual.
visibility?
Type:
string
(optional)
The visibility of the tooltip item.
