Show / Hide Table of Contents

Class CfnTemplate.TooltipItemProperty

The tooltip.

Inheritance
object
CfnTemplate.TooltipItemProperty
Implements
CfnTemplate.ITooltipItemProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.TooltipItemProperty : CfnTemplate.ITooltipItemProperty
Syntax (vb)
Public Class CfnTemplate.TooltipItemProperty Implements 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

Constructors

TooltipItemProperty()

The tooltip.

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()

The tooltip.

public TooltipItemProperty()
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"
                 }
             };

Properties

ColumnTooltipItem

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

public object? ColumnTooltipItem { get; set; }
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.

public object? FieldTooltipItem { get; set; }
Property Value

object

Remarks

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

Implements

CfnTemplate.ITooltipItemProperty
Back to top Generated by DocFX