package awsquicksight // sort-configuration-description. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // barChartSortConfigurationProperty := &BarChartSortConfigurationProperty{ // CategoryItemsLimit: &ItemsLimitConfigurationProperty{ // ItemsLimit: jsii.Number(123), // OtherCategories: jsii.String("otherCategories"), // }, // CategorySort: []interface{}{ // &FieldSortOptionsProperty{ // ColumnSort: &ColumnSortProperty{ // Direction: jsii.String("direction"), // SortBy: &ColumnIdentifierProperty{ // ColumnName: jsii.String("columnName"), // DataSetIdentifier: jsii.String("dataSetIdentifier"), // }, // // // the properties below are optional // AggregationFunction: &AggregationFunctionProperty{ // CategoricalAggregationFunction: jsii.String("categoricalAggregationFunction"), // DateAggregationFunction: jsii.String("dateAggregationFunction"), // NumericalAggregationFunction: &NumericalAggregationFunctionProperty{ // PercentileAggregation: &PercentileAggregationProperty{ // PercentileValue: jsii.Number(123), // }, // SimpleNumericalAggregation: jsii.String("simpleNumericalAggregation"), // }, // }, // }, // FieldSort: &FieldSortProperty{ // Direction: jsii.String("direction"), // FieldId: jsii.String("fieldId"), // }, // }, // }, // ColorItemsLimit: &ItemsLimitConfigurationProperty{ // ItemsLimit: jsii.Number(123), // OtherCategories: jsii.String("otherCategories"), // }, // ColorSort: []interface{}{ // &FieldSortOptionsProperty{ // ColumnSort: &ColumnSortProperty{ // Direction: jsii.String("direction"), // SortBy: &ColumnIdentifierProperty{ // ColumnName: jsii.String("columnName"), // DataSetIdentifier: jsii.String("dataSetIdentifier"), // }, // // // the properties below are optional // AggregationFunction: &AggregationFunctionProperty{ // CategoricalAggregationFunction: jsii.String("categoricalAggregationFunction"), // DateAggregationFunction: jsii.String("dateAggregationFunction"), // NumericalAggregationFunction: &NumericalAggregationFunctionProperty{ // PercentileAggregation: &PercentileAggregationProperty{ // PercentileValue: jsii.Number(123), // }, // SimpleNumericalAggregation: jsii.String("simpleNumericalAggregation"), // }, // }, // }, // FieldSort: &FieldSortProperty{ // Direction: jsii.String("direction"), // FieldId: jsii.String("fieldId"), // }, // }, // }, // SmallMultiplesLimitConfiguration: &ItemsLimitConfigurationProperty{ // ItemsLimit: jsii.Number(123), // OtherCategories: jsii.String("otherCategories"), // }, // SmallMultiplesSort: []interface{}{ // &FieldSortOptionsProperty{ // ColumnSort: &ColumnSortProperty{ // Direction: jsii.String("direction"), // SortBy: &ColumnIdentifierProperty{ // ColumnName: jsii.String("columnName"), // DataSetIdentifier: jsii.String("dataSetIdentifier"), // }, // // // the properties below are optional // AggregationFunction: &AggregationFunctionProperty{ // CategoricalAggregationFunction: jsii.String("categoricalAggregationFunction"), // DateAggregationFunction: jsii.String("dateAggregationFunction"), // NumericalAggregationFunction: &NumericalAggregationFunctionProperty{ // PercentileAggregation: &PercentileAggregationProperty{ // PercentileValue: jsii.Number(123), // }, // SimpleNumericalAggregation: jsii.String("simpleNumericalAggregation"), // }, // }, // }, // FieldSort: &FieldSortProperty{ // Direction: jsii.String("direction"), // FieldId: jsii.String("fieldId"), // }, // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-barchartsortconfiguration.html // type CfnDashboard_BarChartSortConfigurationProperty struct { // The limit on the number of categories displayed in a bar chart. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-barchartsortconfiguration.html#cfn-quicksight-dashboard-barchartsortconfiguration-categoryitemslimit // CategoryItemsLimit interface{} `field:"optional" json:"categoryItemsLimit" yaml:"categoryItemsLimit"` // The sort configuration of category fields. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-barchartsortconfiguration.html#cfn-quicksight-dashboard-barchartsortconfiguration-categorysort // CategorySort interface{} `field:"optional" json:"categorySort" yaml:"categorySort"` // The limit on the number of values displayed in a bar chart. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-barchartsortconfiguration.html#cfn-quicksight-dashboard-barchartsortconfiguration-coloritemslimit // ColorItemsLimit interface{} `field:"optional" json:"colorItemsLimit" yaml:"colorItemsLimit"` // The sort configuration of color fields in a bar chart. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-barchartsortconfiguration.html#cfn-quicksight-dashboard-barchartsortconfiguration-colorsort // ColorSort interface{} `field:"optional" json:"colorSort" yaml:"colorSort"` // The limit on the number of small multiples panels that are displayed. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-barchartsortconfiguration.html#cfn-quicksight-dashboard-barchartsortconfiguration-smallmultipleslimitconfiguration // SmallMultiplesLimitConfiguration interface{} `field:"optional" json:"smallMultiplesLimitConfiguration" yaml:"smallMultiplesLimitConfiguration"` // The sort configuration of the small multiples field. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-barchartsortconfiguration.html#cfn-quicksight-dashboard-barchartsortconfiguration-smallmultiplessort // SmallMultiplesSort interface{} `field:"optional" json:"smallMultiplesSort" yaml:"smallMultiplesSort"` }