Class CfnDashboard.FilterListConfigurationProperty
A list of filter configurations.
Inheritance
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FilterListConfigurationProperty : Object, CfnDashboard.IFilterListConfigurationProperty
Syntax (vb)
Public Class FilterListConfigurationProperty
Inherits Object
Implements CfnDashboard.IFilterListConfigurationProperty
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 filterListConfigurationProperty = new FilterListConfigurationProperty {
MatchOperator = "matchOperator",
// the properties below are optional
CategoryValues = new [] { "categoryValues" },
NullOption = "nullOption",
SelectAllOptions = "selectAllOptions"
};
Synopsis
Constructors
Filter |
Properties
Category |
The list of category values for the filter. |
Match |
The match operator that is used to determine if a filter should be applied. |
Null |
This option determines how null values should be treated when filtering data. |
Select |
Select all of the values. Null is not the assigned value of select all. |
Constructors
FilterListConfigurationProperty()
public FilterListConfigurationProperty()
Properties
CategoryValues
The list of category values for the filter.
public string[] CategoryValues { get; set; }
Property Value
System.
Remarks
MatchOperator
The match operator that is used to determine if a filter should be applied.
public string MatchOperator { get; set; }
Property Value
System.
Remarks
NullOption
This option determines how null values should be treated when filtering data.
public string NullOption { get; set; }
Property Value
System.
Remarks
SelectAllOptions
Select all of the values. Null is not the assigned value of select all.
public string SelectAllOptions { get; set; }
Property Value
System.