Class CfnDashboardPropsMixin.NumericEqualityDrillDownFilterProperty
The numeric equality type drill down filter.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.NumericEqualityDrillDownFilterProperty : CfnDashboardPropsMixin.INumericEqualityDrillDownFilterProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.NumericEqualityDrillDownFilterProperty Implements CfnDashboardPropsMixin.INumericEqualityDrillDownFilterProperty
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.Mixins.Preview.AWS.QuickSight.Mixins;
var numericEqualityDrillDownFilterProperty = new NumericEqualityDrillDownFilterProperty {
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
Value = 123
};
Synopsis
Constructors
| NumericEqualityDrillDownFilterProperty() | The numeric equality type drill down filter. |
Properties
| Column | The column that the filter is applied to. |
| Value | The value of the double input numeric drill down filter. |
Constructors
NumericEqualityDrillDownFilterProperty()
The numeric equality type drill down filter.
public NumericEqualityDrillDownFilterProperty()
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.Mixins.Preview.AWS.QuickSight.Mixins;
var numericEqualityDrillDownFilterProperty = new NumericEqualityDrillDownFilterProperty {
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
Value = 123
};
Properties
Column
The column that the filter is applied to.
public object? Column { get; set; }
Property Value
Remarks
Value
The value of the double input numeric drill down filter.
public double? Value { get; set; }