interface DataAggregationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTopic.DataAggregationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTopic_DataAggregationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTopic.DataAggregationProperty |
Python | aws_cdk.aws_quicksight.CfnTopic.DataAggregationProperty |
TypeScript | aws-cdk-lib » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript