Interface CfnDashboard.ColumnTooltipItemProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.ColumnTooltipItemProperty.Jsii$Proxy
- Enclosing class:
- CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.ColumnTooltipItemProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
ColumnTooltipItemProperty columnTooltipItemProperty = ColumnTooltipItemProperty.builder()
.column(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
// the properties below are optional
.aggregation(AggregationFunctionProperty.builder()
.categoricalAggregationFunction("categoricalAggregationFunction")
.dateAggregationFunction("dateAggregationFunction")
.numericalAggregationFunction(NumericalAggregationFunctionProperty.builder()
.percentileAggregation(PercentileAggregationProperty.builder()
.percentileValue(123)
.build())
.simpleNumericalAggregation("simpleNumericalAggregation")
.build())
.build())
.label("label")
.visibility("visibility")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.ColumnTooltipItemPropertystatic final classAn implementation forCfnDashboard.ColumnTooltipItemProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumn
The target column of the tooltip item. -
getAggregation
The aggregation function of the column tooltip item. -
getLabel
The label of the tooltip item. -
getVisibility
The visibility of the tooltip item. -
builder
-