Show / Hide Table of Contents

Class CfnDashboard.FilterListConfigurationProperty

A list of filter configurations.

Inheritance
object
CfnDashboard.FilterListConfigurationProperty
Implements
CfnDashboard.IFilterListConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboard.FilterListConfigurationProperty : CfnDashboard.IFilterListConfigurationProperty
Syntax (vb)
Public Class CfnDashboard.FilterListConfigurationProperty Implements CfnDashboard.IFilterListConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filterlistconfiguration.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 filterListConfigurationProperty = new FilterListConfigurationProperty {
                 MatchOperator = "matchOperator",

                 // the properties below are optional
                 CategoryValues = new [] { "categoryValues" },
                 NullOption = "nullOption",
                 SelectAllOptions = "selectAllOptions"
             };

Synopsis

Constructors

FilterListConfigurationProperty()

A list of filter configurations.

Properties

CategoryValues

The list of category values for the filter.

MatchOperator

The match operator that is used to determine if a filter should be applied.

NullOption

This option determines how null values should be treated when filtering data.

SelectAllOptions

Select all of the values. Null is not the assigned value of select all.

Constructors

FilterListConfigurationProperty()

A list of filter configurations.

public FilterListConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filterlistconfiguration.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 filterListConfigurationProperty = new FilterListConfigurationProperty {
                 MatchOperator = "matchOperator",

                 // the properties below are optional
                 CategoryValues = new [] { "categoryValues" },
                 NullOption = "nullOption",
                 SelectAllOptions = "selectAllOptions"
             };

Properties

CategoryValues

The list of category values for the filter.

public string[]? CategoryValues { get; set; }
Property Value

string[]

Remarks

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

MatchOperator

The match operator that is used to determine if a filter should be applied.

public string MatchOperator { get; set; }
Property Value

string

Remarks

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

NullOption

This option determines how null values should be treated when filtering data.

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

string

Remarks

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

    SelectAllOptions

    Select all of the values. Null is not the assigned value of select all.

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

    string

    Remarks

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

      Implements

      CfnDashboard.IFilterListConfigurationProperty
      Back to top Generated by DocFX