Interface CfnAnalysisPropsMixin.IPredefinedHierarchyProperty
The option that determines the hierarchy of the fields that are defined during data preparation.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnAnalysisPropsMixin.IPredefinedHierarchyProperty
Syntax (vb)
Public Interface CfnAnalysisPropsMixin.IPredefinedHierarchyProperty
Remarks
These fields are available to use in any analysis that uses the data source.
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 predefinedHierarchyProperty = new PredefinedHierarchyProperty {
Columns = new [] { new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
} },
DrillDownFilters = new [] { new DrillDownFilterProperty {
CategoryFilter = new CategoryDrillDownFilterProperty {
CategoryValues = new [] { "categoryValues" },
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
}
},
NumericEqualityFilter = new NumericEqualityDrillDownFilterProperty {
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
Value = 123
},
TimeRangeFilter = new TimeRangeDrillDownFilterProperty {
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
RangeMaximum = "rangeMaximum",
RangeMinimum = "rangeMinimum",
TimeGranularity = "timeGranularity"
}
} },
HierarchyId = "hierarchyId"
};
Synopsis
Properties
| Columns | The list of columns that define the predefined hierarchy. |
| DrillDownFilters | The option that determines the drill down filters for the predefined hierarchy. |
| HierarchyId | The hierarchy ID of the predefined hierarchy. |
Properties
Columns
The list of columns that define the predefined hierarchy.
object? Columns { get; }
Property Value
Remarks
DrillDownFilters
The option that determines the drill down filters for the predefined hierarchy.
object? DrillDownFilters { get; }
Property Value
Remarks
HierarchyId
The hierarchy ID of the predefined hierarchy.
string? HierarchyId { get; }