Interface CfnAnalysis.ReferenceLineDataConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ReferenceLineDataConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.ReferenceLineDataConfigurationProperty
static final class
An implementation forCfnAnalysis.ReferenceLineDataConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The axis binding type of the reference line.default Object
The dynamic configuration of the reference line data configuration.default String
The series type of the reference line data configuration.default Object
The 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:.PrimaryY
SecondaryY
- See Also:
-
getDynamicConfiguration
The dynamic configuration of the reference line data configuration.- See Also:
-
getSeriesType
The series type of the reference line data configuration. Choose one of the following options:.BAR
LINE
- See Also:
-
getStaticConfiguration
The static data configuration of the reference line data configuration.- See Also:
-
builder
-