Interface CfnTemplatePropsMixin.IWordCloudSortConfigurationProperty
The sort configuration of a word cloud visual.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnTemplatePropsMixin.IWordCloudSortConfigurationProperty
Syntax (vb)
Public Interface CfnTemplatePropsMixin.IWordCloudSortConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;
var wordCloudSortConfigurationProperty = new WordCloudSortConfigurationProperty {
CategoryItemsLimit = new ItemsLimitConfigurationProperty {
ItemsLimit = 123,
OtherCategories = "otherCategories"
},
CategorySort = new [] { new FieldSortOptionsProperty {
ColumnSort = new ColumnSortProperty {
AggregationFunction = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
},
Direction = "direction",
SortBy = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
}
},
FieldSort = new FieldSortProperty {
Direction = "direction",
FieldId = "fieldId"
}
} }
};
Synopsis
Properties
| CategoryItemsLimit | The limit on the number of groups that are displayed in a word cloud. |
| CategorySort | The sort configuration of group by fields. |
Properties
CategoryItemsLimit
The limit on the number of groups that are displayed in a word cloud.
object? CategoryItemsLimit { get; }
Property Value
Remarks
CategorySort
The sort configuration of group by fields.
object? CategorySort { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnTemplatePropsMixin.IFieldSortOptionsProperty)[]