Class CfnTemplate.FieldSortOptionsProperty
The field sort options in a chart configuration.
Inheritance
System.Object
CfnTemplate.FieldSortOptionsProperty
Implements
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FieldSortOptionsProperty : Object, CfnTemplate.IFieldSortOptionsProperty
Syntax (vb)
Public Class FieldSortOptionsProperty
Inherits Object
Implements CfnTemplate.IFieldSortOptionsProperty
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.AWS.QuickSight;
var fieldSortOptionsProperty = new FieldSortOptionsProperty {
ColumnSort = new ColumnSortProperty {
Direction = "direction",
SortBy = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
// the properties below are optional
AggregationFunction = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
}
},
FieldSort = new FieldSortProperty {
Direction = "direction",
FieldId = "fieldId"
}
};
Synopsis
Constructors
FieldSortOptionsProperty() |
Properties
ColumnSort | The sort configuration for a column that is not used in a field well. |
FieldSort | The sort configuration for a field in a field well. |
Constructors
FieldSortOptionsProperty()
public FieldSortOptionsProperty()
Properties
ColumnSort
The sort configuration for a column that is not used in a field well.
public object ColumnSort { get; set; }
Property Value
System.Object
Remarks
FieldSort
The sort configuration for a field in a field well.
public object FieldSort { get; set; }
Property Value
System.Object