Show / Hide Table of Contents

Class CfnDashboard.DateTimeHierarchyProperty

The option that determines the hierarchy of any DateTime fields.

Inheritance
System.Object
CfnDashboard.DateTimeHierarchyProperty
Implements
CfnDashboard.IDateTimeHierarchyProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class DateTimeHierarchyProperty : Object, CfnDashboard.IDateTimeHierarchyProperty
Syntax (vb)
Public Class DateTimeHierarchyProperty
    Inherits Object
    Implements CfnDashboard.IDateTimeHierarchyProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datetimehierarchy.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 dateTimeHierarchyProperty = new DateTimeHierarchyProperty {
    HierarchyId = "hierarchyId",

    // the properties below are optional
    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"
        }
    } }
};

Synopsis

Constructors

DateTimeHierarchyProperty()

Properties

DrillDownFilters

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

HierarchyId

The hierarchy ID of the DateTime hierarchy.

Constructors

DateTimeHierarchyProperty()

public DateTimeHierarchyProperty()

Properties

DrillDownFilters

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

public object DrillDownFilters { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datetimehierarchy.html#cfn-quicksight-dashboard-datetimehierarchy-drilldownfilters

HierarchyId

The hierarchy ID of the DateTime hierarchy.

public string HierarchyId { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datetimehierarchy.html#cfn-quicksight-dashboard-datetimehierarchy-hierarchyid

Implements

CfnDashboard.IDateTimeHierarchyProperty
Back to top Generated by DocFX