Show / Hide Table of Contents

Class CfnDashboardPropsMixin.LabelOptionsProperty

The share label options for the labels.

Inheritance
object
CfnDashboardPropsMixin.LabelOptionsProperty
Implements
CfnDashboardPropsMixin.ILabelOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-labeloptions.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-labeloptions.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.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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-labeloptions.html#cfn-quicksight-dashboard-labeloptions-customlabel

FontConfiguration

The font configuration of the label.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-labeloptions.html#cfn-quicksight-dashboard-labeloptions-fontconfiguration

Type union: either IResolvable or CfnDashboardPropsMixin.IFontConfigurationProperty

Visibility

Determines whether or not the label is visible.

public string? Visibility { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-labeloptions.html#cfn-quicksight-dashboard-labeloptions-visibility

Implements

CfnDashboardPropsMixin.ILabelOptionsProperty
Back to top Generated by DocFX