Class CfnAnalysisPropsMixin.AggregationSortConfigurationProperty
The configuration options to sort aggregated values.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.AggregationSortConfigurationProperty : CfnAnalysisPropsMixin.IAggregationSortConfigurationProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.AggregationSortConfigurationProperty Implements CfnAnalysisPropsMixin.IAggregationSortConfigurationProperty
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.Mixins.Preview.AWS.QuickSight.Mixins;
var aggregationSortConfigurationProperty = new AggregationSortConfigurationProperty {
AggregationFunction = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
},
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
SortDirection = "sortDirection"
};
Synopsis
Constructors
| AggregationSortConfigurationProperty() | The configuration options to sort aggregated values. |
Properties
| AggregationFunction | The function that aggregates the values in |
| Column | The column that determines the sort order of aggregated values. |
| SortDirection | The sort direction of values. |
Constructors
AggregationSortConfigurationProperty()
The configuration options to sort aggregated values.
public AggregationSortConfigurationProperty()
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.Mixins.Preview.AWS.QuickSight.Mixins;
var aggregationSortConfigurationProperty = new AggregationSortConfigurationProperty {
AggregationFunction = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
},
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
SortDirection = "sortDirection"
};
Properties
AggregationFunction
The function that aggregates the values in Column .
public object? AggregationFunction { get; set; }
Property Value
Remarks
Column
The column that determines the sort order of aggregated values.
public object? Column { get; set; }
Property Value
Remarks
SortDirection
The sort direction of values.
public string? SortDirection { get; set; }