Show / Hide Table of Contents

Interface CfnTemplate.ITooltipItemProperty

The tooltip.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTemplate.ITooltipItemProperty
Syntax (vb)
Public Interface CfnTemplate.ITooltipItemProperty
Remarks

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tooltipitem.html

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

Properties

ColumnTooltipItem

The tooltip item for the columns that are not part of a field well.

FieldTooltipItem

The tooltip item for the fields.

Properties

ColumnTooltipItem

The tooltip item for the columns that are not part of a field well.

object? ColumnTooltipItem { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tooltipitem.html#cfn-quicksight-template-tooltipitem-columntooltipitem

FieldTooltipItem

The tooltip item for the fields.

object? FieldTooltipItem { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tooltipitem.html#cfn-quicksight-template-tooltipitem-fieldtooltipitem

Back to top Generated by DocFX