Interface CfnTemplatePropsMixin.ColumnSortProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplatePropsMixin.ColumnSortProperty.Jsii$Proxy
- Enclosing class:
CfnTemplatePropsMixin
@Stability(Stable)
public static interface CfnTemplatePropsMixin.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 forCfnTemplatePropsMixin.ColumnSortPropertystatic final classAn implementation forCfnTemplatePropsMixin.ColumnSortProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe aggregation function that is defined in the column sort.default StringThe sort direction.default ObjectReturns union: eitherIResolvableorCfnTemplatePropsMixin.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
IResolvableorCfnTemplatePropsMixin.AggregationFunctionProperty- See Also:
-
getDirection
The sort direction.- See Also:
-
getSortBy
Returns union: eitherIResolvableorCfnTemplatePropsMixin.ColumnIdentifierProperty- See Also:
-
builder
-