Show / Hide Table of Contents

Class CfnAnalysis.BoxPlotSortConfigurationProperty

The sort configuration of a BoxPlotVisual .

Inheritance
System.Object
CfnAnalysis.BoxPlotSortConfigurationProperty
Implements
CfnAnalysis.IBoxPlotSortConfigurationProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class BoxPlotSortConfigurationProperty : Object, CfnAnalysis.IBoxPlotSortConfigurationProperty
Syntax (vb)
Public Class BoxPlotSortConfigurationProperty
    Inherits Object
    Implements CfnAnalysis.IBoxPlotSortConfigurationProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-boxplotsortconfiguration.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.AWS.QuickSight;

var boxPlotSortConfigurationProperty = new BoxPlotSortConfigurationProperty {
    CategorySort = new [] { new FieldSortOptionsProperty {
        ColumnSort = new ColumnSortProperty {
            Direction = "direction",
            SortBy = new ColumnIdentifierProperty {
                ColumnName = "columnName",
                DataSetIdentifier = "dataSetIdentifier"
            },

            // the properties below are optional
            AggregationFunction = new AggregationFunctionProperty {
                CategoricalAggregationFunction = "categoricalAggregationFunction",
                DateAggregationFunction = "dateAggregationFunction",
                NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                    PercentileAggregation = new PercentileAggregationProperty {
                        PercentileValue = 123
                    },
                    SimpleNumericalAggregation = "simpleNumericalAggregation"
                }
            }
        },
        FieldSort = new FieldSortProperty {
            Direction = "direction",
            FieldId = "fieldId"
        }
    } },
    PaginationConfiguration = new PaginationConfigurationProperty {
        PageNumber = 123,
        PageSize = 123
    }
};

Synopsis

Constructors

BoxPlotSortConfigurationProperty()

Properties

CategorySort

The sort configuration of a group by fields.

PaginationConfiguration

The pagination configuration of a table visual or box plot.

Constructors

BoxPlotSortConfigurationProperty()

public BoxPlotSortConfigurationProperty()

Properties

CategorySort

The sort configuration of a group by fields.

public object CategorySort { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-boxplotsortconfiguration.html#cfn-quicksight-analysis-boxplotsortconfiguration-categorysort

PaginationConfiguration

The pagination configuration of a table visual or box plot.

public object PaginationConfiguration { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-boxplotsortconfiguration.html#cfn-quicksight-analysis-boxplotsortconfiguration-paginationconfiguration

Implements

CfnAnalysis.IBoxPlotSortConfigurationProperty
Back to top Generated by DocFX