Interface CfnDashboard.ReferenceLineDynamicDataConfigurationProperty

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

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

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.*;
 ReferenceLineDynamicDataConfigurationProperty referenceLineDynamicDataConfigurationProperty = 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();