Class CfnDataSetPropsMixin.ValueColumnConfigurationProperty
Configuration for how to handle value columns in pivot operations, including aggregation settings.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSetPropsMixin.ValueColumnConfigurationProperty : CfnDataSetPropsMixin.IValueColumnConfigurationProperty
Syntax (vb)
Public Class CfnDataSetPropsMixin.ValueColumnConfigurationProperty Implements CfnDataSetPropsMixin.IValueColumnConfigurationProperty
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 valueColumnConfigurationProperty = new ValueColumnConfigurationProperty {
AggregationFunction = new DataPrepAggregationFunctionProperty {
ListAggregation = new DataPrepListAggregationFunctionProperty {
Distinct = false,
InputColumnName = "inputColumnName",
Separator = "separator"
},
PercentileAggregation = new DataPrepPercentileAggregationFunctionProperty {
InputColumnName = "inputColumnName",
PercentileValue = 123
},
SimpleAggregation = new DataPrepSimpleAggregationFunctionProperty {
FunctionType = "functionType",
InputColumnName = "inputColumnName"
}
}
};
Synopsis
Constructors
| ValueColumnConfigurationProperty() | Configuration for how to handle value columns in pivot operations, including aggregation settings. |
Properties
| AggregationFunction | The aggregation function to apply when multiple values map to the same pivoted cell. |
Constructors
ValueColumnConfigurationProperty()
Configuration for how to handle value columns in pivot operations, including aggregation settings.
public ValueColumnConfigurationProperty()
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 valueColumnConfigurationProperty = new ValueColumnConfigurationProperty {
AggregationFunction = new DataPrepAggregationFunctionProperty {
ListAggregation = new DataPrepListAggregationFunctionProperty {
Distinct = false,
InputColumnName = "inputColumnName",
Separator = "separator"
},
PercentileAggregation = new DataPrepPercentileAggregationFunctionProperty {
InputColumnName = "inputColumnName",
PercentileValue = 123
},
SimpleAggregation = new DataPrepSimpleAggregationFunctionProperty {
FunctionType = "functionType",
InputColumnName = "inputColumnName"
}
}
};
Properties
AggregationFunction
The aggregation function to apply when multiple values map to the same pivoted cell.
public object? AggregationFunction { get; set; }