Class CfnTemplate.TooltipItemProperty
The tooltip.
Inheritance
System.Object
CfnTemplate.TooltipItemProperty
Implements
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TooltipItemProperty : Object, CfnTemplate.ITooltipItemProperty
Syntax (vb)
Public Class TooltipItemProperty
Inherits Object
Implements CfnTemplate.ITooltipItemProperty
Remarks
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var tooltipItemProperty = new TooltipItemProperty {
ColumnTooltipItem = new ColumnTooltipItemProperty {
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
// the properties below are optional
Aggregation = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
},
Label = "label",
TooltipTarget = "tooltipTarget",
Visibility = "visibility"
},
FieldTooltipItem = new FieldTooltipItemProperty {
FieldId = "fieldId",
// the properties below are optional
Label = "label",
TooltipTarget = "tooltipTarget",
Visibility = "visibility"
}
};
Synopsis
Constructors
TooltipItemProperty() |
Properties
ColumnTooltipItem | The tooltip item for the columns that are not part of a field well. |
FieldTooltipItem | The tooltip item for the fields. |
Constructors
TooltipItemProperty()
public TooltipItemProperty()
Properties
ColumnTooltipItem
The tooltip item for the columns that are not part of a field well.
public object ColumnTooltipItem { get; set; }
Property Value
System.Object
Remarks
FieldTooltipItem
The tooltip item for the fields.
public object FieldTooltipItem { get; set; }
Property Value
System.Object