Interface CfnTemplatePropsMixin.ColumnTooltipItemProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplatePropsMixin.ColumnTooltipItemProperty.Jsii$Proxy
- Enclosing class:
CfnTemplatePropsMixin
@Stability(Stable)
public static interface CfnTemplatePropsMixin.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.cfnpropertymixins.services.quicksight.*;
ColumnTooltipItemProperty columnTooltipItemProperty = ColumnTooltipItemProperty.builder()
.aggregation(AggregationFunctionProperty.builder()
.attributeAggregationFunction(AttributeAggregationFunctionProperty.builder()
.simpleAttributeAggregation("simpleAttributeAggregation")
.valueForMultipleValues("valueForMultipleValues")
.build())
.categoricalAggregationFunction("categoricalAggregationFunction")
.dateAggregationFunction("dateAggregationFunction")
.numericalAggregationFunction(NumericalAggregationFunctionProperty.builder()
.percentileAggregation(PercentileAggregationProperty.builder()
.percentileValue(123)
.build())
.simpleNumericalAggregation("simpleNumericalAggregation")
.build())
.build())
.column(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.label("label")
.tooltipTarget("tooltipTarget")
.visibility("visibility")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplatePropsMixin.ColumnTooltipItemPropertystatic final classAn implementation forCfnTemplatePropsMixin.ColumnTooltipItemProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe aggregation function of the column tooltip item.default ObjectThe target column of the tooltip item.default StringgetLabel()The label of the tooltip item.default StringDetermines the target of the column tooltip item in a combo chart visual.default StringThe visibility of the tooltip item.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAggregation
The aggregation function of the column tooltip item.Returns union: either
IResolvableorCfnTemplatePropsMixin.AggregationFunctionProperty- See Also:
-
getColumn
The target column of the tooltip item.Returns union: either
IResolvableorCfnTemplatePropsMixin.ColumnIdentifierProperty- See Also:
-
getLabel
The label of the tooltip item.- See Also:
-
getTooltipTarget
Determines the target of the column tooltip item in a combo chart visual.- See Also:
-
getVisibility
The visibility of the tooltip item.- See Also:
-
builder
-