Interface CfnAnalysisPropsMixin.IColumnSortProperty
The sort configuration for a column that is not used in a field well.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnAnalysisPropsMixin.IColumnSortProperty
Syntax (vb)
Public Interface CfnAnalysisPropsMixin.IColumnSortProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;
var columnSortProperty = new ColumnSortProperty {
AggregationFunction = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
},
Direction = "direction",
SortBy = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
}
};
Synopsis
Properties
| AggregationFunction | The aggregation function that is defined in the column sort. |
| Direction | The sort direction. |
| SortBy | The sort configuration for a column that is not used in a field well. |
Properties
AggregationFunction
The aggregation function that is defined in the column sort.
object? AggregationFunction { get; }
Property Value
Remarks
Direction
The sort direction.
string? Direction { get; }
Property Value
Remarks
SortBy
The sort configuration for a column that is not used in a field well.
object? SortBy { get; }