Show / Hide Table of Contents

Class CfnDashboard.ReferenceLineDataConfigurationProperty

The data configuration of the reference line.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-referencelinedataconfiguration.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 referenceLineDataConfigurationProperty = new ReferenceLineDataConfigurationProperty {
    AxisBinding = "axisBinding",
    DynamicConfiguration = new ReferenceLineDynamicDataConfigurationProperty {
        Calculation = new NumericalAggregationFunctionProperty {
            PercentileAggregation = new PercentileAggregationProperty {
                PercentileValue = 123
            },
            SimpleNumericalAggregation = "simpleNumericalAggregation"
        },
        Column = new ColumnIdentifierProperty {
            ColumnName = "columnName",
            DataSetIdentifier = "dataSetIdentifier"
        },
        MeasureAggregationFunction = new AggregationFunctionProperty {
            CategoricalAggregationFunction = "categoricalAggregationFunction",
            DateAggregationFunction = "dateAggregationFunction",
            NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                PercentileAggregation = new PercentileAggregationProperty {
                    PercentileValue = 123
                },
                SimpleNumericalAggregation = "simpleNumericalAggregation"
            }
        }
    },
    StaticConfiguration = new ReferenceLineStaticDataConfigurationProperty {
        Value = 123
    }
};

Synopsis

Constructors

ReferenceLineDataConfigurationProperty()

Properties

AxisBinding

The axis binding type of the reference line. Choose one of the following options:.

DynamicConfiguration

The dynamic configuration of the reference line data configuration.

StaticConfiguration

The static data configuration of the reference line data configuration.

Constructors

ReferenceLineDataConfigurationProperty()

public ReferenceLineDataConfigurationProperty()

Properties

AxisBinding

The axis binding type of the reference line. Choose one of the following options:.

public string AxisBinding { get; set; }
Property Value

System.String

Remarks

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

    DynamicConfiguration

    The dynamic configuration of the reference line data configuration.

    public object DynamicConfiguration { get; set; }
    Property Value

    System.Object

    Remarks

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

    StaticConfiguration

    The static data configuration of the reference line data configuration.

    public object StaticConfiguration { get; set; }
    Property Value

    System.Object

    Remarks

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

    Implements

    CfnDashboard.IReferenceLineDataConfigurationProperty
    Back to top Generated by DocFX