Interface CfnTemplate.ReferenceLineDynamicDataConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.ReferenceLineDynamicDataConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTemplate.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.Returns union: either
IResolvableorCfnTemplate.NumericalAggregationFunctionProperty- See Also:
-
getColumn
The column that the dynamic data targets.Returns union: either
IResolvableorCfnTemplate.ColumnIdentifierProperty- See Also:
-
getMeasureAggregationFunction
The aggregation function that is used in the dynamic data.Returns union: either
IResolvableorCfnTemplate.AggregationFunctionProperty- See Also:
-
builder
@Stability(Stable) static CfnTemplate.ReferenceLineDynamicDataConfigurationProperty.Builder builder()
-