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()) // the properties below are optional .measureAggregationFunction(AggregationFunctionProperty.builder() .attributeAggregationFunction(AttributeAggregationFunctionProperty.builder() .simpleAttributeAggregation("simpleAttributeAggregation") .valueForMultipleValues("valueForMultipleValues") .build()) .categoricalAggregationFunction("categoricalAggregationFunction") .dateAggregationFunction("dateAggregationFunction") .numericalAggregationFunction(NumericalAggregationFunctionProperty.builder() .percentileAggregation(PercentileAggregationProperty.builder() .percentileValue(123) .build()) .simpleNumericalAggregation("simpleNumericalAggregation") .build()) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnAnalysis.ReferenceLineDynamicDataConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCalculation
The calculation that is used in the dynamic data.- See Also:
-
getColumn
The column that the dynamic data targets.- See Also:
-
getMeasureAggregationFunction
The aggregation function that is used in the dynamic data.- See Also:
-
builder
@Stability(Stable) static CfnAnalysis.ReferenceLineDynamicDataConfigurationProperty.Builder builder()
-