Interface CfnDashboard.ReferenceLineDataConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDashboard.ReferenceLineDataConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDashboard

@Stability(Stable) public static interface CfnDashboard.ReferenceLineDataConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The data configuration of the reference line.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.quicksight.*;
 ReferenceLineDataConfigurationProperty referenceLineDataConfigurationProperty = ReferenceLineDataConfigurationProperty.builder()
         .axisBinding("axisBinding")
         .dynamicConfiguration(ReferenceLineDynamicDataConfigurationProperty.builder()
                 .calculation(NumericalAggregationFunctionProperty.builder()
                         .percentileAggregation(PercentileAggregationProperty.builder()
                                 .percentileValue(123)
                                 .build())
                         .simpleNumericalAggregation("simpleNumericalAggregation")
                         .build())
                 .column(ColumnIdentifierProperty.builder()
                         .columnName("columnName")
                         .dataSetIdentifier("dataSetIdentifier")
                         .build())
                 .measureAggregationFunction(AggregationFunctionProperty.builder()
                         .categoricalAggregationFunction("categoricalAggregationFunction")
                         .dateAggregationFunction("dateAggregationFunction")
                         .numericalAggregationFunction(NumericalAggregationFunctionProperty.builder()
                                 .percentileAggregation(PercentileAggregationProperty.builder()
                                         .percentileValue(123)
                                         .build())
                                 .simpleNumericalAggregation("simpleNumericalAggregation")
                                 .build())
                         .build())
                 .build())
         .staticConfiguration(ReferenceLineStaticDataConfigurationProperty.builder()
                 .value(123)
                 .build())
         .build();