Interface CfnAnalysis.AggregationSortConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.AggregationSortConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.AggregationSortConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration options to sort aggregated values.
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.*;
AggregationSortConfigurationProperty aggregationSortConfigurationProperty = AggregationSortConfigurationProperty.builder()
.column(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.sortDirection("sortDirection")
// the properties below are optional
.aggregationFunction(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 classA builder forCfnAnalysis.AggregationSortConfigurationPropertystatic final classAn implementation forCfnAnalysis.AggregationSortConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumn
The column that determines the sort order of aggregated values.Returns union: either
IResolvableorCfnAnalysis.ColumnIdentifierProperty- See Also:
-
getSortDirection
The sort direction of values.ASC: Sort in ascending order.DESC: Sort in descending order.
- See Also:
-
getAggregationFunction
The function that aggregates the values inColumn.Returns union: either
IResolvableorCfnAnalysis.AggregationFunctionProperty- See Also:
-
builder
-