Class CfnDashboardPropsMixin.SheetImageTooltipConfigurationProperty
The tooltip configuration for a sheet image.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.SheetImageTooltipConfigurationProperty : CfnDashboardPropsMixin.ISheetImageTooltipConfigurationProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.SheetImageTooltipConfigurationProperty Implements CfnDashboardPropsMixin.ISheetImageTooltipConfigurationProperty
Remarks
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.Mixins.Preview.AWS.QuickSight.Mixins;
var sheetImageTooltipConfigurationProperty = new SheetImageTooltipConfigurationProperty {
TooltipText = new SheetImageTooltipTextProperty {
PlainText = "plainText"
},
Visibility = "visibility"
};
Synopsis
Constructors
| SheetImageTooltipConfigurationProperty() | The tooltip configuration for a sheet image. |
Properties
| TooltipText | The text that appears in the tooltip. |
| Visibility | The visibility of the tooltip. |
Constructors
SheetImageTooltipConfigurationProperty()
The tooltip configuration for a sheet image.
public SheetImageTooltipConfigurationProperty()
Remarks
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.Mixins.Preview.AWS.QuickSight.Mixins;
var sheetImageTooltipConfigurationProperty = new SheetImageTooltipConfigurationProperty {
TooltipText = new SheetImageTooltipTextProperty {
PlainText = "plainText"
},
Visibility = "visibility"
};
Properties
TooltipText
The text that appears in the tooltip.
public object? TooltipText { get; set; }
Property Value
Remarks
Visibility
The visibility of the tooltip.
public string? Visibility { get; set; }