Class CfnAnalysis.TimeRangeDrillDownFilterProperty
The time range drill down filter.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysis.TimeRangeDrillDownFilterProperty : CfnAnalysis.ITimeRangeDrillDownFilterProperty
Syntax (vb)
Public Class CfnAnalysis.TimeRangeDrillDownFilterProperty Implements CfnAnalysis.ITimeRangeDrillDownFilterProperty
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 timeRangeDrillDownFilterProperty = new TimeRangeDrillDownFilterProperty {
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
RangeMaximum = "rangeMaximum",
RangeMinimum = "rangeMinimum",
TimeGranularity = "timeGranularity"
};
Synopsis
Constructors
TimeRangeDrillDownFilterProperty() | The time range drill down filter. |
Properties
Column | The column that the filter is applied to. |
RangeMaximum | The maximum value for the filter value range. |
RangeMinimum | The minimum value for the filter value range. |
TimeGranularity | The level of time precision that is used to aggregate |
Constructors
TimeRangeDrillDownFilterProperty()
The time range drill down filter.
public TimeRangeDrillDownFilterProperty()
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 timeRangeDrillDownFilterProperty = new TimeRangeDrillDownFilterProperty {
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
RangeMaximum = "rangeMaximum",
RangeMinimum = "rangeMinimum",
TimeGranularity = "timeGranularity"
};
Properties
Column
The column that the filter is applied to.
public object Column { get; set; }
Property Value
Remarks
RangeMaximum
The maximum value for the filter value range.
public string RangeMaximum { get; set; }
Property Value
Remarks
RangeMinimum
The minimum value for the filter value range.
public string RangeMinimum { get; set; }
Property Value
Remarks
TimeGranularity
The level of time precision that is used to aggregate DateTime
values.
public string TimeGranularity { get; set; }