Interface CfnAnalysis.ReferenceLineDynamicDataConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ReferenceLineDynamicDataConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnAnalysis.ReferenceLineDynamicDataConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The calculation that is used in the dynamic data.The column that the dynamic data targets.The aggregation function that is used in the dynamic data.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCalculation
The calculation that is used in the dynamic data. -
getColumn
The column that the dynamic data targets. -
getMeasureAggregationFunction
The aggregation function that is used in the dynamic data. -
builder
@Stability(Stable) static CfnAnalysis.ReferenceLineDynamicDataConfigurationProperty.Builder builder()
-