interface DataAggregationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnTopic.DataAggregationProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnTopic.DataAggregationProperty | 
  Python | aws_cdk.aws_quicksight.CfnTopic.DataAggregationProperty | 
  TypeScript  | @aws-cdk/aws-quicksight » CfnTopic » DataAggregationProperty | 
The definition of a data aggregation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const dataAggregationProperty: quicksight.CfnTopic.DataAggregationProperty = {
  datasetRowDateGranularity: 'datasetRowDateGranularity',
  defaultDateColumnName: 'defaultDateColumnName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| dataset | string | The level of time precision that is used to aggregate DateTime values. | 
| default | string | The column name for the default date. | 
datasetRowDateGranularity?
Type:
string
(optional)
The level of time precision that is used to aggregate DateTime values.
defaultDateColumnName?
Type:
string
(optional)
The column name for the default date.

 .NET
 Java
 Python
 TypeScript