Class CfnTemplate.WordCloudSortConfigurationProperty
The sort configuration of a word cloud visual.
Inheritance
System.Object
CfnTemplate.WordCloudSortConfigurationProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class WordCloudSortConfigurationProperty : Object, CfnTemplate.IWordCloudSortConfigurationProperty
Syntax (vb)
Public Class WordCloudSortConfigurationProperty
Inherits Object
Implements CfnTemplate.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.AWS.QuickSight;
var wordCloudSortConfigurationProperty = new WordCloudSortConfigurationProperty {
CategoryItemsLimit = new ItemsLimitConfigurationProperty {
ItemsLimit = 123,
OtherCategories = "otherCategories"
},
CategorySort = new [] { new FieldSortOptionsProperty {
ColumnSort = new ColumnSortProperty {
Direction = "direction",
SortBy = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
// the properties below are optional
AggregationFunction = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
}
},
FieldSort = new FieldSortProperty {
Direction = "direction",
FieldId = "fieldId"
}
} }
};
Synopsis
Constructors
WordCloudSortConfigurationProperty() |
Properties
CategoryItemsLimit | The limit on the number of groups that are displayed in a word cloud. |
CategorySort | The sort configuration of group by fields. |
Constructors
WordCloudSortConfigurationProperty()
public WordCloudSortConfigurationProperty()
Properties
CategoryItemsLimit
The limit on the number of groups that are displayed in a word cloud.
public object CategoryItemsLimit { get; set; }
Property Value
System.Object
Remarks
CategorySort
The sort configuration of group by fields.
public object CategorySort { get; set; }
Property Value
System.Object