Show / Hide Table of Contents

Class CfnAnalysis.TooltipItemProperty

The tooltip.

Inheritance
System.Object
CfnAnalysis.TooltipItemProperty
Implements
CfnAnalysis.ITooltipItemProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class TooltipItemProperty : Object, CfnAnalysis.ITooltipItemProperty
Syntax (vb)
Public Class TooltipItemProperty
    Inherits Object
    Implements CfnAnalysis.ITooltipItemProperty
Remarks

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-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 {
            CategoricalAggregationFunction = "categoricalAggregationFunction",
            DateAggregationFunction = "dateAggregationFunction",
            NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                PercentileAggregation = new PercentileAggregationProperty {
                    PercentileValue = 123
                },
                SimpleNumericalAggregation = "simpleNumericalAggregation"
            }
        },
        Label = "label",
        Visibility = "visibility"
    },
    FieldTooltipItem = new FieldTooltipItemProperty {
        FieldId = "fieldId",

        // the properties below are optional
        Label = "label",
        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

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

FieldTooltipItem

The tooltip item for the fields.

public object FieldTooltipItem { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnAnalysis.ITooltipItemProperty
Back to top Generated by DocFX