interface ValueColumnConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.ValueColumnConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_ValueColumnConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.ValueColumnConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.ValueColumnConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » ValueColumnConfigurationProperty |
Configuration for how to handle value columns in pivot operations, including aggregation settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const valueColumnConfigurationProperty: quicksight.CfnDataSet.ValueColumnConfigurationProperty = {
aggregationFunction: {
listAggregation: {
distinct: false,
separator: 'separator',
// the properties below are optional
inputColumnName: 'inputColumnName',
},
percentileAggregation: {
percentileValue: 123,
// the properties below are optional
inputColumnName: 'inputColumnName',
},
simpleAggregation: {
functionType: 'functionType',
// the properties below are optional
inputColumnName: 'inputColumnName',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| aggregation | IResolvable | Data | The aggregation function to apply when multiple values map to the same pivoted cell. |
aggregationFunction?
Type:
IResolvable | Data
(optional)
The aggregation function to apply when multiple values map to the same pivoted cell.

.NET
Go
Java
Python
TypeScript