Interface CfnAnalysisPropsMixin.ColumnSortProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisPropsMixin.ColumnSortProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysisPropsMixin
@Stability(Stable)
public static interface CfnAnalysisPropsMixin.ColumnSortProperty
extends software.amazon.jsii.JsiiSerializable
The sort configuration for a column that is not used in a field well.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.quicksight.*;
ColumnSortProperty columnSortProperty = ColumnSortProperty.builder()
.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())
.direction("direction")
.sortBy(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysisPropsMixin.ColumnSortPropertystatic final classAn implementation forCfnAnalysisPropsMixin.ColumnSortProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe aggregation function that is defined in the column sort.default StringThe sort direction.default ObjectReturns union: eitherIResolvableorCfnAnalysisPropsMixin.ColumnIdentifierPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAggregationFunction
The aggregation function that is defined in the column sort.Returns union: either
IResolvableorCfnAnalysisPropsMixin.AggregationFunctionProperty- See Also:
-
getDirection
The sort direction.- See Also:
-
getSortBy
Returns union: eitherIResolvableorCfnAnalysisPropsMixin.ColumnIdentifierProperty- See Also:
-
builder
-