interface BodySectionDynamicCategoryDimensionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.BodySectionDynamicCategoryDimensionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_BodySectionDynamicCategoryDimensionConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.BodySectionDynamicCategoryDimensionConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.BodySectionDynamicCategoryDimensionConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » BodySectionDynamicCategoryDimensionConfigurationProperty |
Describes the Category dataset column and constraints for the dynamic values used to repeat the contents of a section.
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 bodySectionDynamicCategoryDimensionConfigurationProperty: quicksight.CfnAnalysis.BodySectionDynamicCategoryDimensionConfigurationProperty = {
column: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
// the properties below are optional
limit: 123,
sortByMetrics: [{
direction: 'direction',
sortBy: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
// the properties below are optional
aggregationFunction: {
attributeAggregationFunction: {
simpleAttributeAggregation: 'simpleAttributeAggregation',
valueForMultipleValues: 'valueForMultipleValues',
},
categoricalAggregationFunction: 'categoricalAggregationFunction',
dateAggregationFunction: 'dateAggregationFunction',
numericalAggregationFunction: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| column | IResolvable | Column | |
| limit? | number | Number of values to use from the column for repetition. |
| sort | IResolvable | (IResolvable | Column)[] | Sort criteria on the column values that you use for repetition. |
column
Type:
IResolvable | Column
limit?
Type:
number
(optional)
Number of values to use from the column for repetition.
sortByMetrics?
Type:
IResolvable | (IResolvable | Column)[]
(optional)
Sort criteria on the column values that you use for repetition.

.NET
Go
Java
Python
TypeScript