Interface CfnDashboard.AggregationSortConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.AggregationSortConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.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()
.aggregationFunction(AggregationFunctionProperty.builder()
.categoricalAggregationFunction("categoricalAggregationFunction")
.dateAggregationFunction("dateAggregationFunction")
.numericalAggregationFunction(NumericalAggregationFunctionProperty.builder()
.percentileAggregation(PercentileAggregationProperty.builder()
.percentileValue(123)
.build())
.simpleNumericalAggregation("simpleNumericalAggregation")
.build())
.build())
.column(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.sortDirection("sortDirection")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.AggregationSortConfigurationPropertystatic final classAn implementation forCfnDashboard.AggregationSortConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The function that aggregates the values inColumn.The column that determines the sort order of aggregated values.The sort direction of values.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAggregationFunction
The function that aggregates the values inColumn. -
getColumn
The column that determines the sort order of aggregated values. -
getSortDirection
The sort direction of values.ASC: Sort in ascending order.DESC: Sort in descending order.
-
builder
-