interface ValueColumnConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.ValueColumnConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_ValueColumnConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.ValueColumnConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.ValueColumnConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » 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/cfn-property-mixins';
const valueColumnConfigurationProperty: quicksight.CfnDataSetPropsMixin.ValueColumnConfigurationProperty = {
aggregationFunction: {
listAggregation: {
distinct: false,
inputColumnName: 'inputColumnName',
separator: 'separator',
},
percentileAggregation: {
inputColumnName: 'inputColumnName',
percentileValue: 123,
},
simpleAggregation: {
functionType: 'functionType',
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