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()) .measureAggregationFunction(AggregationFunctionProperty.builder() .categoricalAggregationFunction("categoricalAggregationFunction") .dateAggregationFunction("dateAggregationFunction") .numericalAggregationFunction(NumericalAggregationFunctionProperty.builder() .percentileAggregation(PercentileAggregationProperty.builder() .percentileValue(123) .build()) .simpleNumericalAggregation("simpleNumericalAggregation") .build()) .build()) .build()) .staticConfiguration(ReferenceLineStaticDataConfigurationProperty.builder() .value(123) .build()) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.ReferenceLineDataConfigurationProperty
static final class
An implementation forCfnDashboard.ReferenceLineDataConfigurationProperty
-
Method Summary
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:.- PrimaryY
- SecondaryY
-
getDynamicConfiguration
The dynamic configuration of the reference line data configuration. -
getStaticConfiguration
The static data configuration of the reference line data configuration. -
builder
-