Class CfnDashboardPropsMixin.LabelOptionsProperty
The share label options for the labels.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.LabelOptionsProperty : CfnDashboardPropsMixin.ILabelOptionsProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.LabelOptionsProperty Implements CfnDashboardPropsMixin.ILabelOptionsProperty
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.CfnPropertyMixins.AWS.QuickSight;
var labelOptionsProperty = new LabelOptionsProperty {
CustomLabel = "customLabel",
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility"
};
Synopsis
Constructors
| LabelOptionsProperty() | The share label options for the labels. |
Properties
| CustomLabel | The text for the label. |
| FontConfiguration | The font configuration of the label. |
| Visibility | Determines whether or not the label is visible. |
Constructors
LabelOptionsProperty()
The share label options for the labels.
public LabelOptionsProperty()
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.CfnPropertyMixins.AWS.QuickSight;
var labelOptionsProperty = new LabelOptionsProperty {
CustomLabel = "customLabel",
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility"
};
Properties
CustomLabel
The text for the label.
public string? CustomLabel { get; set; }
Property Value
Remarks
FontConfiguration
The font configuration of the label.
public object? FontConfiguration { get; set; }
Property Value
Remarks
Visibility
Determines whether or not the label is visible.
public string? Visibility { get; set; }