Class CfnDashboardPropsMixin.FilterListControlProperty
A control to display a list of buttons or boxes.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.FilterListControlProperty : CfnDashboardPropsMixin.IFilterListControlProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.FilterListControlProperty Implements CfnDashboardPropsMixin.IFilterListControlProperty
Remarks
This is used to select either a single value or multiple values.
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 filterListControlProperty = new FilterListControlProperty {
CascadingControlConfiguration = new CascadingControlConfigurationProperty {
SourceControls = new [] { new CascadingControlSourceProperty {
ColumnToMatch = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
SourceSheetControlId = "sourceSheetControlId"
} }
},
DisplayOptions = new ListControlDisplayOptionsProperty {
InfoIconLabelOptions = new SheetControlInfoIconLabelOptionsProperty {
InfoIconText = "infoIconText",
Visibility = "visibility"
},
SearchOptions = new ListControlSearchOptionsProperty {
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"
}
},
FilterControlId = "filterControlId",
SelectableValues = new FilterSelectableValuesProperty {
Values = new [] { "values" }
},
SourceFilterId = "sourceFilterId",
Title = "title",
Type = "type"
};
Synopsis
Constructors
| FilterListControlProperty() | A control to display a list of buttons or boxes. |
Properties
| CascadingControlConfiguration | The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls. |
| DisplayOptions | The display options of a control. |
| FilterControlId | The ID of the |
| SelectableValues | A list of selectable values that are used in a control. |
| SourceFilterId | The source filter ID of the |
| Title | The title of the |
| Type | The type of the |
Constructors
FilterListControlProperty()
A control to display a list of buttons or boxes.
public FilterListControlProperty()
Remarks
This is used to select either a single value or multiple values.
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 filterListControlProperty = new FilterListControlProperty {
CascadingControlConfiguration = new CascadingControlConfigurationProperty {
SourceControls = new [] { new CascadingControlSourceProperty {
ColumnToMatch = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
SourceSheetControlId = "sourceSheetControlId"
} }
},
DisplayOptions = new ListControlDisplayOptionsProperty {
InfoIconLabelOptions = new SheetControlInfoIconLabelOptionsProperty {
InfoIconText = "infoIconText",
Visibility = "visibility"
},
SearchOptions = new ListControlSearchOptionsProperty {
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"
}
},
FilterControlId = "filterControlId",
SelectableValues = new FilterSelectableValuesProperty {
Values = new [] { "values" }
},
SourceFilterId = "sourceFilterId",
Title = "title",
Type = "type"
};
Properties
CascadingControlConfiguration
The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.
public object? CascadingControlConfiguration { get; set; }
Property Value
Remarks
DisplayOptions
The display options of a control.
public object? DisplayOptions { get; set; }
Property Value
Remarks
FilterControlId
The ID of the FilterListControl .
public string? FilterControlId { get; set; }
Property Value
Remarks
SelectableValues
A list of selectable values that are used in a control.
public object? SelectableValues { get; set; }
Property Value
Remarks
SourceFilterId
The source filter ID of the FilterListControl .
public string? SourceFilterId { get; set; }
Property Value
Remarks
Title
The title of the FilterListControl .
public string? Title { get; set; }
Property Value
Remarks
Type
The type of the FilterListControl . Choose one of the following options:.
public string? Type { get; set; }