Interface CfnAnalysis.TooltipItemProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.TooltipItemProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.TooltipItemProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
TooltipItemProperty tooltipItemProperty = TooltipItemProperty.builder()
.columnTooltipItem(ColumnTooltipItemProperty.builder()
.column(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
// the properties below are optional
.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())
.label("label")
.tooltipTarget("tooltipTarget")
.visibility("visibility")
.build())
.fieldTooltipItem(FieldTooltipItemProperty.builder()
.fieldId("fieldId")
// the properties below are optional
.label("label")
.tooltipTarget("tooltipTarget")
.visibility("visibility")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.TooltipItemPropertystatic final classAn implementation forCfnAnalysis.TooltipItemProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnTooltipItem
The tooltip item for the columns that are not part of a field well.Returns union: either
IResolvableorCfnAnalysis.ColumnTooltipItemProperty- See Also:
-
getFieldTooltipItem
The tooltip item for the fields.Returns union: either
IResolvableorCfnAnalysis.FieldTooltipItemProperty- See Also:
-
builder
-