Show / Hide Table of Contents

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-predefinedhierarchy.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.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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-predefinedhierarchy.html#cfn-quicksight-analysis-predefinedhierarchy-columns

Type union: either IResolvable or (either IResolvable or CfnAnalysisPropsMixin.IColumnIdentifierProperty)[]

DrillDownFilters

The option that determines the drill down filters for the predefined hierarchy.

object? DrillDownFilters { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-predefinedhierarchy.html#cfn-quicksight-analysis-predefinedhierarchy-drilldownfilters

Type union: either IResolvable or (either IResolvable or CfnAnalysisPropsMixin.IDrillDownFilterProperty)[]

HierarchyId

The hierarchy ID of the predefined hierarchy.

string? HierarchyId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-predefinedhierarchy.html#cfn-quicksight-analysis-predefinedhierarchy-hierarchyid

Back to top Generated by DocFX