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()
         .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: