Show / Hide Table of Contents

Interface CfnDashboardPropsMixin.IFunnelChartSortConfigurationProperty

The sort configuration of a FunnelChartVisual .

Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDashboardPropsMixin.IFunnelChartSortConfigurationProperty
Syntax (vb)
Public Interface CfnDashboardPropsMixin.IFunnelChartSortConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-funnelchartsortconfiguration.html

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.Mixins.Preview.AWS.QuickSight.Mixins;

             var funnelChartSortConfigurationProperty = new FunnelChartSortConfigurationProperty {
                 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 categories displayed.

CategorySort

The sort configuration of the category fields.

Properties

CategoryItemsLimit

The limit on the number of categories displayed.

object? CategoryItemsLimit { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-funnelchartsortconfiguration.html#cfn-quicksight-dashboard-funnelchartsortconfiguration-categoryitemslimit

Type union: either IResolvable or CfnDashboardPropsMixin.IItemsLimitConfigurationProperty

CategorySort

The sort configuration of the category fields.

object? CategorySort { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-funnelchartsortconfiguration.html#cfn-quicksight-dashboard-funnelchartsortconfiguration-categorysort

Type union: either IResolvable or (either IResolvable or CfnDashboardPropsMixin.IFieldSortOptionsProperty)[]

Back to top Generated by DocFX