Interface CfnTemplate.IDefaultFilterDropDownControlOptionsProperty
The default options that correspond to the Dropdown
filter control type.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDefaultFilterDropDownControlOptionsProperty
Syntax (vb)
Public Interface IDefaultFilterDropDownControlOptionsProperty
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.AWS.QuickSight;
var defaultFilterDropDownControlOptionsProperty = new DefaultFilterDropDownControlOptionsProperty {
CommitMode = "commitMode",
DisplayOptions = 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",
FontSize = new FontSizeProperty {
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility"
}
},
SelectableValues = new FilterSelectableValuesProperty {
Values = new [] { "values" }
},
Type = "type"
};
Synopsis
Properties
Commit |
The visibility configuration of the Apply button on a |
Display |
The display options of a control. |
Selectable |
A list of selectable values that are used in a control. |
Type | The type of the |
Properties
CommitMode
The visibility configuration of the Apply button on a FilterDropDownControl
.
virtual string CommitMode { get; }
Property Value
System.
Remarks
DisplayOptions
The display options of a control.
virtual object DisplayOptions { get; }
Property Value
System.
Remarks
SelectableValues
A list of selectable values that are used in a control.
virtual object SelectableValues { get; }
Property Value
System.
Remarks
Type
The type of the FilterDropDownControl
. Choose one of the following options:.
virtual string Type { get; }
Property Value
System.