interface TotalAggregationOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.TotalAggregationOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_TotalAggregationOptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.TotalAggregationOptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.TotalAggregationOptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » TotalAggregationOptionProperty |
The total aggregation settings map of a field id.
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 totalAggregationOptionProperty: quicksight.CfnDashboardPropsMixin.TotalAggregationOptionProperty = {
fieldId: 'fieldId',
totalAggregationFunction: {
simpleTotalAggregationFunction: 'simpleTotalAggregationFunction',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| field | string | The field id that's associated with the total aggregation option. |
| total | IResolvable | Total | The total aggregation function that you want to set for a specified field id. |
fieldId?
Type:
string
(optional)
The field id that's associated with the total aggregation option.
totalAggregationFunction?
Type:
IResolvable | Total
(optional)
The total aggregation function that you want to set for a specified field id.

.NET
Go
Java
Python
TypeScript