Show / Hide Table of Contents

Interface CfnTemplate.IDropDownControlDisplayOptionsProperty

The display options of a control.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTemplate.IDropDownControlDisplayOptionsProperty
Syntax (vb)
Public Interface CfnTemplate.IDropDownControlDisplayOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-dropdowncontroldisplayoptions.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 dropDownControlDisplayOptionsProperty = new DropDownControlDisplayOptionsProperty {
                 InfoIconLabelOptions = new SheetControlInfoIconLabelOptionsProperty {
                     InfoIconText = "infoIconText",
                     Visibility = "visibility"
                 },
                 SelectAllOptions = new ListControlSelectAllOptionsProperty {
                     Visibility = "visibility"
                 },
                 TitleOptions = 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

Properties

InfoIconLabelOptions

The configuration of info icon label options.

SelectAllOptions

The configuration of the Select all options in a dropdown control.

TitleOptions

The options to configure the title visibility, name, and font size.

Properties

InfoIconLabelOptions

The configuration of info icon label options.

object? InfoIconLabelOptions { get; }
Property Value

object

Remarks

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

SelectAllOptions

The configuration of the Select all options in a dropdown control.

object? SelectAllOptions { get; }
Property Value

object

Remarks

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

TitleOptions

The options to configure the title visibility, name, and font size.

object? TitleOptions { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX