interface BodySectionDynamicCategoryDimensionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.BodySectionDynamicCategoryDimensionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_BodySectionDynamicCategoryDimensionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.BodySectionDynamicCategoryDimensionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.BodySectionDynamicCategoryDimensionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const bodySectionDynamicCategoryDimensionConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.BodySectionDynamicCategoryDimensionConfigurationProperty = {
column: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
limit: 123,
sortByMetrics: [{
aggregationFunction: {
attributeAggregationFunction: {
simpleAttributeAggregation: 'simpleAttributeAggregation',
valueForMultipleValues: 'valueForMultipleValues',
},
categoricalAggregationFunction: 'categoricalAggregationFunction',
dateAggregationFunction: 'dateAggregationFunction',
numericalAggregationFunction: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
},
direction: 'direction',
sortBy: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
}],
};
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
(optional)
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