aws-cdk-lib.aws_quicksight.CfnDashboard.ColumnTooltipItemProperty

interface ColumnTooltipItemProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDashboard.ColumnTooltipItemProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_ColumnTooltipItemProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDashboard.ColumnTooltipItemProperty
Pythonaws_cdk.aws_quicksight.CfnDashboard.ColumnTooltipItemProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDashboard » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const columnTooltipItemProperty: quicksight.CfnDashboard.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

NameTypeDescription
columnIResolvable | ColumnIdentifierPropertyThe target column of the tooltip item.
aggregation?IResolvable | AggregationFunctionPropertyThe aggregation function of the column tooltip item.
label?stringThe label of the tooltip item.
visibility?stringThe visibility of the tooltip item.

column

Type: IResolvable | ColumnIdentifierProperty

The target column of the tooltip item.


aggregation?

Type: IResolvable | AggregationFunctionProperty (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.