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())
// 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())
.seriesType("seriesType")
.staticConfiguration(ReferenceLineStaticDataConfigurationProperty.builder()
.value(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.ReferenceLineDataConfigurationPropertystatic final classAn implementation forCfnDashboard.ReferenceLineDataConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe axis binding type of the reference line.default ObjectThe dynamic configuration of the reference line data configuration.default StringThe series type of the reference line data configuration.default ObjectThe static data configuration of the reference line data configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAxisBinding
The axis binding type of the reference line. Choose one of the following options:.PrimaryYSecondaryY
- See Also:
-
getDynamicConfiguration
The dynamic configuration of the reference line data configuration.Returns union: either
IResolvableorCfnDashboard.ReferenceLineDynamicDataConfigurationProperty- See Also:
-
getSeriesType
The series type of the reference line data configuration. Choose one of the following options:.BARLINE
- See Also:
-
getStaticConfiguration
The static data configuration of the reference line data configuration.Returns union: either
IResolvableorCfnDashboard.ReferenceLineStaticDataConfigurationProperty- See Also:
-
builder
-