Show / Hide Table of Contents

Interface CfnAnalysisPropsMixin.IColumnSortProperty

The sort configuration for a column that is not used in a field well.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnAnalysisPropsMixin.IColumnSortProperty
Syntax (vb)
Public Interface CfnAnalysisPropsMixin.IColumnSortProperty
Remarks

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

             var columnSortProperty = 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"
                 }
             };

Synopsis

Properties

AggregationFunction

The aggregation function that is defined in the column sort.

Direction

The sort direction.

SortBy

The sort configuration for a column that is not used in a field well.

Properties

AggregationFunction

The aggregation function that is defined in the column sort.

object? AggregationFunction { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-columnsort.html#cfn-quicksight-analysis-columnsort-aggregationfunction

Type union: either IResolvable or CfnAnalysisPropsMixin.IAggregationFunctionProperty

Direction

The sort direction.

string? Direction { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-columnsort.html#cfn-quicksight-analysis-columnsort-direction

SortBy

The sort configuration for a column that is not used in a field well.

object? SortBy { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-columnsort.html#cfn-quicksight-analysis-columnsort-sortby

Type union: either IResolvable or CfnAnalysisPropsMixin.IColumnIdentifierProperty

Back to top Generated by DocFX